CreateInstancesRequest
public struct CreateInstancesRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
An array of objects representing the add-ons to enable for the new instance.
Declaration
Swift
public let addOns: [AddOnRequest]?
-
The 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 operation. Be sure to add the include Availability Zones parameter to your request.
Declaration
Swift
public let availabilityZone: String
-
The 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.
Declaration
Swift
public let blueprintId: String
-
The bundle of specification information for your virtual private server (or instance), including the pricing plan (e.g., micro_1_0).
Declaration
Swift
public let bundleId: String
-
The names to use for your new Lightsail instances. Separate multiple values using quotation marks and commas, for example: [“MyFirstInstance”,“MySecondInstance”]
Declaration
Swift
public let instanceNames: [String]
-
The name of your key pair.
Declaration
Swift
public let keyPairName: String?
-
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.
Declaration
Swift
public let tags: [Tag]?
-
A 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.
Declaration
Swift
public let userData: String?
-
Undocumented
Declaration
Swift
public init(addOns: [AddOnRequest]? = nil, availabilityZone: String, blueprintId: String, bundleId: String, instanceNames: [String], keyPairName: String? = nil, tags: [Tag]? = nil, userData: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws