Table of Contents

Class CfnResourceDataSync.S3DestinationProperty

Namespace
Amazon.CDK.AWS.SSM
Assembly
Amazon.CDK.AWS.SSM.dll

Information about the target S3 bucket for the resource data sync.

public class CfnResourceDataSync.S3DestinationProperty : CfnResourceDataSync.IS3DestinationProperty
Inheritance
CfnResourceDataSync.S3DestinationProperty
Implements
Inherited Members

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

Constructors

S3DestinationProperty()

public S3DestinationProperty()

Properties

BucketName

The name of the S3 bucket where the aggregated data is stored.

public string BucketName { get; set; }

Property Value

string

Remarks

BucketPrefix

An Amazon S3 prefix for the bucket.

public string? BucketPrefix { get; set; }

Property Value

string

Remarks

BucketRegion

The AWS Region with the S3 bucket targeted by the resource data sync.

public string BucketRegion { get; set; }

Property Value

string

Remarks

KmsKeyArn

The ARN of an encryption key for a destination in Amazon S3.

public string? KmsKeyArn { get; set; }

Property Value

string

Remarks

SyncFormat

A supported sync format.

public string SyncFormat { get; set; }

Property Value

string

Remarks