Interface CfnResourceDataSync.IS3DestinationProperty
Information about the target S3 bucket for the resource data sync.
public interface CfnResourceDataSync.IS3DestinationProperty
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SSM;
var s3DestinationProperty = new S3DestinationProperty {
BucketName = "bucketName",
BucketRegion = "bucketRegion",
SyncFormat = "syncFormat",
// the properties below are optional
BucketPrefix = "bucketPrefix",
KmsKeyArn = "kmsKeyArn"
};
Remarks
ExampleMetadata: fixture=_generated
Properties
BucketName
The name of the S3 bucket where the aggregated data is stored.
string BucketName { get; }
Property Value
Remarks
BucketPrefix
An Amazon S3 prefix for the bucket.
string? BucketPrefix { get; }
Property Value
Remarks
BucketRegion
The AWS Region with the S3 bucket targeted by the resource data sync.
string BucketRegion { get; }
Property Value
Remarks
KmsKeyArn
The ARN of an encryption key for a destination in Amazon S3.
string? KmsKeyArn { get; }
Property Value
Remarks
Must belong to the same Region as the destination S3 bucket.
SyncFormat
A supported sync format.
string SyncFormat { get; }
Property Value
Remarks
The following format is currently supported: JsonSerDe