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.
2155 2156 2157 2158 2159 2160 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 2155 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.
2155 2156 2157 2158 2159 2160 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 2155 class ContainerInstanceHealthStatus < Struct.new( :overall_status, :details) SENSITIVE = [] include Aws::Structure end |