aws.cloudwatch.LogDeliveryDestination
Explore with Pulumi AI
Resource for managing an AWS CloudWatch Logs Delivery Destination.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.cloudwatch.LogDeliveryDestination("example", {
name: "example",
deliveryDestinationConfiguration: {
destinationResourceArn: exampleAwsCloudwatchLogGroup.arn,
},
});
import pulumi
import pulumi_aws as aws
example = aws.cloudwatch.LogDeliveryDestination("example",
name="example",
delivery_destination_configuration={
"destination_resource_arn": example_aws_cloudwatch_log_group["arn"],
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/cloudwatch"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudwatch.NewLogDeliveryDestination(ctx, "example", &cloudwatch.LogDeliveryDestinationArgs{
Name: pulumi.String("example"),
DeliveryDestinationConfiguration: &cloudwatch.LogDeliveryDestinationDeliveryDestinationConfigurationArgs{
DestinationResourceArn: pulumi.Any(exampleAwsCloudwatchLogGroup.Arn),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.CloudWatch.LogDeliveryDestination("example", new()
{
Name = "example",
DeliveryDestinationConfiguration = new Aws.CloudWatch.Inputs.LogDeliveryDestinationDeliveryDestinationConfigurationArgs
{
DestinationResourceArn = exampleAwsCloudwatchLogGroup.Arn,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.cloudwatch.LogDeliveryDestination;
import com.pulumi.aws.cloudwatch.LogDeliveryDestinationArgs;
import com.pulumi.aws.cloudwatch.inputs.LogDeliveryDestinationDeliveryDestinationConfigurationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new LogDeliveryDestination("example", LogDeliveryDestinationArgs.builder()
.name("example")
.deliveryDestinationConfiguration(LogDeliveryDestinationDeliveryDestinationConfigurationArgs.builder()
.destinationResourceArn(exampleAwsCloudwatchLogGroup.arn())
.build())
.build());
}
}
resources:
example:
type: aws:cloudwatch:LogDeliveryDestination
properties:
name: example
deliveryDestinationConfiguration:
destinationResourceArn: ${exampleAwsCloudwatchLogGroup.arn}
Create LogDeliveryDestination Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LogDeliveryDestination(name: string, args?: LogDeliveryDestinationArgs, opts?: CustomResourceOptions);
@overload
def LogDeliveryDestination(resource_name: str,
args: Optional[LogDeliveryDestinationArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def LogDeliveryDestination(resource_name: str,
opts: Optional[ResourceOptions] = None,
delivery_destination_configuration: Optional[LogDeliveryDestinationDeliveryDestinationConfigurationArgs] = None,
name: Optional[str] = None,
output_format: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewLogDeliveryDestination(ctx *Context, name string, args *LogDeliveryDestinationArgs, opts ...ResourceOption) (*LogDeliveryDestination, error)
public LogDeliveryDestination(string name, LogDeliveryDestinationArgs? args = null, CustomResourceOptions? opts = null)
public LogDeliveryDestination(String name, LogDeliveryDestinationArgs args)
public LogDeliveryDestination(String name, LogDeliveryDestinationArgs args, CustomResourceOptions options)
type: aws:cloudwatch:LogDeliveryDestination
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args LogDeliveryDestinationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args LogDeliveryDestinationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args LogDeliveryDestinationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogDeliveryDestinationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LogDeliveryDestinationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var logDeliveryDestinationResource = new Aws.CloudWatch.LogDeliveryDestination("logDeliveryDestinationResource", new()
{
DeliveryDestinationConfiguration = new Aws.CloudWatch.Inputs.LogDeliveryDestinationDeliveryDestinationConfigurationArgs
{
DestinationResourceArn = "string",
},
Name = "string",
OutputFormat = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := cloudwatch.NewLogDeliveryDestination(ctx, "logDeliveryDestinationResource", &cloudwatch.LogDeliveryDestinationArgs{
DeliveryDestinationConfiguration: &cloudwatch.LogDeliveryDestinationDeliveryDestinationConfigurationArgs{
DestinationResourceArn: pulumi.String("string"),
},
Name: pulumi.String("string"),
OutputFormat: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var logDeliveryDestinationResource = new LogDeliveryDestination("logDeliveryDestinationResource", LogDeliveryDestinationArgs.builder()
.deliveryDestinationConfiguration(LogDeliveryDestinationDeliveryDestinationConfigurationArgs.builder()
.destinationResourceArn("string")
.build())
.name("string")
.outputFormat("string")
.tags(Map.of("string", "string"))
.build());
log_delivery_destination_resource = aws.cloudwatch.LogDeliveryDestination("logDeliveryDestinationResource",
delivery_destination_configuration={
"destination_resource_arn": "string",
},
name="string",
output_format="string",
tags={
"string": "string",
})
const logDeliveryDestinationResource = new aws.cloudwatch.LogDeliveryDestination("logDeliveryDestinationResource", {
deliveryDestinationConfiguration: {
destinationResourceArn: "string",
},
name: "string",
outputFormat: "string",
tags: {
string: "string",
},
});
type: aws:cloudwatch:LogDeliveryDestination
properties:
deliveryDestinationConfiguration:
destinationResourceArn: string
name: string
outputFormat: string
tags:
string: string
LogDeliveryDestination Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The LogDeliveryDestination resource accepts the following input properties:
- Delivery
Destination LogConfiguration Delivery Destination Delivery Destination Configuration - The AWS resource that will receive the logs.
- Name string
- The name for this delivery destination.
- Output
Format string - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Delivery
Destination LogConfiguration Delivery Destination Delivery Destination Configuration Args - The AWS resource that will receive the logs.
- Name string
- The name for this delivery destination.
- Output
Format string - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- delivery
Destination LogConfiguration Delivery Destination Delivery Destination Configuration - The AWS resource that will receive the logs.
- name String
- The name for this delivery destination.
- output
Format String - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- delivery
Destination LogConfiguration Delivery Destination Delivery Destination Configuration - The AWS resource that will receive the logs.
- name string
- The name for this delivery destination.
- output
Format string - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- delivery_
destination_ Logconfiguration Delivery Destination Delivery Destination Configuration Args - The AWS resource that will receive the logs.
- name str
- The name for this delivery destination.
- output_
format str - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- delivery
Destination Property MapConfiguration - The AWS resource that will receive the logs.
- name String
- The name for this delivery destination.
- output
Format String - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the LogDeliveryDestination resource produces the following output properties:
- Arn string
- The Amazon Resource Name (ARN) of the delivery destination.
- Delivery
Destination stringType - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The Amazon Resource Name (ARN) of the delivery destination.
- Delivery
Destination stringType - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the delivery destination.
- delivery
Destination StringType - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The Amazon Resource Name (ARN) of the delivery destination.
- delivery
Destination stringType - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- The Amazon Resource Name (ARN) of the delivery destination.
- delivery_
destination_ strtype - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the delivery destination.
- delivery
Destination StringType - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing LogDeliveryDestination Resource
Get an existing LogDeliveryDestination resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: LogDeliveryDestinationState, opts?: CustomResourceOptions): LogDeliveryDestination
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
delivery_destination_configuration: Optional[LogDeliveryDestinationDeliveryDestinationConfigurationArgs] = None,
delivery_destination_type: Optional[str] = None,
name: Optional[str] = None,
output_format: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> LogDeliveryDestination
func GetLogDeliveryDestination(ctx *Context, name string, id IDInput, state *LogDeliveryDestinationState, opts ...ResourceOption) (*LogDeliveryDestination, error)
public static LogDeliveryDestination Get(string name, Input<string> id, LogDeliveryDestinationState? state, CustomResourceOptions? opts = null)
public static LogDeliveryDestination get(String name, Output<String> id, LogDeliveryDestinationState state, CustomResourceOptions options)
resources: _: type: aws:cloudwatch:LogDeliveryDestination get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- The Amazon Resource Name (ARN) of the delivery destination.
- Delivery
Destination LogConfiguration Delivery Destination Delivery Destination Configuration - The AWS resource that will receive the logs.
- Delivery
Destination stringType - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- Name string
- The name for this delivery destination.
- Output
Format string - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The Amazon Resource Name (ARN) of the delivery destination.
- Delivery
Destination LogConfiguration Delivery Destination Delivery Destination Configuration Args - The AWS resource that will receive the logs.
- Delivery
Destination stringType - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- Name string
- The name for this delivery destination.
- Output
Format string - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the delivery destination.
- delivery
Destination LogConfiguration Delivery Destination Delivery Destination Configuration - The AWS resource that will receive the logs.
- delivery
Destination StringType - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- name String
- The name for this delivery destination.
- output
Format String - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The Amazon Resource Name (ARN) of the delivery destination.
- delivery
Destination LogConfiguration Delivery Destination Delivery Destination Configuration - The AWS resource that will receive the logs.
- delivery
Destination stringType - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- name string
- The name for this delivery destination.
- output
Format string - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- The Amazon Resource Name (ARN) of the delivery destination.
- delivery_
destination_ Logconfiguration Delivery Destination Delivery Destination Configuration Args - The AWS resource that will receive the logs.
- delivery_
destination_ strtype - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- name str
- The name for this delivery destination.
- output_
format str - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The Amazon Resource Name (ARN) of the delivery destination.
- delivery
Destination Property MapConfiguration - The AWS resource that will receive the logs.
- delivery
Destination StringType - Whether this delivery destination is CloudWatch Logs, Amazon S3, or Firehose.
- name String
- The name for this delivery destination.
- output
Format String - The format of the logs that are sent to this delivery destination. Valid values:
json
,plain
,w3c
,raw
,parquet
. - Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Supporting Types
LogDeliveryDestinationDeliveryDestinationConfiguration, LogDeliveryDestinationDeliveryDestinationConfigurationArgs
- Destination
Resource stringArn - The ARN of the AWS destination that this delivery destination represents.
- Destination
Resource stringArn - The ARN of the AWS destination that this delivery destination represents.
- destination
Resource StringArn - The ARN of the AWS destination that this delivery destination represents.
- destination
Resource stringArn - The ARN of the AWS destination that this delivery destination represents.
- destination_
resource_ strarn - The ARN of the AWS destination that this delivery destination represents.
- destination
Resource StringArn - The ARN of the AWS destination that this delivery destination represents.
Import
Using pulumi import
, import CloudWatch Logs Delivery Destination using the name
. For example:
$ pulumi import aws:cloudwatch/logDeliveryDestination:LogDeliveryDestination example example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.