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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopicRule.CloudwatchLogsActionProperty
static final class
An implementation forCfnTopicRule.CloudwatchLogsActionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLogGroupName
The CloudWatch log name.- See Also:
-
getRoleArn
The IAM role that allows access to the CloudWatch log.- See Also:
-
getBatchMode
Indicates whether batches of log records will be extracted and uploaded into CloudWatch.- See Also:
-
builder
-