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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ec2/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)


30264
30265
30266
30267
30268
30269
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 30264

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

#volume_idString

The ID of the EBS volume.

Returns:

  • (String)


30264
30265
30266
30267
30268
30269
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 30264

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