Class: Aws::Synthetics::Types::Canary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::Canary
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-synthetics/types.rb
Overview
This structure contains all information about one canary in your account.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#artifact_config ⇒ Types::ArtifactConfigOutput
A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.
-
#artifact_s3_location ⇒ String
The location in Amazon S3 where Synthetics stores artifacts from the runs of this canary.
-
#code ⇒ Types::CanaryCodeOutput
This structure contains information about the canary’s Lambda handler and where its code is stored by CloudWatch Synthetics.
-
#engine_arn ⇒ String
The ARN of the Lambda function that is used as your canary’s engine.
-
#execution_role_arn ⇒ String
The ARN of the IAM role used to run the canary.
-
#failure_retention_period_in_days ⇒ Integer
The number of days to retain data about failed runs of this canary.
-
#id ⇒ String
The unique ID of this canary.
-
#name ⇒ String
The name of the canary.
-
#provisioned_resource_cleanup ⇒ String
Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted.
-
#run_config ⇒ Types::CanaryRunConfigOutput
A structure that contains information about a canary run.
-
#runtime_version ⇒ String
Specifies the runtime version to use for the canary.
-
#schedule ⇒ Types::CanaryScheduleOutput
A structure that contains information about how often the canary is to run, and when these runs are to stop.
-
#status ⇒ Types::CanaryStatus
A structure that contains information about the canary’s status.
-
#success_retention_period_in_days ⇒ Integer
The number of days to retain data about successful runs of this canary.
-
#tags ⇒ Hash<String,String>
The list of key-value pairs that are associated with the canary.
-
#timeline ⇒ Types::CanaryTimeline
A structure that contains information about when the canary was created, modified, and most recently run.
-
#visual_reference ⇒ Types::VisualReferenceOutput
If this canary performs visual monitoring by comparing screenshots, this structure contains the ID of the canary run to use as the baseline for screenshots, and the coordinates of any parts of the screen to ignore during the visual monitoring comparison.
-
#vpc_config ⇒ Types::VpcConfigOutput
If this canary is to test an endpoint in a VPC, this structure contains information about the subnets and security groups of the VPC endpoint.
Instance Attribute Details
#artifact_config ⇒ Types::ArtifactConfigOutput
A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#artifact_s3_location ⇒ String
The location in Amazon S3 where Synthetics stores artifacts from the runs of this canary. Artifacts include the log file, screenshots, and HAR files.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#code ⇒ Types::CanaryCodeOutput
This structure contains information about the canary’s Lambda handler and where its code is stored by CloudWatch Synthetics.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#engine_arn ⇒ String
The ARN of the Lambda function that is used as your canary’s engine. For more information about Lambda ARN format, see [Resources and Conditions for Lambda Actions].
[1]: docs.aws.amazon.com/lambda/latest/dg/lambda-api-permissions-ref.html
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#execution_role_arn ⇒ String
The ARN of the IAM role used to run the canary. This role must include ‘lambda.amazonaws.com` as a principal in the trust policy.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#failure_retention_period_in_days ⇒ Integer
The number of days to retain data about failed runs of this canary.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The unique ID of this canary.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the canary.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#provisioned_resource_cleanup ⇒ String
Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted. If it is ‘AUTOMATIC`, the Lambda functions and layers will be deleted when the canary is deleted.
If the value of this parameter is ‘OFF`, then the value of the `DeleteLambda` parameter of the [DeleteCanary] operation determines whether the Lambda functions and layers will be deleted.
[1]: docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DeleteCanary.html
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#run_config ⇒ Types::CanaryRunConfigOutput
A structure that contains information about a canary run.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#runtime_version ⇒ String
Specifies the runtime version to use for the canary. For more information about runtime versions, see [ Canary Runtime Versions].
[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Library.html
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#schedule ⇒ Types::CanaryScheduleOutput
A structure that contains information about how often the canary is to run, and when these runs are to stop.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#status ⇒ Types::CanaryStatus
A structure that contains information about the canary’s status.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#success_retention_period_in_days ⇒ Integer
The number of days to retain data about successful runs of this canary.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The list of key-value pairs that are associated with the canary.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#timeline ⇒ Types::CanaryTimeline
A structure that contains information about when the canary was created, modified, and most recently run.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#visual_reference ⇒ Types::VisualReferenceOutput
If this canary performs visual monitoring by comparing screenshots, this structure contains the ID of the canary run to use as the baseline for screenshots, and the coordinates of any parts of the screen to ignore during the visual monitoring comparison.
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |
#vpc_config ⇒ Types::VpcConfigOutput
If this canary is to test an endpoint in a VPC, this structure contains information about the subnets and security groups of the VPC endpoint. For more information, see [ Running a Canary in a VPC].
[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_VPC.html
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/aws-sdk-synthetics/types.rb', line 239 class Canary < Struct.new( :id, :name, :code, :execution_role_arn, :schedule, :run_config, :success_retention_period_in_days, :failure_retention_period_in_days, :status, :timeline, :artifact_s3_location, :engine_arn, :runtime_version, :vpc_config, :visual_reference, :provisioned_resource_cleanup, :tags, :artifact_config) SENSITIVE = [] include Aws::Structure end |