Class: Aws::SecurityHub::Types::AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#conditionString

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`

Returns:

  • (String)


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_nameString

The name of the dependent container.

Returns:

  • (String)


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