interface CfnResourceDataSyncMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSM.Mixins.CfnResourceDataSyncMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssm/mixins#CfnResourceDataSyncMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ssm.mixins.CfnResourceDataSyncMixinProps |
Python | aws_cdk.mixins_preview.aws_ssm.mixins.CfnResourceDataSyncMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ssm » mixins » CfnResourceDataSyncMixinProps |
Properties for CfnResourceDataSyncPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html
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 cfnResourceDataSyncMixinProps: ssm_mixins.CfnResourceDataSyncMixinProps = {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
bucketRegion: 'bucketRegion',
kmsKeyArn: 'kmsKeyArn',
s3Destination: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
bucketRegion: 'bucketRegion',
kmsKeyArn: 'kmsKeyArn',
syncFormat: 'syncFormat',
},
syncFormat: 'syncFormat',
syncName: 'syncName',
syncSource: {
awsOrganizationsSource: {
organizationalUnits: ['organizationalUnits'],
organizationSourceType: 'organizationSourceType',
},
includeFutureRegions: false,
sourceRegions: ['sourceRegions'],
sourceType: 'sourceType',
},
syncType: 'syncType',
};
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 Amazon Resource Name (ARN) of an encryption key for a destination in Amazon S3 . |
| s3 | IResolvable | S3 | Configuration information for the target S3 bucket. |
| sync | string | A supported sync format. |
| sync | string | A name for the resource data sync. |
| sync | IResolvable | Sync | Information about the source where the data was synchronized. |
| sync | string | The type of resource data sync. |
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 Amazon Resource Name (ARN) of an encryption key for a destination in Amazon S3 .
You can use a KMS key to encrypt inventory data in Amazon S3 . You must specify a key that exist in the same AWS Region as the destination Amazon S3 bucket.
s3Destination?
Type:
IResolvable | S3
(optional)
Configuration information for the target S3 bucket.
syncFormat?
Type:
string
(optional)
A supported sync format.
The following format is currently supported: JsonSerDe
syncName?
Type:
string
(optional)
A name for the resource data sync.
syncSource?
Type:
IResolvable | Sync
(optional)
Information about the source where the data was synchronized.
syncType?
Type:
string
(optional)
The type of resource data sync.
If SyncType is SyncToDestination , then the resource data sync synchronizes data to an S3 bucket. If the SyncType is SyncFromSource then the resource data sync synchronizes data from AWS Organizations or from multiple AWS Regions .

.NET
Go
Java
Python
TypeScript