Class: Aws::ECS::Types::ContainerInstanceHealthStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ContainerInstanceHealthStatus
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
An object representing the health status of the container instance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#details ⇒ Array<Types::InstanceHealthCheckResult>
An array of objects representing the details of the container instance health status.
-
#overall_status ⇒ String
The overall health status of the container instance.
Instance Attribute Details
#details ⇒ Array<Types::InstanceHealthCheckResult>
An array of objects representing the details of the container instance health status.
2242 2243 2244 2245 2246 2247 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 2242 class ContainerInstanceHealthStatus < Struct.new( :overall_status, :details) SENSITIVE = [] include Aws::Structure end |
#overall_status ⇒ String
The overall health status of the container instance. This is an aggregate status of all container instance health checks.
2242 2243 2244 2245 2246 2247 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 2242 class ContainerInstanceHealthStatus < Struct.new( :overall_status, :details) SENSITIVE = [] include Aws::Structure end |