Interface StepFunctionsExecutionStatusChange.StepFunctionsExecutionStatusChangeProps

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

@Stability(Experimental) public static interface StepFunctionsExecutionStatusChange.StepFunctionsExecutionStatusChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.states@StepFunctionsExecutionStatusChange 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.states.events.*;
 StepFunctionsExecutionStatusChangeProps stepFunctionsExecutionStatusChangeProps = StepFunctionsExecutionStatusChangeProps.builder()
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .executionArn(List.of("executionArn"))
         .input(List.of("input"))
         .name(List.of("name"))
         .output(List.of("output"))
         .startDate(List.of("startDate"))
         .stateMachineArn(List.of("stateMachineArn"))
         .status(List.of("status"))
         .stopDate(List.of("stopDate"))
         .build();
 
  • Method Details

    • getEventMetadata

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

      Default: - -

    • getExecutionArn

      @Stability(Experimental) @Nullable default List<String> getExecutionArn()
      (experimental) executionArn property.

      Specify an array of string values to match this event if the actual value of executionArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

      Default: - Filter with the Execution reference

    • getInput

      @Stability(Experimental) @Nullable default List<String> getInput()
      (experimental) input property.

      Specify an array of string values to match this event if the actual value of input 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

    • getName

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

      Default: - Do not filter on this field

    • getOutput

      @Stability(Experimental) @Nullable default List<String> getOutput()
      (experimental) output property.

      Specify an array of string values to match this event if the actual value of output 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

    • getStartDate

      @Stability(Experimental) @Nullable default List<String> getStartDate()
      (experimental) startDate property.

      Specify an array of string values to match this event if the actual value of startDate 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

    • getStateMachineArn

      @Stability(Experimental) @Nullable default List<String> getStateMachineArn()
      (experimental) stateMachineArn property.

      Specify an array of string values to match this event if the actual value of stateMachineArn 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

    • getStatus

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

      Default: - Do not filter on this field

    • getStopDate

      @Stability(Experimental) @Nullable default List<String> getStopDate()
      (experimental) stopDate property.

      Specify an array of string values to match this event if the actual value of stopDate 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

      Returns:
      a StepFunctionsExecutionStatusChange.StepFunctionsExecutionStatusChangeProps.Builder of StepFunctionsExecutionStatusChange.StepFunctionsExecutionStatusChangeProps