Interface CfnResourceDataSyncPropsMixin.S3DestinationProperty

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

@Stability(Stable) public static interface CfnResourceDataSyncPropsMixin.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.cfnpropertymixins.services.ssm.*;
 S3DestinationProperty s3DestinationProperty = S3DestinationProperty.builder()
         .bucketName("bucketName")
         .bucketPrefix("bucketPrefix")
         .bucketRegion("bucketRegion")
         .kmsKeyArn("kmsKeyArn")
         .syncFormat("syncFormat")
         .build();
 

See Also: