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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInstanceStorageConfig.S3ConfigPropertystatic final classAn implementation forCfnInstanceStorageConfig.S3ConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The S3 bucket name.- See Also:
-
getBucketPrefix
The S3 bucket prefix.- See Also:
-
getEncryptionConfig
The Amazon S3 encryption configuration.Returns union: either
IResolvableorCfnInstanceStorageConfig.EncryptionConfigProperty- See Also:
-
builder
-