Interface FISExperimentStateChange.FISExperimentStateChangeProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
FISExperimentStateChange.FISExperimentStateChangeProps.Jsii$Proxy
Enclosing class:
FISExperimentStateChange

@Stability(Experimental) public static interface FISExperimentStateChange.FISExperimentStateChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.fis@FISExperimentStateChange event.

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();
 
  • Method Details

    • getEventMetadata

      @Stability(Experimental) @Nullable default AWSEventMetadataProps getEventMetadata()
      (experimental) EventBridge event metadata.

      Default: - -

    • getExperimentId

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getNewState

      @Stability(Experimental) @Nullable default FISExperimentStateChange.NewState 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getOldState

      @Stability(Experimental) @Nullable default FISExperimentStateChange.OldState 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      @Stability(Experimental) static FISExperimentStateChange.FISExperimentStateChangeProps.Builder builder()
      Returns:
      a FISExperimentStateChange.FISExperimentStateChangeProps.Builder of FISExperimentStateChange.FISExperimentStateChangeProps