Interface CfnInstanceStorageConfig.S3ConfigProperty

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

@Stability(Stable) public static interface CfnInstanceStorageConfig.S3ConfigProperty extends software.amazon.jsii.JsiiSerializable
Information about the Amazon Simple Storage Service (Amazon S3) storage type.

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.connect.*;
 S3ConfigProperty s3ConfigProperty = S3ConfigProperty.builder()
         .bucketName("bucketName")
         .bucketPrefix("bucketPrefix")
         // the properties below are optional
         .encryptionConfig(EncryptionConfigProperty.builder()
                 .encryptionType("encryptionType")
                 .keyId("keyId")
                 .build())
         .build();
 

See Also: