Class: Aws::EC2::Types::NetworkInterfaceAttachmentChanges

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

Overview

Note:

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

{
  attachment_id: "String",
  delete_on_termination: false,
}

Describes an attachment change.

Instance Attribute Summary collapse

Instance Attribute Details

#attachment_idString

The ID of the network interface attachment.

Returns:

  • (String)


27346
27347
27348
27349
27350
# File 'lib/aws-sdk-ec2/types.rb', line 27346

class NetworkInterfaceAttachmentChanges < Struct.new(
  :attachment_id,
  :delete_on_termination)
  include Aws::Structure
end

#delete_on_terminationBoolean

Indicates whether the network interface is deleted when the instance is terminated.

Returns:

  • (Boolean)


27346
27347
27348
27349
27350
# File 'lib/aws-sdk-ec2/types.rb', line 27346

class NetworkInterfaceAttachmentChanges < Struct.new(
  :attachment_id,
  :delete_on_termination)
  include Aws::Structure
end