Interface RunStatusChange.RunStatusChangeProps

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

@Stability(Experimental) public static interface RunStatusChange.RunStatusChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.omics@RunStatusChange 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.omics.events.*;
 RunStatusChangeProps runStatusChangeProps = RunStatusChangeProps.builder()
         .arn(List.of("arn"))
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .omicsVersion(List.of("omicsVersion"))
         .status(List.of("status"))
         .build();
 
  • Method Details

    • getArn

      @Stability(Experimental) @Nullable default List<String> getArn()
      (experimental) arn property.

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

    • getEventMetadata

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

      Default: - -

    • getOmicsVersion

      @Stability(Experimental) @Nullable default List<String> getOmicsVersion()
      (experimental) omicsVersion property.

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

    • builder

      @Stability(Experimental) static RunStatusChange.RunStatusChangeProps.Builder builder()
      Returns:
      a RunStatusChange.RunStatusChangeProps.Builder of RunStatusChange.RunStatusChangeProps