Class: Aws::AppConfig::Types::Monitor
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfig::Types::Monitor
- Defined in:
- gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb
Overview
Note:
When making an API call, you may pass Monitor data as a hash:
{
alarm_arn: "StringWithLengthBetween1And2048", # required
alarm_role_arn: "RoleArn",
}
Amazon CloudWatch alarms to monitor during the deployment process.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alarm_arn ⇒ String
Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
-
#alarm_role_arn ⇒ String
ARN of an Identity and Access Management (IAM) role for AppConfig to monitor
AlarmArn
.
Instance Attribute Details
#alarm_arn ⇒ String
Amazon Resource Name (ARN) of the Amazon CloudWatch alarm.
1696 1697 1698 1699 1700 1701 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 1696 class Monitor < Struct.new( :alarm_arn, :alarm_role_arn) SENSITIVE = [] include Aws::Structure end |
#alarm_role_arn ⇒ String
ARN of an Identity and Access Management (IAM) role for AppConfig to
monitor AlarmArn
.
1696 1697 1698 1699 1700 1701 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 1696 class Monitor < Struct.new( :alarm_arn, :alarm_role_arn) SENSITIVE = [] include Aws::Structure end |