interface ChangedConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Synthetics.Events.SyntheticsCanaryStatusChange.ChangedConfig |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssynthetics/events#SyntheticsCanaryStatusChange_ChangedConfig |
Java | software.amazon.awscdk.mixins.preview.services.synthetics.events.SyntheticsCanaryStatusChange.ChangedConfig |
Python | aws_cdk.mixins_preview.aws_synthetics.events.SyntheticsCanaryStatusChange.ChangedConfig |
TypeScript | @aws-cdk/mixins-preview ยป aws_synthetics ยป events ยป SyntheticsCanaryStatusChange ยป ChangedConfig |
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 { events as synthetics_events } from '@aws-cdk/mixins-preview/aws-synthetics';
const changedConfig: synthetics_events.SyntheticsCanaryStatusChange.ChangedConfig = {
executionArn: {
currentValue: ['currentValue'],
previousValue: ['previousValue'],
},
testCodeLayerVersionArn: {
currentValue: ['currentValue'],
previousValue: ['previousValue'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| execution | Execution | executionArn property. |
| test | Test | testCodeLayerVersionArn property. |
executionArn?
Type:
Execution
(optional, default: Do not filter on this field)
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.
testCodeLayerVersionArn?
Type:
Test
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript