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: