Class: Aws::Route53::Types::AlarmIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::AlarmIdentifier
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53/types.rb
Overview
A complex type that identifies the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether the specified health check is healthy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether this health check is healthy.
-
#region ⇒ String
For the CloudWatch alarm that you want Route 53 health checkers to use to determine whether this health check is healthy, the region that the alarm was created in.
Instance Attribute Details
#name ⇒ String
The name of the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether this health check is healthy.
<note markdown=“1”> Route 53 supports CloudWatch alarms with the following features:
* Standard-resolution metrics. High-resolution metrics aren't
supported. For more information, see [High-Resolution Metrics][1]
in the *Amazon CloudWatch User Guide*.
-
Statistics: Average, Minimum, Maximum, Sum, and SampleCount. Extended statistics aren’t supported.
</note>
128 129 130 131 132 133 |
# File 'lib/aws-sdk-route53/types.rb', line 128 class AlarmIdentifier < Struct.new( :region, :name) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
For the CloudWatch alarm that you want Route 53 health checkers to use to determine whether this health check is healthy, the region that the alarm was created in.
For the current list of CloudWatch regions, see [Amazon CloudWatch endpoints and quotas] in the *Amazon Web Services General Reference*.
128 129 130 131 132 133 |
# File 'lib/aws-sdk-route53/types.rb', line 128 class AlarmIdentifier < Struct.new( :region, :name) SENSITIVE = [] include Aws::Structure end |