Class: Aws::EC2::Types::VolumeDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::VolumeDetail
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Note:
When making an API call, you may pass VolumeDetail data as a hash:
{
size: 1, # required
}
Describes an EBS volume.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#size ⇒ Integer
The size of the volume, in GiB.
Instance Attribute Details
#size ⇒ Integer
The size of the volume, in GiB.
69497 69498 69499 69500 69501 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 69497 class VolumeDetail < Struct.new( :size) SENSITIVE = [] include Aws::Structure end |