@Stability(value=Stable)
public static interface CfnDatastore.DatastoreStorageProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
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(ServiceManagedS3Property.builder().build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDatastore.DatastoreStorageProperty.Builder
A builder for
CfnDatastore.DatastoreStorageProperty |
static class |
CfnDatastore.DatastoreStorageProperty.Jsii$Proxy
An implementation for
CfnDatastore.DatastoreStorageProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDatastore.DatastoreStorageProperty.Builder |
builder() |
default Object |
getCustomerManagedS3()
`CfnDatastore.DatastoreStorageProperty.CustomerManagedS3`.
|
default Object |
getIotSiteWiseMultiLayerStorage()
`CfnDatastore.DatastoreStorageProperty.IotSiteWiseMultiLayerStorage`.
|
default Object |
getServiceManagedS3()
`CfnDatastore.DatastoreStorageProperty.ServiceManagedS3`.
|
@Stability(value=Stable) @Nullable default Object getCustomerManagedS3()
@Stability(value=Stable) @Nullable default Object getIotSiteWiseMultiLayerStorage()
@Stability(value=Stable) @Nullable default Object getServiceManagedS3()
@Stability(value=Stable) static CfnDatastore.DatastoreStorageProperty.Builder builder()
Copyright © 2021. All rights reserved.