Class: Aws::ECS::Types::ContainerStateChange

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

Note:

When making an API call, you may pass ContainerStateChange data as a hash:

{
  container_name: "String",
  exit_code: 1,
  network_bindings: [
    {
      bind_ip: "String",
      container_port: 1,
      host_port: 1,
      protocol: "tcp", # accepts tcp, udp
    },
  ],
  reason: "String",
  status: "String",
}

An object representing a change in state for a container.

Instance Attribute Summary collapse

Instance Attribute Details

#container_nameString

The name of the container.

Returns:

  • (String)


1472
1473
1474
1475
1476
1477
1478
1479
# File 'lib/aws-sdk-ecs/types.rb', line 1472

class ContainerStateChange < Struct.new(
  :container_name,
  :exit_code,
  :network_bindings,
  :reason,
  :status)
  include Aws::Structure
end

#exit_codeInteger

The exit code for the container, if the state change is a result of the container exiting.

Returns:

  • (Integer)


1472
1473
1474
1475
1476
1477
1478
1479
# File 'lib/aws-sdk-ecs/types.rb', line 1472

class ContainerStateChange < Struct.new(
  :container_name,
  :exit_code,
  :network_bindings,
  :reason,
  :status)
  include Aws::Structure
end

#network_bindingsArray<Types::NetworkBinding>

Any network bindings associated with the container.

Returns:



1472
1473
1474
1475
1476
1477
1478
1479
# File 'lib/aws-sdk-ecs/types.rb', line 1472

class ContainerStateChange < Struct.new(
  :container_name,
  :exit_code,
  :network_bindings,
  :reason,
  :status)
  include Aws::Structure
end

#reasonString

The reason for the state change.

Returns:

  • (String)


1472
1473
1474
1475
1476
1477
1478
1479
# File 'lib/aws-sdk-ecs/types.rb', line 1472

class ContainerStateChange < Struct.new(
  :container_name,
  :exit_code,
  :network_bindings,
  :reason,
  :status)
  include Aws::Structure
end

#statusString

The status of the container.

Returns:

  • (String)


1472
1473
1474
1475
1476
1477
1478
1479
# File 'lib/aws-sdk-ecs/types.rb', line 1472

class ContainerStateChange < Struct.new(
  :container_name,
  :exit_code,
  :network_bindings,
  :reason,
  :status)
  include Aws::Structure
end