Class: Aws::ECS::Types::Attachment

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

Overview

An object representing a container instance or task attachment.

Instance Attribute Summary collapse

Instance Attribute Details

#detailsArray<Types::KeyValuePair>

Details of the attachment. For elastic network interfaces, this includes the network interface ID, the MAC address, the subnet ID, and the private IPv4 address.

Returns:



35
36
37
38
39
40
41
# File 'lib/aws-sdk-ecs/types.rb', line 35

class Attachment < Struct.new(
  :id,
  :type,
  :status,
  :details)
  include Aws::Structure
end

#idString

The unique identifier for the attachment.

Returns:

  • (String)


35
36
37
38
39
40
41
# File 'lib/aws-sdk-ecs/types.rb', line 35

class Attachment < Struct.new(
  :id,
  :type,
  :status,
  :details)
  include Aws::Structure
end

#statusString

The status of the attachment. Valid values are ‘PRECREATED`, `CREATED`, `ATTACHING`, `ATTACHED`, `DETACHING`, `DETACHED`, and `DELETED`.

Returns:

  • (String)


35
36
37
38
39
40
41
# File 'lib/aws-sdk-ecs/types.rb', line 35

class Attachment < Struct.new(
  :id,
  :type,
  :status,
  :details)
  include Aws::Structure
end

#typeString

The type of the attachment, such as ‘ElasticNetworkInterface`.

Returns:

  • (String)


35
36
37
38
39
40
41
# File 'lib/aws-sdk-ecs/types.rb', line 35

class Attachment < Struct.new(
  :id,
  :type,
  :status,
  :details)
  include Aws::Structure
end