Interface SyntheticsCanaryTestRunFailure.CanaryRunTimeline
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SyntheticsCanaryTestRunFailure.CanaryRunTimeline.Jsii$Proxy
- Enclosing class:
SyntheticsCanaryTestRunFailure
@Stability(Experimental)
public static interface SyntheticsCanaryTestRunFailure.CanaryRunTimeline
extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.mixins.preview.services.synthetics.events.*;
CanaryRunTimeline canaryRunTimeline = CanaryRunTimeline.builder()
.completed(List.of("completed"))
.started(List.of("started"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSyntheticsCanaryTestRunFailure.CanaryRunTimelinestatic final classAn implementation forSyntheticsCanaryTestRunFailure.CanaryRunTimeline -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) completed property.(experimental) started property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCompleted
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getStarted
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-