Interface CfnTopicRule.CloudwatchLogsActionProperty

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

@Stability(Stable) public static interface CfnTopicRule.CloudwatchLogsActionProperty extends software.amazon.jsii.JsiiSerializable
Describes an action that updates a CloudWatch log.

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.*;
 CloudwatchLogsActionProperty cloudwatchLogsActionProperty = CloudwatchLogsActionProperty.builder()
         .logGroupName("logGroupName")
         .roleArn("roleArn")
         // the properties below are optional
         .batchMode(false)
         .build();
 

See Also: