Class: Aws::ECS::Types::AttachmentStateChange

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 AttachmentStateChange data as a hash:

{
  attachment_arn: "String", # required
  status: "String", # required
}

An object representing a change in state for a task attachment.

Instance Attribute Summary collapse

Instance Attribute Details

#attachment_arnString

The Amazon Resource Name (ARN) of the attachment.

Returns:

  • (String)


63
64
65
66
67
# File 'lib/aws-sdk-ecs/types.rb', line 63

class AttachmentStateChange < Struct.new(
  :attachment_arn,
  :status)
  include Aws::Structure
end

#statusString

The status of the attachment.

Returns:

  • (String)


63
64
65
66
67
# File 'lib/aws-sdk-ecs/types.rb', line 63

class AttachmentStateChange < Struct.new(
  :attachment_arn,
  :status)
  include Aws::Structure
end