Interface CfnCanary.BaseScreenshotProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCanary.BaseScreenshotProperty.Jsii$Proxy
Enclosing class:
CfnCanary

@Stability(Stable) public static interface CfnCanary.BaseScreenshotProperty extends software.amazon.jsii.JsiiSerializable
A structure representing a screenshot that is used as a baseline during visual monitoring comparisons made by the canary.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.synthetics.*;
 BaseScreenshotProperty baseScreenshotProperty = BaseScreenshotProperty.builder()
         .screenshotName("screenshotName")
         // the properties below are optional
         .ignoreCoordinates(List.of("ignoreCoordinates"))
         .build();
 

See Also: