Interface CfnDatastore.DatastoreStorageProperty

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

@Stability(Stable) public static interface CfnDatastore.DatastoreStorageProperty extends software.amazon.jsii.JsiiSerializable
Where data store data is stored.

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.*;
 Object serviceManagedS3;
 DatastoreStorageProperty datastoreStorageProperty = DatastoreStorageProperty.builder()
         .customerManagedS3(CustomerManagedS3Property.builder()
                 .bucket("bucket")
                 .roleArn("roleArn")
                 // the properties below are optional
                 .keyPrefix("keyPrefix")
                 .build())
         .iotSiteWiseMultiLayerStorage(IotSiteWiseMultiLayerStorageProperty.builder()
                 .customerManagedS3Storage(CustomerManagedS3StorageProperty.builder()
                         .bucket("bucket")
                         // the properties below are optional
                         .keyPrefix("keyPrefix")
                         .build())
                 .build())
         .serviceManagedS3(serviceManagedS3)
         .build();
 

See Also: