interface S3DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSM.CfnResourceDataSyncPropsMixin.S3DestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssm#CfnResourceDataSyncPropsMixin_S3DestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssm.CfnResourceDataSyncPropsMixin.S3DestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssm.CfnResourceDataSyncPropsMixin.S3DestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssm » CfnResourceDataSyncPropsMixin » S3DestinationProperty |
Information about the target S3 bucket for the resource data sync.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssm as ssm } from '@aws-cdk/cfn-property-mixins';
const s3DestinationProperty: ssm.CfnResourceDataSyncPropsMixin.S3DestinationProperty = {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
bucketRegion: 'bucketRegion',
kmsKeyArn: 'kmsKeyArn',
syncFormat: 'syncFormat',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The name of the S3 bucket where the aggregated data is stored. |
| bucket | string | An Amazon S3 prefix for the bucket. |
| bucket | string | The AWS Region with the S3 bucket targeted by the resource data sync. |
| kms | string | The ARN of an encryption key for a destination in Amazon S3. |
| sync | string | A supported sync format. |
bucketName?
Type:
string
(optional)
The name of the S3 bucket where the aggregated data is stored.
bucketPrefix?
Type:
string
(optional)
An Amazon S3 prefix for the bucket.
bucketRegion?
Type:
string
(optional)
The AWS Region with the S3 bucket targeted by the resource data sync.
kmsKeyArn?
Type:
string
(optional)
The ARN of an encryption key for a destination in Amazon S3.
Must belong to the same Region as the destination S3 bucket.
syncFormat?
Type:
string
(optional)
A supported sync format.
The following format is currently supported: JsonSerDe

.NET
Go
Java
Python
TypeScript