Interface AWSAPICallViaCloudTrail.ResponseElements
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AWSAPICallViaCloudTrail.ResponseElements.Jsii$Proxy
- Enclosing class:
AWSAPICallViaCloudTrail
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.autoscaling.events.*;
Object alarms;
Object failedScheduledActions;
Object failedScheduledUpdateGroupActions;
ResponseElements responseElements = ResponseElements.builder()
.alarms(List.of(alarms))
.failedScheduledActions(List.of(failedScheduledActions))
.failedScheduledUpdateGroupActions(List.of(failedScheduledUpdateGroupActions))
.policyArn(List.of("policyArn"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSAPICallViaCloudTrail.ResponseElementsstatic final classAn implementation forAWSAPICallViaCloudTrail.ResponseElements -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) alarms property.(experimental) failedScheduledActions property.(experimental) failedScheduledUpdateGroupActions property.(experimental) policyARN property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlarms
(experimental) alarms property.Specify an array of string values to match this event if the actual value of alarms is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getFailedScheduledActions
(experimental) failedScheduledActions property.Specify an array of string values to match this event if the actual value of failedScheduledActions is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getFailedScheduledUpdateGroupActions
(experimental) failedScheduledUpdateGroupActions property.Specify an array of string values to match this event if the actual value of failedScheduledUpdateGroupActions is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getPolicyArn
(experimental) policyARN property.Specify an array of string values to match this event if the actual value of policyARN is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-