Interface SyntheticsCanaryStatusChange.SyntheticsCanaryStatusChangeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SyntheticsCanaryStatusChange.SyntheticsCanaryStatusChangeProps.Jsii$Proxy
- Enclosing class:
SyntheticsCanaryStatusChange
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forSyntheticsCanaryStatusChange.SyntheticsCanaryStatusChangeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) account-id property.(experimental) canary-id property.(experimental) canary-name property.(experimental) changed-config property.(experimental) current-state property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) message property.(experimental) previous-state property.(experimental) source-location property.(experimental) updated-on property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
@Stability(Experimental) static SyntheticsCanaryStatusChange.SyntheticsCanaryStatusChangeProps.Builder builder()
-