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