Interface CfnChannel.CustomerManagedS3Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.CustomerManagedS3Property.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.CustomerManagedS3Property
extends software.amazon.jsii.JsiiSerializable
Used to store channel data in an S3 bucket that you manage.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.CustomerManagedS3Property
static final class
An implementation forCfnChannel.CustomerManagedS3Property
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The name of the S3 bucket in which channel data is stored.- See Also:
-
getRoleArn
The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources.- See Also:
-
getKeyPrefix
(Optional) The prefix used to create the keys of the channel data objects.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 (/).
- See Also:
-
builder
-