Interface CfnTopicRule.S3ActionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTopicRule.S3ActionProperty.Jsii$Proxy
Enclosing class:
CfnTopicRule

@Stability(Stable) public static interface CfnTopicRule.S3ActionProperty extends software.amazon.jsii.JsiiSerializable
Describes an action to write data to an Amazon S3 bucket.

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.iot.*;
 S3ActionProperty s3ActionProperty = S3ActionProperty.builder()
         .bucketName("bucketName")
         .key("key")
         .roleArn("roleArn")
         // the properties below are optional
         .cannedAcl("cannedAcl")
         .build();
 

See Also: