Class: Aws::Synthetics::Types::BaseScreenshot

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-synthetics/types.rb

Overview

A structure representing a screenshot that is used as a baseline during visual monitoring comparisons made by the canary.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ignore_coordinatesArray<String>

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]

[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/synthetics_canaries_deletion.html

Returns:

  • (Array<String>)


113
114
115
116
117
118
# File 'lib/aws-sdk-synthetics/types.rb', line 113

class BaseScreenshot < Struct.new(
  :screenshot_name,
  :ignore_coordinates)
  SENSITIVE = []
  include Aws::Structure
end

#screenshot_nameString

The name of the screenshot. This is generated the first time the canary is run after the ‘UpdateCanary` operation that specified for this canary to perform visual monitoring.

Returns:

  • (String)


113
114
115
116
117
118
# File 'lib/aws-sdk-synthetics/types.rb', line 113

class BaseScreenshot < Struct.new(
  :screenshot_name,
  :ignore_coordinates)
  SENSITIVE = []
  include Aws::Structure
end