Interface SyntheticsCanaryStatusChange.ChangedConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SyntheticsCanaryStatusChange.ChangedConfig.Jsii$Proxy
- Enclosing class:
SyntheticsCanaryStatusChange
@Stability(Experimental)
public static interface SyntheticsCanaryStatusChange.ChangedConfig
extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for Changed-config.
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.*;
ChangedConfig 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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSyntheticsCanaryStatusChange.ChangedConfigstatic final classAn implementation forSyntheticsCanaryStatusChange.ChangedConfig -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) executionArn property.(experimental) testCodeLayerVersionArn property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExecutionArn
@Stability(Experimental) @Nullable default SyntheticsCanaryStatusChange.ExecutionArn 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getTestCodeLayerVersionArn
@Stability(Experimental) @Nullable default SyntheticsCanaryStatusChange.TestCodeLayerVersionArn getTestCodeLayerVersionArn()(experimental) testCodeLayerVersionArn property.Specify an array of string values to match this event if the actual value of testCodeLayerVersionArn 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
-