AWSEC2CreateLaunchTemplateRequest

Objective-C

@interface AWSEC2CreateLaunchTemplateRequest

Swift

class AWSEC2CreateLaunchTemplateRequest
  • 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

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable clientToken;

    Swift

    var clientToken: String? { get set }
  • 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

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable dryRun;

    Swift

    var dryRun: NSNumber? { get set }
  • The information for the launch template.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSEC2RequestLaunchTemplateData *_Nullable launchTemplateData;

    Swift

    var launchTemplateData: AWSEC2RequestLaunchTemplateData? { get set }
  • A name for the launch template.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable launchTemplateName;

    Swift

    var launchTemplateName: String? { get set }
  • The tags to apply to the launch template on creation. To tag the launch template, the resource type must be launch-template.

    To specify the tags for the resources that are created when an instance is launched, you must use the TagSpecifications parameter in the launch template data structure.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSEC2TagSpecification *> *_Nullable tagSpecifications;

    Swift

    var tagSpecifications: [AWSEC2TagSpecification]? { get set }
  • A description for the first version of the launch template.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable versionDescription;

    Swift

    var versionDescription: String? { get set }