Interface CfnResourceDataSync.S3DestinationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResourceDataSync.S3DestinationProperty.Jsii$Proxy
Enclosing class:
CfnResourceDataSync

@Stability(Stable) public static interface CfnResourceDataSync.S3DestinationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ssm.*;
 S3DestinationProperty s3DestinationProperty = S3DestinationProperty.builder()
         .bucketName("bucketName")
         .bucketRegion("bucketRegion")
         .syncFormat("syncFormat")
         // the properties below are optional
         .bucketPrefix("bucketPrefix")
         .kmsKeyArn("kmsKeyArn")
         .build();
 

See Also: