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)


10357
10358
10359
10360
10361
10362
# File 'lib/aws-sdk-securityhub/types.rb', line 10357

class AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails < Struct.new(
  :condition,
  :container_name)
  SENSITIVE = []
  include Aws::Structure
end

#container_nameString

The name of the dependent container.

Returns:

  • (String)


10357
10358
10359
10360
10361
10362
# File 'lib/aws-sdk-securityhub/types.rb', line 10357

class AwsEcsTaskDefinitionContainerDefinitionsDependsOnDetails < Struct.new(
  :condition,
  :container_name)
  SENSITIVE = []
  include Aws::Structure
end