Class: Aws::Lightsail::Types::CreateDiskRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::CreateDiskRequest
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#add_ons ⇒ Array<Types::AddOnRequest>
An array of objects that represent the add-ons to enable for the new disk.
-
#availability_zone ⇒ String
The Availability Zone where you want to create the disk (
us-east-2a). -
#disk_name ⇒ String
The unique Lightsail disk name (
my-disk). -
#size_in_gb ⇒ Integer
The size of the disk in GB (
32). -
#tags ⇒ Array<Types::Tag>
The tag keys and optional values to add to the resource during create.
Instance Attribute Details
#add_ons ⇒ Array<Types::AddOnRequest>
An array of objects that represent the add-ons to enable for the new disk.
3585 3586 3587 3588 3589 3590 3591 3592 3593 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 3585 class CreateDiskRequest < Struct.new( :disk_name, :availability_zone, :size_in_gb, :tags, :add_ons) SENSITIVE = [] include Aws::Structure end |
#availability_zone ⇒ String
The Availability Zone where you want to create the disk
(us-east-2a). Use the same Availability Zone as the Lightsail
instance to which you want to attach the disk.
Use the get regions operation to list the Availability Zones where
Lightsail is currently available.
3585 3586 3587 3588 3589 3590 3591 3592 3593 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 3585 class CreateDiskRequest < Struct.new( :disk_name, :availability_zone, :size_in_gb, :tags, :add_ons) SENSITIVE = [] include Aws::Structure end |
#disk_name ⇒ String
The unique Lightsail disk name (my-disk).
3585 3586 3587 3588 3589 3590 3591 3592 3593 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 3585 class CreateDiskRequest < Struct.new( :disk_name, :availability_zone, :size_in_gb, :tags, :add_ons) SENSITIVE = [] include Aws::Structure end |
#size_in_gb ⇒ Integer
The size of the disk in GB (32).
3585 3586 3587 3588 3589 3590 3591 3592 3593 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 3585 class CreateDiskRequest < Struct.new( :disk_name, :availability_zone, :size_in_gb, :tags, :add_ons) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tag keys and optional values to add to the resource during create.
Use the TagResource action to tag a resource after it's created.
3585 3586 3587 3588 3589 3590 3591 3592 3593 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 3585 class CreateDiskRequest < Struct.new( :disk_name, :availability_zone, :size_in_gb, :tags, :add_ons) SENSITIVE = [] include Aws::Structure end |