Class: Aws::ECS::Types::ContainerInstanceHealthStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ContainerInstanceHealthStatus
- Includes:
- Structure
- Defined in:
- 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.
2210 2211 2212 2213 2214 2215 |
# File 'lib/aws-sdk-ecs/types.rb', line 2210 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.
2210 2211 2212 2213 2214 2215 |
# File 'lib/aws-sdk-ecs/types.rb', line 2210 class ContainerInstanceHealthStatus < Struct.new( :overall_status, :details) SENSITIVE = [] include Aws::Structure end |