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

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

Overview

An object representing a container instance or task attachment.

Constant Summary collapse

SENSITIVE =
[]

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:



43
44
45
46
47
48
49
50
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 43

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

#idString

The unique identifier for the attachment.

Returns:

  • (String)


43
44
45
46
47
48
49
50
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 43

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

#statusString

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

Returns:

  • (String)


43
44
45
46
47
48
49
50
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 43

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

#typeString

The type of the attachment, such as ElasticNetworkInterface.

Returns:

  • (String)


43
44
45
46
47
48
49
50
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 43

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