Interface CfnDatastorePropsMixin.CustomerManagedS3Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatastorePropsMixin.CustomerManagedS3Property.Jsii$Proxy
- Enclosing class:
CfnDatastorePropsMixin
@Stability(Stable)
public static interface CfnDatastorePropsMixin.CustomerManagedS3Property
extends software.amazon.jsii.JsiiSerializable
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.cfnpropertymixins.services.iotanalytics.*;
CustomerManagedS3Property customerManagedS3Property = CustomerManagedS3Property.builder()
.bucket("bucket")
.keyPrefix("keyPrefix")
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatastorePropsMixin.CustomerManagedS3Propertystatic final classAn implementation forCfnDatastorePropsMixin.CustomerManagedS3Property -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the Amazon S3 bucket where your data is stored.default String(Optional) The prefix used to create the keys of the data store data objects.default StringThe ARN of the role that grants ITA permission to interact with your Amazon S3 resources.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The name of the Amazon S3 bucket where your data is stored.- See Also:
-
getKeyPrefix
(Optional) The prefix used to create the keys of the data store data objects.Each object in an Amazon S3 bucket has a key that is its unique identifier in the bucket. Each object in a bucket has exactly one key. The prefix must end with a forward slash (/).
- See Also:
-
getRoleArn
The ARN of the role that grants ITA permission to interact with your Amazon S3 resources.- See Also:
-
builder
-