Class: Aws::ECS::Types::DaemonAlarmConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::DaemonAlarmConfiguration
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The CloudWatch alarm configuration for a daemon. When enabled, CloudWatch alarms determine whether a daemon deployment has failed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alarm_names ⇒ Array<String>
The CloudWatch alarm names to monitor during a daemon deployment.
-
#enable ⇒ Boolean
Determines whether to use the CloudWatch alarm option in the daemon deployment process.
Instance Attribute Details
#alarm_names ⇒ Array<String>
The CloudWatch alarm names to monitor during a daemon deployment.
4009 4010 4011 4012 4013 4014 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4009 class DaemonAlarmConfiguration < Struct.new( :alarm_names, :enable) SENSITIVE = [] include Aws::Structure end |
#enable ⇒ Boolean
Determines whether to use the CloudWatch alarm option in the daemon
deployment process. The default value is false.
4009 4010 4011 4012 4013 4014 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 4009 class DaemonAlarmConfiguration < Struct.new( :alarm_names, :enable) SENSITIVE = [] include Aws::Structure end |