public static interface CfnChannel.CustomerManagedS3Property
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.*; CustomerManagedS3Property customerManagedS3Property = CustomerManagedS3Property.builder() .bucket("bucket") .roleArn("roleArn") // the properties below are optional .keyPrefix("keyPrefix") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnChannel.CustomerManagedS3Property.Builder
A builder for
CfnChannel.CustomerManagedS3Property |
static class |
CfnChannel.CustomerManagedS3Property.Jsii$Proxy
An implementation for
CfnChannel.CustomerManagedS3Property |
Modifier and Type | Method and Description |
---|---|
static CfnChannel.CustomerManagedS3Property.Builder |
builder() |
java.lang.String |
getBucket()
The name of the S3 bucket in which channel data is stored.
|
default java.lang.String |
getKeyPrefix()
(Optional) The prefix used to create the keys of the channel data objects.
|
java.lang.String |
getRoleArn()
The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources.
|
java.lang.String getBucket()
java.lang.String getRoleArn()
default java.lang.String getKeyPrefix()
Each object in an S3 bucket has a key that is its unique identifier within the bucket (each object in a bucket has exactly one key). The prefix must end with a forward slash (/).
static CfnChannel.CustomerManagedS3Property.Builder builder()