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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopicRule.S3ActionProperty
static final class
An implementation forCfnTopicRule.S3ActionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The Amazon S3 bucket.- See Also:
-
getKey
The object key.For more information, see Actions, resources, and condition keys for Amazon S3 .
- See Also:
-
getRoleArn
The ARN of the IAM role that grants access.- See Also:
-
getCannedAcl
The Amazon S3 canned ACL that controls access to the object identified by the object key.For more information, see S3 canned ACLs .
- See Also:
-
builder
-