/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace EC2 { namespace Model { /** */ class CreateLaunchTemplateVersionRequest : public EC2Request { public: AWS_EC2_API CreateLaunchTemplateVersionRequest(); // 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 "CreateLaunchTemplateVersion"; } 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 CreateLaunchTemplateVersionRequest& 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 CreateLaunchTemplateVersionRequest& 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 CreateLaunchTemplateVersionRequest& 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 CreateLaunchTemplateVersionRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} /** *

The ID of the launch template.

You must specify either the * LaunchTemplateId or the LaunchTemplateName, but not * both.

*/ inline const Aws::String& GetLaunchTemplateId() const{ return m_launchTemplateId; } /** *

The ID of the launch template.

You must specify either the * LaunchTemplateId or the LaunchTemplateName, but not * both.

*/ inline bool LaunchTemplateIdHasBeenSet() const { return m_launchTemplateIdHasBeenSet; } /** *

The ID of the launch template.

You must specify either the * LaunchTemplateId or the LaunchTemplateName, but not * both.

*/ inline void SetLaunchTemplateId(const Aws::String& value) { m_launchTemplateIdHasBeenSet = true; m_launchTemplateId = value; } /** *

The ID of the launch template.

You must specify either the * LaunchTemplateId or the LaunchTemplateName, but not * both.

*/ inline void SetLaunchTemplateId(Aws::String&& value) { m_launchTemplateIdHasBeenSet = true; m_launchTemplateId = std::move(value); } /** *

The ID of the launch template.

You must specify either the * LaunchTemplateId or the LaunchTemplateName, but not * both.

*/ inline void SetLaunchTemplateId(const char* value) { m_launchTemplateIdHasBeenSet = true; m_launchTemplateId.assign(value); } /** *

The ID of the launch template.

You must specify either the * LaunchTemplateId or the LaunchTemplateName, but not * both.

*/ inline CreateLaunchTemplateVersionRequest& WithLaunchTemplateId(const Aws::String& value) { SetLaunchTemplateId(value); return *this;} /** *

The ID of the launch template.

You must specify either the * LaunchTemplateId or the LaunchTemplateName, but not * both.

*/ inline CreateLaunchTemplateVersionRequest& WithLaunchTemplateId(Aws::String&& value) { SetLaunchTemplateId(std::move(value)); return *this;} /** *

The ID of the launch template.

You must specify either the * LaunchTemplateId or the LaunchTemplateName, but not * both.

*/ inline CreateLaunchTemplateVersionRequest& WithLaunchTemplateId(const char* value) { SetLaunchTemplateId(value); return *this;} /** *

The name of the launch template.

You must specify the * LaunchTemplateName or the LaunchTemplateId, but not * both.

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

The name of the launch template.

You must specify the * LaunchTemplateName or the LaunchTemplateId, but not * both.

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

The name of the launch template.

You must specify the * LaunchTemplateName or the LaunchTemplateId, but not * both.

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

The name of the launch template.

You must specify the * LaunchTemplateName or the LaunchTemplateId, but not * both.

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

The name of the launch template.

You must specify the * LaunchTemplateName or the LaunchTemplateId, but not * both.

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

The name of the launch template.

You must specify the * LaunchTemplateName or the LaunchTemplateId, but not * both.

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

The name of the launch template.

You must specify the * LaunchTemplateName or the LaunchTemplateId, but not * both.

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

The name of the launch template.

You must specify the * LaunchTemplateName or the LaunchTemplateId, but not * both.

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

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.

*/ inline const Aws::String& GetSourceVersion() const{ return m_sourceVersion; } /** *

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.

*/ inline bool SourceVersionHasBeenSet() const { return m_sourceVersionHasBeenSet; } /** *

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.

*/ inline void SetSourceVersion(const Aws::String& value) { m_sourceVersionHasBeenSet = true; m_sourceVersion = value; } /** *

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.

*/ inline void SetSourceVersion(Aws::String&& value) { m_sourceVersionHasBeenSet = true; m_sourceVersion = std::move(value); } /** *

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.

*/ inline void SetSourceVersion(const char* value) { m_sourceVersionHasBeenSet = true; m_sourceVersion.assign(value); } /** *

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.

*/ inline CreateLaunchTemplateVersionRequest& WithSourceVersion(const Aws::String& value) { SetSourceVersion(value); return *this;} /** *

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.

*/ inline CreateLaunchTemplateVersionRequest& WithSourceVersion(Aws::String&& value) { SetSourceVersion(std::move(value)); return *this;} /** *

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.

*/ inline CreateLaunchTemplateVersionRequest& WithSourceVersion(const char* value) { SetSourceVersion(value); return *this;} /** *

A description for the version of the launch template.

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

A description for the version of the launch template.

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

A description for the version of the launch template.

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

A description for the version of the launch template.

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

A description for the version of the launch template.

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

A description for the version of the launch template.

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

A description for the version of the launch template.

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

A description for the version of the launch template.

*/ inline CreateLaunchTemplateVersionRequest& 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 CreateLaunchTemplateVersionRequest& WithLaunchTemplateData(const RequestLaunchTemplateData& value) { SetLaunchTemplateData(value); return *this;} /** *

The information for the launch template.

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

If true, and if a Systems Manager parameter is specified for * ImageId, the AMI ID is displayed in the response for * imageID. For more information, see Use * a Systems Manager parameter instead of an AMI ID in the Amazon Elastic * Compute Cloud User Guide.

Default: false

*/ inline bool GetResolveAlias() const{ return m_resolveAlias; } /** *

If true, and if a Systems Manager parameter is specified for * ImageId, the AMI ID is displayed in the response for * imageID. For more information, see Use * a Systems Manager parameter instead of an AMI ID in the Amazon Elastic * Compute Cloud User Guide.

Default: false

*/ inline bool ResolveAliasHasBeenSet() const { return m_resolveAliasHasBeenSet; } /** *

If true, and if a Systems Manager parameter is specified for * ImageId, the AMI ID is displayed in the response for * imageID. For more information, see Use * a Systems Manager parameter instead of an AMI ID in the Amazon Elastic * Compute Cloud User Guide.

Default: false

*/ inline void SetResolveAlias(bool value) { m_resolveAliasHasBeenSet = true; m_resolveAlias = value; } /** *

If true, and if a Systems Manager parameter is specified for * ImageId, the AMI ID is displayed in the response for * imageID. For more information, see Use * a Systems Manager parameter instead of an AMI ID in the Amazon Elastic * Compute Cloud User Guide.

Default: false

*/ inline CreateLaunchTemplateVersionRequest& WithResolveAlias(bool value) { SetResolveAlias(value); return *this;} private: bool m_dryRun; bool m_dryRunHasBeenSet = false; Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; Aws::String m_launchTemplateId; bool m_launchTemplateIdHasBeenSet = false; Aws::String m_launchTemplateName; bool m_launchTemplateNameHasBeenSet = false; Aws::String m_sourceVersion; bool m_sourceVersionHasBeenSet = false; Aws::String m_versionDescription; bool m_versionDescriptionHasBeenSet = false; RequestLaunchTemplateData m_launchTemplateData; bool m_launchTemplateDataHasBeenSet = false; bool m_resolveAlias; bool m_resolveAliasHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws