Interface CfnDatastore.CustomerManagedS3StorageProperty

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

@Stability(Stable) public static interface CfnDatastore.CustomerManagedS3StorageProperty extends software.amazon.jsii.JsiiSerializable
Amazon S3 -customer-managed;

When you choose customer-managed storage, the retentionPeriod parameter is ignored. You can't change the choice of Amazon S3 storage after your data store is created.

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.iotanalytics.*;
 CustomerManagedS3StorageProperty customerManagedS3StorageProperty = CustomerManagedS3StorageProperty.builder()
         .bucket("bucket")
         // the properties below are optional
         .keyPrefix("keyPrefix")
         .build();