/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { namespace EC2 { namespace Model { /** */ class CreateLaunchTemplateRequest : public EC2Request { public: AWS_EC2_API CreateLaunchTemplateRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateLaunchTemplate"; } AWS_EC2_API Aws::String SerializePayload() const override; protected: AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

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.

*/ inline bool GetDryRun() const{ return m_dryRun; } /** *

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.

*/ inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } /** *

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.

*/ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** *

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.

*/ inline CreateLaunchTemplateRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. For more information, see Ensuring * idempotency.

Constraint: Maximum 128 ASCII characters.

*/ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. For more information, see Ensuring * idempotency.

Constraint: Maximum 128 ASCII characters.

*/ inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; } /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. For more information, see Ensuring * idempotency.

Constraint: Maximum 128 ASCII characters.

*/ inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; } /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. For more information, see Ensuring * idempotency.

Constraint: Maximum 128 ASCII characters.

*/ inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); } /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. For more information, see Ensuring * idempotency.

Constraint: Maximum 128 ASCII characters.

*/ inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); } /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. For more information, see Ensuring * idempotency.

Constraint: Maximum 128 ASCII characters.

*/ inline CreateLaunchTemplateRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. For more information, see Ensuring * idempotency.

Constraint: Maximum 128 ASCII characters.

*/ inline CreateLaunchTemplateRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. For more information, see Ensuring * idempotency.

Constraint: Maximum 128 ASCII characters.

*/ inline CreateLaunchTemplateRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} /** *

A name for the launch template.

*/ inline const Aws::String& GetLaunchTemplateName() const{ return m_launchTemplateName; } /** *

A name for the launch template.

*/ inline bool LaunchTemplateNameHasBeenSet() const { return m_launchTemplateNameHasBeenSet; } /** *

A name for the launch template.

*/ inline void SetLaunchTemplateName(const Aws::String& value) { m_launchTemplateNameHasBeenSet = true; m_launchTemplateName = value; } /** *

A name for the launch template.

*/ inline void SetLaunchTemplateName(Aws::String&& value) { m_launchTemplateNameHasBeenSet = true; m_launchTemplateName = std::move(value); } /** *

A name for the launch template.

*/ inline void SetLaunchTemplateName(const char* value) { m_launchTemplateNameHasBeenSet = true; m_launchTemplateName.assign(value); } /** *

A name for the launch template.

*/ inline CreateLaunchTemplateRequest& WithLaunchTemplateName(const Aws::String& value) { SetLaunchTemplateName(value); return *this;} /** *

A name for the launch template.

*/ inline CreateLaunchTemplateRequest& WithLaunchTemplateName(Aws::String&& value) { SetLaunchTemplateName(std::move(value)); return *this;} /** *

A name for the launch template.

*/ inline CreateLaunchTemplateRequest& WithLaunchTemplateName(const char* value) { SetLaunchTemplateName(value); return *this;} /** *

A description for the first version of the launch template.

*/ inline const Aws::String& GetVersionDescription() const{ return m_versionDescription; } /** *

A description for the first version of the launch template.

*/ inline bool VersionDescriptionHasBeenSet() const { return m_versionDescriptionHasBeenSet; } /** *

A description for the first version of the launch template.

*/ inline void SetVersionDescription(const Aws::String& value) { m_versionDescriptionHasBeenSet = true; m_versionDescription = value; } /** *

A description for the first version of the launch template.

*/ inline void SetVersionDescription(Aws::String&& value) { m_versionDescriptionHasBeenSet = true; m_versionDescription = std::move(value); } /** *

A description for the first version of the launch template.

*/ inline void SetVersionDescription(const char* value) { m_versionDescriptionHasBeenSet = true; m_versionDescription.assign(value); } /** *

A description for the first version of the launch template.

*/ inline CreateLaunchTemplateRequest& WithVersionDescription(const Aws::String& value) { SetVersionDescription(value); return *this;} /** *

A description for the first version of the launch template.

*/ inline CreateLaunchTemplateRequest& WithVersionDescription(Aws::String&& value) { SetVersionDescription(std::move(value)); return *this;} /** *

A description for the first version of the launch template.

*/ inline CreateLaunchTemplateRequest& WithVersionDescription(const char* value) { SetVersionDescription(value); return *this;} /** *

The information for the launch template.

*/ inline const RequestLaunchTemplateData& GetLaunchTemplateData() const{ return m_launchTemplateData; } /** *

The information for the launch template.

*/ inline bool LaunchTemplateDataHasBeenSet() const { return m_launchTemplateDataHasBeenSet; } /** *

The information for the launch template.

*/ inline void SetLaunchTemplateData(const RequestLaunchTemplateData& value) { m_launchTemplateDataHasBeenSet = true; m_launchTemplateData = value; } /** *

The information for the launch template.

*/ inline void SetLaunchTemplateData(RequestLaunchTemplateData&& value) { m_launchTemplateDataHasBeenSet = true; m_launchTemplateData = std::move(value); } /** *

The information for the launch template.

*/ inline CreateLaunchTemplateRequest& WithLaunchTemplateData(const RequestLaunchTemplateData& value) { SetLaunchTemplateData(value); return *this;} /** *

The information for the launch template.

*/ inline CreateLaunchTemplateRequest& WithLaunchTemplateData(RequestLaunchTemplateData&& value) { SetLaunchTemplateData(std::move(value)); return *this;} /** *

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.

*/ inline const Aws::Vector& GetTagSpecifications() const{ return m_tagSpecifications; } /** *

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.

*/ inline bool TagSpecificationsHasBeenSet() const { return m_tagSpecificationsHasBeenSet; } /** *

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.

*/ inline void SetTagSpecifications(const Aws::Vector& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications = value; } /** *

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.

*/ inline void SetTagSpecifications(Aws::Vector&& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications = std::move(value); } /** *

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.

*/ inline CreateLaunchTemplateRequest& WithTagSpecifications(const Aws::Vector& value) { SetTagSpecifications(value); return *this;} /** *

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.

*/ inline CreateLaunchTemplateRequest& WithTagSpecifications(Aws::Vector&& value) { SetTagSpecifications(std::move(value)); return *this;} /** *

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.

*/ inline CreateLaunchTemplateRequest& AddTagSpecifications(const TagSpecification& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications.push_back(value); return *this; } /** *

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.

*/ inline CreateLaunchTemplateRequest& AddTagSpecifications(TagSpecification&& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications.push_back(std::move(value)); return *this; } private: bool m_dryRun; bool m_dryRunHasBeenSet = false; Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; Aws::String m_launchTemplateName; bool m_launchTemplateNameHasBeenSet = false; Aws::String m_versionDescription; bool m_versionDescriptionHasBeenSet = false; RequestLaunchTemplateData m_launchTemplateData; bool m_launchTemplateDataHasBeenSet = false; Aws::Vector m_tagSpecifications; bool m_tagSpecificationsHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws