package awsssm // 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 "github.com/aws/aws-cdk-go/awscdk" // // s3DestinationProperty := &S3DestinationProperty{ // BucketName: jsii.String("bucketName"), // BucketRegion: jsii.String("bucketRegion"), // SyncFormat: jsii.String("syncFormat"), // // // the properties below are optional // BucketPrefix: jsii.String("bucketPrefix"), // KmsKeyArn: jsii.String("kmsKeyArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html // type CfnResourceDataSync_S3DestinationProperty struct { // The name of the S3 bucket where the aggregated data is stored. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketname // BucketName *string `field:"required" json:"bucketName" yaml:"bucketName"` // The AWS Region with the S3 bucket targeted by the resource data sync. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketregion // BucketRegion *string `field:"required" json:"bucketRegion" yaml:"bucketRegion"` // A supported sync format. // // The following format is currently supported: JsonSerDe. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-syncformat // SyncFormat *string `field:"required" json:"syncFormat" yaml:"syncFormat"` // An Amazon S3 prefix for the bucket. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-bucketprefix // BucketPrefix *string `field:"optional" json:"bucketPrefix" yaml:"bucketPrefix"` // The ARN of an encryption key for a destination in Amazon S3. // // Must belong to the same Region as the destination S3 bucket. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-resourcedatasync-s3destination.html#cfn-ssm-resourcedatasync-s3destination-kmskeyarn // KmsKeyArn *string `field:"optional" json:"kmsKeyArn" yaml:"kmsKeyArn"` }