The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::Lightsail::CreateInstancesFromSnapshot - Arguments for method CreateInstancesFromSnapshot on Paws::Lightsail

DESCRIPTION

This class represents the parameters used for calling the method CreateInstancesFromSnapshot on the Amazon Lightsail service. Use the attributes of this class as arguments to method CreateInstancesFromSnapshot.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateInstancesFromSnapshot.

SYNOPSIS

    my $lightsail = Paws->service('Lightsail');
    my $CreateInstancesFromSnapshotResult =
      $lightsail->CreateInstancesFromSnapshot(
      AvailabilityZone     => 'Mystring',
      BundleId             => 'MyNonEmptyString',
      InstanceNames        => [ 'Mystring', ... ],
      InstanceSnapshotName => 'MyResourceName',
      AttachedDiskMapping  => {
        'MyResourceName' => [
          {
            NewDiskName      => 'MyResourceName',
            OriginalDiskPath => 'MyNonEmptyString',
          },
          ...
        ],
      },    # OPTIONAL
      KeyPairName => 'MyResourceName',    # OPTIONAL
      Tags        => [
        {
          Key   => 'MyTagKey',            # OPTIONAL
          Value => 'MyTagValue',          # OPTIONAL
        },
        ...
      ],                                  # OPTIONAL
      UserData => 'Mystring',             # OPTIONAL
      );

    # Results:
    my $Operations = $CreateInstancesFromSnapshotResult->Operations;

    # Returns a L<Paws::Lightsail::CreateInstancesFromSnapshotResult> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/lightsail/CreateInstancesFromSnapshot

ATTRIBUTES

AttachedDiskMapping => Paws::Lightsail::AttachedDiskMap

An object containing information about one or more disk mappings.

REQUIRED AvailabilityZone => Str

The Availability Zone where you want to create your instances. Use the following formatting: us-east-2a (case sensitive). You can get a list of Availability Zones by using the get regions (http://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetRegions.html) operation. Be sure to add the include Availability Zones parameter to your request.

REQUIRED BundleId => Str

The bundle of specification information for your virtual private server (or instance), including the pricing plan (e.g., micro_1_0).

REQUIRED InstanceNames => ArrayRef[Str|Undef]

The names for your new instances.

REQUIRED InstanceSnapshotName => Str

The name of the instance snapshot on which you are basing your new instances. Use the get instance snapshots operation to return information about your existing snapshots.

KeyPairName => Str

The name for your key pair.

Tags => ArrayRef[Paws::Lightsail::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.

UserData => Str

You can create a launch script that configures a server with additional user data. For example, apt-get -y update.

Depending on the machine image you choose, the command to get software on your instance varies. Amazon Linux and CentOS use yum, Debian and Ubuntu use apt-get, and FreeBSD uses pkg. For a complete list, see the Dev Guide (https://lightsail.aws.amazon.com/ls/docs/getting-started/article/compare-options-choose-lightsail-instance-image).

SEE ALSO

This class forms part of Paws, documenting arguments for method CreateInstancesFromSnapshot in Paws::Lightsail

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues