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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicRule.CloudwatchLogsActionPropertystatic final classAn implementation forCfnTopicRule.CloudwatchLogsActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLogGroupName
The CloudWatch log name. -
getRoleArn
The IAM role that allows access to the CloudWatch log. -
getBatchMode
Indicates whether batches of log records will be extracted and uploaded into CloudWatch. -
builder
-