Class: Aws::SecurityHub::Types::AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
A dependency that is defined for container startup and shutdown.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#condition ⇒ String
The dependency condition of the dependent container.
-
#container_name ⇒ String
The name of the dependent container.
Instance Attribute Details
#condition ⇒ String
The dependency condition of the dependent container. Indicates the required status of the dependent container before the current container can start. Valid values are as follows:
-
‘COMPLETE`
-
‘HEALTHY`
-
‘SUCCESS`
-
‘START`
10350 10351 10352 10353 10354 10355 |
# File 'lib/aws-sdk-securityhub/types.rb', line 10350 class AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails < Struct.new( :condition, :container_name) SENSITIVE = [] include Aws::Structure end |
#container_name ⇒ String
The name of the dependent container.
10350 10351 10352 10353 10354 10355 |
# File 'lib/aws-sdk-securityhub/types.rb', line 10350 class AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails < Struct.new( :condition, :container_name) SENSITIVE = [] include Aws::Structure end |