Interface SyntheticsCanaryStatusChange.SyntheticsCanaryStatusChangeProps

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

@Stability(Experimental) public static interface SyntheticsCanaryStatusChange.SyntheticsCanaryStatusChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.synthetics@SyntheticsCanaryStatusChange 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.synthetics.events.*;
 SyntheticsCanaryStatusChangeProps syntheticsCanaryStatusChangeProps = SyntheticsCanaryStatusChangeProps.builder()
         .accountId(List.of("accountId"))
         .canaryId(List.of("canaryId"))
         .canaryName(List.of("canaryName"))
         .changedConfig(ChangedConfig.builder()
                 .executionArn(ExecutionArn.builder()
                         .currentValue(List.of("currentValue"))
                         .previousValue(List.of("previousValue"))
                         .build())
                 .testCodeLayerVersionArn(TestCodeLayerVersionArn.builder()
                         .currentValue(List.of("currentValue"))
                         .previousValue(List.of("previousValue"))
                         .build())
                 .build())
         .currentState(List.of("currentState"))
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .message(List.of("message"))
         .previousState(List.of("previousState"))
         .sourceLocation(List.of("sourceLocation"))
         .updatedOn(List.of("updatedOn"))
         .build();
 
  • Method Details

    • getAccountId

      @Stability(Experimental) @Nullable default List<String> getAccountId()
      (experimental) account-id property.

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

    • getCanaryId

      @Stability(Experimental) @Nullable default List<String> getCanaryId()
      (experimental) canary-id property.

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

    • getCanaryName

      @Stability(Experimental) @Nullable default List<String> getCanaryName()
      (experimental) canary-name property.

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

    • getChangedConfig

      @Stability(Experimental) @Nullable default SyntheticsCanaryStatusChange.ChangedConfig getChangedConfig()
      (experimental) changed-config property.

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

    • getCurrentState

      @Stability(Experimental) @Nullable default List<String> getCurrentState()
      (experimental) current-state property.

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

    • getEventMetadata

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

      Default: - -

    • getMessage

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

      Default: - Do not filter on this field

    • getPreviousState

      @Stability(Experimental) @Nullable default List<String> getPreviousState()
      (experimental) previous-state property.

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

    • getSourceLocation

      @Stability(Experimental) @Nullable default List<String> getSourceLocation()
      (experimental) source-location property.

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

    • getUpdatedOn

      @Stability(Experimental) @Nullable default List<String> getUpdatedOn()
      (experimental) updated-on property.

      Specify an array of string values to match this event if the actual value of updated-on 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 SyntheticsCanaryStatusChange.SyntheticsCanaryStatusChangeProps.Builder of SyntheticsCanaryStatusChange.SyntheticsCanaryStatusChangeProps