Interface FISExperimentStateChange.FISExperimentStateChangeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FISExperimentStateChange.FISExperimentStateChangeProps.Jsii$Proxy
- Enclosing class:
FISExperimentStateChange
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.fis.events.*;
FISExperimentStateChangeProps fISExperimentStateChangeProps = FISExperimentStateChangeProps.builder()
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.experimentId(List.of("experimentId"))
.newState(NewState.builder()
.reason(List.of("reason"))
.status(List.of("status"))
.build())
.oldState(OldState.builder()
.reason(List.of("reason"))
.status(List.of("status"))
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFISExperimentStateChange.FISExperimentStateChangePropsstatic final classAn implementation forFISExperimentStateChange.FISExperimentStateChangeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) experiment-id property.(experimental) new-state property.(experimental) old-state property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getExperimentId
(experimental) experiment-id property.Specify an array of string values to match this event if the actual value of experiment-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
-
getNewState
(experimental) new-state property.Specify an array of string values to match this event if the actual value of new-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
-
getOldState
(experimental) old-state property.Specify an array of string values to match this event if the actual value of old-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
-
builder
@Stability(Experimental) static FISExperimentStateChange.FISExperimentStateChangeProps.Builder builder()
-