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

The name of the launch template.

You must specify either 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 either the * LaunchTemplateName or the LaunchTemplateId, but not * both.

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

The name of the launch template.

You must specify either 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 either 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 either 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 either the * LaunchTemplateName or the LaunchTemplateId, but not * both.

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

The name of the launch template.

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

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

The name of the launch template.

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

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

The version number of the launch template to set as the default version.

*/ inline const Aws::String& GetDefaultVersion() const{ return m_defaultVersion; } /** *

The version number of the launch template to set as the default version.

*/ inline bool DefaultVersionHasBeenSet() const { return m_defaultVersionHasBeenSet; } /** *

The version number of the launch template to set as the default version.

*/ inline void SetDefaultVersion(const Aws::String& value) { m_defaultVersionHasBeenSet = true; m_defaultVersion = value; } /** *

The version number of the launch template to set as the default version.

*/ inline void SetDefaultVersion(Aws::String&& value) { m_defaultVersionHasBeenSet = true; m_defaultVersion = std::move(value); } /** *

The version number of the launch template to set as the default version.

*/ inline void SetDefaultVersion(const char* value) { m_defaultVersionHasBeenSet = true; m_defaultVersion.assign(value); } /** *

The version number of the launch template to set as the default version.

*/ inline ModifyLaunchTemplateRequest& WithDefaultVersion(const Aws::String& value) { SetDefaultVersion(value); return *this;} /** *

The version number of the launch template to set as the default version.

*/ inline ModifyLaunchTemplateRequest& WithDefaultVersion(Aws::String&& value) { SetDefaultVersion(std::move(value)); return *this;} /** *

The version number of the launch template to set as the default version.

*/ inline ModifyLaunchTemplateRequest& WithDefaultVersion(const char* value) { SetDefaultVersion(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_defaultVersion; bool m_defaultVersionHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws