interface ExecutionArn
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Synthetics.Events.SyntheticsCanaryStatusChange.ExecutionArn |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssynthetics/events#SyntheticsCanaryStatusChange_ExecutionArn |
Java | software.amazon.awscdk.mixins.preview.services.synthetics.events.SyntheticsCanaryStatusChange.ExecutionArn |
Python | aws_cdk.mixins_preview.aws_synthetics.events.SyntheticsCanaryStatusChange.ExecutionArn |
TypeScript | @aws-cdk/mixins-preview ยป aws_synthetics ยป events ยป SyntheticsCanaryStatusChange ยป ExecutionArn |
Type definition for ExecutionArn.
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 executionArn: synthetics_events.SyntheticsCanaryStatusChange.ExecutionArn = {
currentValue: ['currentValue'],
previousValue: ['previousValue'],
};
Properties
| Name | Type | Description |
|---|---|---|
| current | string[] | current-value property. |
| previous | string[] | previous-value property. |
currentValue?
Type:
string[]
(optional, default: Do not filter on this field)
current-value property.
Specify an array of string values to match this event if the actual value of current-value is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
previousValue?
Type:
string[]
(optional, default: Do not filter on this field)
previous-value property.
Specify an array of string values to match this event if the actual value of previous-value 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