CreateLaunchTemplateVersionRequest

public struct CreateLaunchTemplateVersionRequest : 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
  • The ID of the launch template. You must specify either the launch template ID or launch template name in the request.

    Declaration

    Swift

    public let launchTemplateId: String?
  • The name of the launch template. You must specify either the launch template ID or launch template name in the request.

    Declaration

    Swift

    public let launchTemplateName: String?
  • The version number of the launch template version on which to base the new version. The new version inherits the same launch parameters as the source version, except for parameters that you specify in LaunchTemplateData. Snapshots applied to the block device mapping are ignored when creating a new version unless they are explicitly included.

    Declaration

    Swift

    public let sourceVersion: String?
  • A description for the version of the launch template.

    Declaration

    Swift

    public let versionDescription: String?
  • Undocumented

    Declaration

    Swift

    public init(clientToken: String? = nil, dryRun: Bool? = nil, launchTemplateData: RequestLaunchTemplateData, launchTemplateId: String? = nil, launchTemplateName: String? = nil, sourceVersion: String? = nil, versionDescription: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws