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/v7/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}
X-Ray Trace Delivery
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const xray = new aws.cloudwatch.LogDeliveryDestination("xray", {
name: "xray-traces",
deliveryDestinationType: "XRAY",
});
import pulumi
import pulumi_aws as aws
xray = aws.cloudwatch.LogDeliveryDestination("xray",
name="xray-traces",
delivery_destination_type="XRAY")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/cloudwatch"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudwatch.NewLogDeliveryDestination(ctx, "xray", &cloudwatch.LogDeliveryDestinationArgs{
Name: pulumi.String("xray-traces"),
DeliveryDestinationType: pulumi.String("XRAY"),
})
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 xray = new Aws.CloudWatch.LogDeliveryDestination("xray", new()
{
Name = "xray-traces",
DeliveryDestinationType = "XRAY",
});
});
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 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 xray = new LogDeliveryDestination("xray", LogDeliveryDestinationArgs.builder()
.name("xray-traces")
.deliveryDestinationType("XRAY")
.build());
}
}
resources:
xray:
type: aws:cloudwatch:LogDeliveryDestination
properties:
name: xray-traces
deliveryDestinationType: XRAY
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,
delivery_destination_type: Optional[str] = None,
name: Optional[str] = None,
output_format: Optional[str] = None,
region: 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",
},
DeliveryDestinationType = "string",
Name = "string",
OutputFormat = "string",
Region = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := cloudwatch.NewLogDeliveryDestination(ctx, "logDeliveryDestinationResource", &cloudwatch.LogDeliveryDestinationArgs{
DeliveryDestinationConfiguration: &cloudwatch.LogDeliveryDestinationDeliveryDestinationConfigurationArgs{
DestinationResourceArn: pulumi.String("string"),
},
DeliveryDestinationType: pulumi.String("string"),
Name: pulumi.String("string"),
OutputFormat: pulumi.String("string"),
Region: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var logDeliveryDestinationResource = new LogDeliveryDestination("logDeliveryDestinationResource", LogDeliveryDestinationArgs.builder()
.deliveryDestinationConfiguration(LogDeliveryDestinationDeliveryDestinationConfigurationArgs.builder()
.destinationResourceArn("string")
.build())
.deliveryDestinationType("string")
.name("string")
.outputFormat("string")
.region("string")
.tags(Map.of("string", "string"))
.build());
log_delivery_destination_resource = aws.cloudwatch.LogDeliveryDestination("logDeliveryDestinationResource",
delivery_destination_configuration={
"destination_resource_arn": "string",
},
delivery_destination_type="string",
name="string",
output_format="string",
region="string",
tags={
"string": "string",
})
const logDeliveryDestinationResource = new aws.cloudwatch.LogDeliveryDestination("logDeliveryDestinationResource", {
deliveryDestinationConfiguration: {
destinationResourceArn: "string",
},
deliveryDestinationType: "string",
name: "string",
outputFormat: "string",
region: "string",
tags: {
string: "string",
},
});
type: aws:cloudwatch:LogDeliveryDestination
properties:
deliveryDestinationConfiguration:
destinationResourceArn: string
deliveryDestinationType: string
name: string
outputFormat: string
region: 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. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- Delivery
Destination stringType - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- Delivery
Destination stringType - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- delivery
Destination StringType - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- delivery
Destination stringType - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- delivery_
destination_ strtype - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- delivery
Destination StringType - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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:
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,
region: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> LogDeliveryDestinationfunc 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. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- Delivery
Destination stringType - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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_tagsconfiguration 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. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- Delivery
Destination stringType - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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_tagsconfiguration 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. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- delivery
Destination StringType - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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_tagsconfiguration 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. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- delivery
Destination stringType - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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_tagsconfiguration 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. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- delivery_
destination_ strtype - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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_tagsconfiguration block.
- arn String
- The Amazon Resource Name (ARN) of the delivery destination.
- delivery
Destination Property MapConfiguration - The AWS resource that will receive the logs. Required for CloudWatch Logs, Amazon S3, and Firehose destinations. Not required for X-Ray trace delivery destinations.
- delivery
Destination StringType - The type of delivery destination. Valid values:
S3,CWL,FH,XRAY. Required for X-Ray trace delivery destinations. For other destination types, this is computed from thedestination_resource_arn. - 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. - region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tagsconfiguration 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_tagsconfiguration block.
Supporting Types
LogDeliveryDestinationDeliveryDestinationConfiguration, LogDeliveryDestinationDeliveryDestinationConfigurationArgs
- Destination
Resource stringArn - The ARN of the AWS destination that this delivery destination represents. Required when
delivery_destination_configurationis specified.
- Destination
Resource stringArn - The ARN of the AWS destination that this delivery destination represents. Required when
delivery_destination_configurationis specified.
- destination
Resource StringArn - The ARN of the AWS destination that this delivery destination represents. Required when
delivery_destination_configurationis specified.
- destination
Resource stringArn - The ARN of the AWS destination that this delivery destination represents. Required when
delivery_destination_configurationis specified.
- destination_
resource_ strarn - The ARN of the AWS destination that this delivery destination represents. Required when
delivery_destination_configurationis specified.
- destination
Resource StringArn - The ARN of the AWS destination that this delivery destination represents. Required when
delivery_destination_configurationis specified.
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
awsTerraform Provider.
