@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.728Z") @Stability(value=Stable) public interface CfnDeliveryChannelProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.config.*;
CfnDeliveryChannelProps cfnDeliveryChannelProps = CfnDeliveryChannelProps.builder()
.s3BucketName("s3BucketName")
// the properties below are optional
.configSnapshotDeliveryProperties(ConfigSnapshotDeliveryPropertiesProperty.builder()
.deliveryFrequency("deliveryFrequency")
.build())
.name("name")
.s3KeyPrefix("s3KeyPrefix")
.s3KmsKeyArn("s3KmsKeyArn")
.snsTopicArn("snsTopicArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryChannelProps.Builder
A builder for
CfnDeliveryChannelProps |
static class |
CfnDeliveryChannelProps.Jsii$Proxy
An implementation for
CfnDeliveryChannelProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryChannelProps.Builder |
builder() |
default Object |
getConfigSnapshotDeliveryProperties()
The options for how often AWS Config delivers configuration snapshots to the Amazon S3 bucket.
|
default String |
getName()
A name for the delivery channel.
|
String |
getS3BucketName()
The name of the Amazon S3 bucket to which AWS Config delivers configuration snapshots and configuration history files.
|
default String |
getS3KeyPrefix()
The prefix for the specified Amazon S3 bucket.
|
default String |
getS3KmsKeyArn()
The Amazon Resource Name (ARN) of the AWS Key Management Service ( AWS KMS ) AWS KMS key (KMS key) used to encrypt objects delivered by AWS Config .
|
default String |
getSnsTopicArn()
The Amazon Resource Name (ARN) of the Amazon SNS topic to which AWS Config sends notifications about configuration changes.
|
@Stability(value=Stable) @NotNull String getS3BucketName()
If you specify a bucket that belongs to another AWS account , that bucket must have policies that grant access permissions to AWS Config . For more information, see Permissions for the Amazon S3 Bucket in the AWS Config Developer Guide.
@Stability(value=Stable) @Nullable default Object getConfigSnapshotDeliveryProperties()
@Stability(value=Stable) @Nullable default String getName()
If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the delivery channel name. For more information, see Name Type .
Updates are not supported. To change the name, you must run two separate updates. In the first update, delete this resource, and then recreate it with a new name in the second update.
@Stability(value=Stable) @Nullable default String getS3KeyPrefix()
@Stability(value=Stable) @Nullable default String getS3KmsKeyArn()
Must belong to the same Region as the destination S3 bucket.
@Stability(value=Stable) @Nullable default String getSnsTopicArn()
If you choose a topic from another account, the topic must have policies that grant access permissions to AWS Config . For more information, see Permissions for the Amazon SNS Topic in the AWS Config Developer Guide.
@Stability(value=Stable) static CfnDeliveryChannelProps.Builder builder()
CfnDeliveryChannelProps.Builder of CfnDeliveryChannelPropsCopyright © 2022. All rights reserved.