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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInstanceStorageConfig.S3ConfigProperty
static final class
An implementation forCfnInstanceStorageConfig.S3ConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The S3 bucket name. -
getBucketPrefix
The S3 bucket prefix. -
getEncryptionConfig
The Amazon S3 encryption configuration. -
builder
-