Interface EMRClusterStateChange.EMRClusterStateChangeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EMRClusterStateChange.EMRClusterStateChangeProps.Jsii$Proxy
- Enclosing class:
EMRClusterStateChange
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.emr.events.*;
EMRClusterStateChangeProps eMRClusterStateChangeProps = EMRClusterStateChangeProps.builder()
.clusterId(List.of("clusterId"))
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.message(List.of("message"))
.name(List.of("name"))
.severity(List.of("severity"))
.state(List.of("state"))
.stateChangeReason(List.of("stateChangeReason"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEMRClusterStateChange.EMRClusterStateChangePropsstatic final classAn implementation forEMRClusterStateChange.EMRClusterStateChangeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) clusterId property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) message property.getName()(experimental) name property.(experimental) severity property.getState()(experimental) state property.(experimental) stateChangeReason property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterId
(experimental) clusterId property.Specify an array of string values to match this event if the actual value of clusterId 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: - -
-
getMessage
(experimental) message property.Specify an array of string values to match this event if the actual value of message 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
-
getName
(experimental) name property.Specify an array of string values to match this event if the actual value of name 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
-
getSeverity
(experimental) severity property.Specify an array of string values to match this event if the actual value of severity 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
-
getState
(experimental) state property.Specify an array of string values to match this event if the actual value of state 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
-
getStateChangeReason
(experimental) stateChangeReason property.Specify an array of string values to match this event if the actual value of stateChangeReason 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
-