![]() |
![]()
| ![]() |
![]()
NAMEPaws::Lightsail::CreateInstances - Arguments for method CreateInstances on Paws::Lightsail DESCRIPTIONThis class represents the parameters used for calling the method CreateInstances on the Amazon Lightsail service. Use the attributes of this class as arguments to method CreateInstances. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateInstances. SYNOPSISmy $lightsail = Paws->service('Lightsail'); my $CreateInstancesResult = $lightsail->CreateInstances( AvailabilityZone => 'Mystring', BlueprintId => 'MyNonEmptyString', BundleId => 'MyNonEmptyString', InstanceNames => [ 'Mystring', ... ], AddOns => [ { AddOnType => 'AutoSnapshot', # values: AutoSnapshot AutoSnapshotAddOnRequest => { SnapshotTimeOfDay => 'MyTimeOfDay', # OPTIONAL }, # OPTIONAL }, ... ], # OPTIONAL CustomImageName => 'MyResourceName', # OPTIONAL IpAddressType => 'dualstack', # OPTIONAL KeyPairName => 'MyResourceName', # OPTIONAL Tags => [ { Key => 'MyTagKey', # OPTIONAL Value => 'MyTagValue', # OPTIONAL }, ... ], # OPTIONAL UserData => 'Mystring', # OPTIONAL ); # Results: my $Operations = $CreateInstancesResult->Operations; # Returns a L<Paws::Lightsail::CreateInstancesResult> 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/CreateInstances> ATTRIBUTESAddOns => ArrayRef[Paws::Lightsail::AddOnRequest]An array of objects representing the add-ons to enable for the new instance. REQUIRED AvailabilityZone => StrThe Availability Zone in which to create your instance. Use the following format: "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 BlueprintId => StrThe ID for a virtual private server image (e.g., "app_wordpress_4_4" or "app_lamp_7_0"). Use the "get blueprints" operation to return a list of available images (or blueprints). Use active blueprints when creating new instances. Inactive blueprints are listed to support customers with existing instances and are not necessarily available to create new instances. Blueprints are marked inactive when they become outdated due to operating system updates or new application releases. REQUIRED BundleId => StrThe bundle of specification information for your virtual private server (or instance), including the pricing plan (e.g., "micro_1_0"). CustomImageName => Str(Deprecated) The name for your custom image. In releases prior to June 12, 2017, this parameter was ignored by the API. It is now deprecated. REQUIRED InstanceNames => ArrayRef[Str|Undef]The names to use for your new Lightsail instances. Separate multiple values using quotation marks and commas, for example: "["MyFirstInstance","MySecondInstance"]" 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 of your key pair. 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. UserData => StrA launch script you can create that configures a server with additional user data. For example, you might want to run "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 CreateInstances 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>
|