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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#delete_on_terminationBoolean

Indicates whether the volume is deleted on instance termination.

Returns:

  • (Boolean)


33437
33438
33439
33440
33441
33442
# File 'lib/aws-sdk-ec2/types.rb', line 33437

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

#volume_idString

The ID of the EBS volume.

Returns:

  • (String)


33437
33438
33439
33440
33441
33442
# File 'lib/aws-sdk-ec2/types.rb', line 33437

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