Interface InstanceEvents.OpsWorksCommandStateChange.OpsWorksCommandStateChangeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
InstanceEvents.OpsWorksCommandStateChange.OpsWorksCommandStateChangeProps.Jsii$Proxy
- Enclosing class:
InstanceEvents.OpsWorksCommandStateChange
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.opsworks.events.*;
OpsWorksCommandStateChangeProps opsWorksCommandStateChangeProps = OpsWorksCommandStateChangeProps.builder()
.commandId(List.of("commandId"))
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.instanceId(List.of("instanceId"))
.status(List.of("status"))
.type(List.of("type"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forInstanceEvents.OpsWorksCommandStateChange.OpsWorksCommandStateChangeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) command-id property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) instance-id property.(experimental) status property.getType()(experimental) type property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCommandId
(experimental) command-id property.Specify an array of string values to match this event if the actual value of command-id 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
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getInstanceId
(experimental) instance-id property.Specify an array of string values to match this event if the actual value of instance-id is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Filter with the Instance reference
-
getStatus
(experimental) status property.Specify an array of string values to match this event if the actual value of status 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
-
getType
(experimental) type property.Specify an array of string values to match this event if the actual value of type 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
@Stability(Experimental) static InstanceEvents.OpsWorksCommandStateChange.OpsWorksCommandStateChangeProps.Builder builder()
-