Interface BaseScreenshot.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BaseScreenshot.Builder,BaseScreenshot>,SdkBuilder<BaseScreenshot.Builder,BaseScreenshot>,SdkPojo
- Enclosing class:
- BaseScreenshot
public static interface BaseScreenshot.Builder extends SdkPojo, CopyableBuilder<BaseScreenshot.Builder,BaseScreenshot>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BaseScreenshot.BuilderignoreCoordinates(String... ignoreCoordinates)Coordinates that define the part of a screen to ignore during screenshot comparisons.BaseScreenshot.BuilderignoreCoordinates(Collection<String> ignoreCoordinates)Coordinates that define the part of a screen to ignore during screenshot comparisons.BaseScreenshot.BuilderscreenshotName(String screenshotName)The name of the screenshot.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
screenshotName
BaseScreenshot.Builder screenshotName(String screenshotName)
The name of the screenshot. This is generated the first time the canary is run after the
UpdateCanaryoperation that specified for this canary to perform visual monitoring.- Parameters:
screenshotName- The name of the screenshot. This is generated the first time the canary is run after theUpdateCanaryoperation that specified for this canary to perform visual monitoring.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ignoreCoordinates
BaseScreenshot.Builder ignoreCoordinates(Collection<String> ignoreCoordinates)
Coordinates that define the part of a screen to ignore during screenshot comparisons. To obtain the coordinates to use here, use the CloudWatch console to draw the boundaries on the screen. For more information, see Editing or deleting a canary
- Parameters:
ignoreCoordinates- Coordinates that define the part of a screen to ignore during screenshot comparisons. To obtain the coordinates to use here, use the CloudWatch console to draw the boundaries on the screen. For more information, see Editing or deleting a canary- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ignoreCoordinates
BaseScreenshot.Builder ignoreCoordinates(String... ignoreCoordinates)
Coordinates that define the part of a screen to ignore during screenshot comparisons. To obtain the coordinates to use here, use the CloudWatch console to draw the boundaries on the screen. For more information, see Editing or deleting a canary
- Parameters:
ignoreCoordinates- Coordinates that define the part of a screen to ignore during screenshot comparisons. To obtain the coordinates to use here, use the CloudWatch console to draw the boundaries on the screen. For more information, see Editing or deleting a canary- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-