Class: Aws::Lightsail::Types::CreateDiskRequest

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

Overview

Note:

When making an API call, you may pass CreateDiskRequest data as a hash:

{
  disk_name: "ResourceName", # required
  availability_zone: "NonEmptyString", # required
  size_in_gb: 1, # required
  tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#availability_zoneString

The Availability Zone where you want to create the disk (e.g., ‘us-east-2a`). Choose the same Availability Zone as the Lightsail instance where you want to create the disk.

Use the GetRegions operation to list the Availability Zones where Lightsail is currently available.

Returns:

  • (String)


686
687
688
689
690
691
692
# File 'lib/aws-sdk-lightsail/types.rb', line 686

class CreateDiskRequest < Struct.new(
  :disk_name,
  :availability_zone,
  :size_in_gb,
  :tags)
  include Aws::Structure
end

#disk_nameString

The unique Lightsail disk name (e.g., ‘my-disk`).

Returns:

  • (String)


686
687
688
689
690
691
692
# File 'lib/aws-sdk-lightsail/types.rb', line 686

class CreateDiskRequest < Struct.new(
  :disk_name,
  :availability_zone,
  :size_in_gb,
  :tags)
  include Aws::Structure
end

#size_in_gbInteger

The size of the disk in GB (e.g., ‘32`).

Returns:

  • (Integer)


686
687
688
689
690
691
692
# File 'lib/aws-sdk-lightsail/types.rb', line 686

class CreateDiskRequest < Struct.new(
  :disk_name,
  :availability_zone,
  :size_in_gb,
  :tags)
  include Aws::Structure
end

#tagsArray<Types::Tag>

The tag keys and optional values to add to the resource during create.

To tag a resource after it has been created, see the ‘tag resource` operation.

Returns:



686
687
688
689
690
691
692
# File 'lib/aws-sdk-lightsail/types.rb', line 686

class CreateDiskRequest < Struct.new(
  :disk_name,
  :availability_zone,
  :size_in_gb,
  :tags)
  include Aws::Structure
end