interface S3DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSM.Mixins.CfnResourceDataSyncPropsMixin.S3DestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssm/mixins#CfnResourceDataSyncPropsMixin_S3DestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssm.mixins.CfnResourceDataSyncPropsMixin.S3DestinationProperty |
Python | aws_cdk.mixins_preview.aws_ssm.mixins.CfnResourceDataSyncPropsMixin.S3DestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssm » mixins » 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 { mixins as ssm_mixins } from '@aws-cdk/mixins-preview/aws-ssm';
const s3DestinationProperty: ssm_mixins.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