Class: Aws::EC2::Types::EbsInstanceBlockDeviceSpecification

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

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

Describes information used to set up an EBS volume specified in a block device mapping.

Instance Attribute Summary collapse

Instance Attribute Details

#delete_on_terminationBoolean

Indicates whether the volume is deleted on instance termination.

Returns:

  • (Boolean)


18341
18342
18343
18344
18345
# File 'lib/aws-sdk-ec2/types.rb', line 18341

class EbsInstanceBlockDeviceSpecification < Struct.new(
  :delete_on_termination,
  :volume_id)
  include Aws::Structure
end

#volume_idString

The ID of the EBS volume.

Returns:

  • (String)


18341
18342
18343
18344
18345
# File 'lib/aws-sdk-ec2/types.rb', line 18341

class EbsInstanceBlockDeviceSpecification < Struct.new(
  :delete_on_termination,
  :volume_id)
  include Aws::Structure
end