![]() |
![]()
| ![]() |
![]()
NAMEPaws::Lightsail::CreateInstancesFromSnapshot - Arguments for method CreateInstancesFromSnapshot on Paws::Lightsail DESCRIPTIONThis 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. SYNOPSISmy $lightsail = Paws->service('Lightsail'); my $CreateInstancesFromSnapshotResult = $lightsail->CreateInstancesFromSnapshot( AvailabilityZone => 'Mystring', BundleId => 'MyNonEmptyString', InstanceNames => [ 'Mystring', ... ], AddOns => [ { AddOnType => 'AutoSnapshot', # values: AutoSnapshot AutoSnapshotAddOnRequest => { SnapshotTimeOfDay => 'MyTimeOfDay', # OPTIONAL }, # OPTIONAL }, ... ], # OPTIONAL AttachedDiskMapping => { 'MyResourceName' => [ { NewDiskName => 'MyResourceName', OriginalDiskPath => 'MyNonEmptyString', }, ... ], }, # OPTIONAL InstanceSnapshotName => 'MyResourceName', # OPTIONAL IpAddressType => 'dualstack', # OPTIONAL KeyPairName => 'MyResourceName', # OPTIONAL RestoreDate => 'Mystring', # OPTIONAL SourceInstanceName => 'Mystring', # OPTIONAL Tags => [ { Key => 'MyTagKey', # OPTIONAL Value => 'MyTagValue', # OPTIONAL }, ... ], # OPTIONAL UseLatestRestorableAutoSnapshot => 1, # 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> ATTRIBUTESAddOns => ArrayRef[Paws::Lightsail::AddOnRequest]An array of objects representing the add-ons to enable for the new instance. AttachedDiskMapping => Paws::Lightsail::AttachedDiskMapAn object containing information about one or more disk mappings. REQUIRED AvailabilityZone => StrThe 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 => StrThe 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. InstanceSnapshotName => StrThe 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. Constraint:
IpAddressType => StrThe IP address type for the instance. The possible values are "ipv4" for IPv4 only, and "dualstack" for IPv4 and IPv6. The default value is "dualstack". Valid values are: "dualstack", "ipv4" KeyPairName => StrThe name for your key pair. RestoreDate => StrThe date of the automatic snapshot to use for the new instance. Use the "get auto snapshots" operation to identify the dates of the available automatic snapshots. Constraints:
SourceInstanceName => StrThe name of the source instance from which the source automatic snapshot was created. Constraints:
Tags => ArrayRef[Paws::Lightsail::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. UseLatestRestorableAutoSnapshot => BoolA Boolean value to indicate whether to use the latest available automatic snapshot. Constraints:
UserData => StrYou 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 ALSOThis class forms part of Paws, documenting arguments for method CreateInstancesFromSnapshot in Paws::Lightsail BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|