CreateLaunchTemplateRequest
public struct CreateLaunchTemplateRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency. Constraint: Maximum 128 ASCII characters.
Declaration
Swift
public let clientToken: String?
-
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
Declaration
Swift
public let dryRun: Bool?
-
The information for the launch template.
Declaration
Swift
public let launchTemplateData: RequestLaunchTemplateData
-
A name for the launch template.
Declaration
Swift
public let launchTemplateName: String
-
The tags to apply to the launch template during creation.
Declaration
Swift
public let tagSpecifications: [TagSpecification]?
-
A description for the first version of the launch template.
Declaration
Swift
public let versionDescription: String?
-
init(clientToken:dryRun:launchTemplateData:launchTemplateName:tagSpecifications:versionDescription:)
Undocumented
Declaration
Swift
public init(clientToken: String? = nil, dryRun: Bool? = nil, launchTemplateData: RequestLaunchTemplateData, launchTemplateName: String, tagSpecifications: [TagSpecification]? = nil, versionDescription: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws