/** * 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 { /** *

Contains the parameters for BundleInstance.

See Also:

AWS * API Reference

*/ class BundleInstanceRequest : public EC2Request { public: AWS_EC2_API BundleInstanceRequest(); // 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 "BundleInstance"; } AWS_EC2_API Aws::String SerializePayload() const override; protected: AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The ID of the instance to bundle.

Type: String

Default: * None

Required: Yes

*/ inline const Aws::String& GetInstanceId() const{ return m_instanceId; } /** *

The ID of the instance to bundle.

Type: String

Default: * None

Required: Yes

*/ inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; } /** *

The ID of the instance to bundle.

Type: String

Default: * None

Required: Yes

*/ inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; } /** *

The ID of the instance to bundle.

Type: String

Default: * None

Required: Yes

*/ inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); } /** *

The ID of the instance to bundle.

Type: String

Default: * None

Required: Yes

*/ inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); } /** *

The ID of the instance to bundle.

Type: String

Default: * None

Required: Yes

*/ inline BundleInstanceRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;} /** *

The ID of the instance to bundle.

Type: String

Default: * None

Required: Yes

*/ inline BundleInstanceRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;} /** *

The ID of the instance to bundle.

Type: String

Default: * None

Required: Yes

*/ inline BundleInstanceRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;} /** *

The bucket in which to store the AMI. You can specify a bucket that you * already own or a new bucket that Amazon EC2 creates on your behalf. If you * specify a bucket that belongs to someone else, Amazon EC2 returns an error.

*/ inline const Storage& GetStorage() const{ return m_storage; } /** *

The bucket in which to store the AMI. You can specify a bucket that you * already own or a new bucket that Amazon EC2 creates on your behalf. If you * specify a bucket that belongs to someone else, Amazon EC2 returns an error.

*/ inline bool StorageHasBeenSet() const { return m_storageHasBeenSet; } /** *

The bucket in which to store the AMI. You can specify a bucket that you * already own or a new bucket that Amazon EC2 creates on your behalf. If you * specify a bucket that belongs to someone else, Amazon EC2 returns an error.

*/ inline void SetStorage(const Storage& value) { m_storageHasBeenSet = true; m_storage = value; } /** *

The bucket in which to store the AMI. You can specify a bucket that you * already own or a new bucket that Amazon EC2 creates on your behalf. If you * specify a bucket that belongs to someone else, Amazon EC2 returns an error.

*/ inline void SetStorage(Storage&& value) { m_storageHasBeenSet = true; m_storage = std::move(value); } /** *

The bucket in which to store the AMI. You can specify a bucket that you * already own or a new bucket that Amazon EC2 creates on your behalf. If you * specify a bucket that belongs to someone else, Amazon EC2 returns an error.

*/ inline BundleInstanceRequest& WithStorage(const Storage& value) { SetStorage(value); return *this;} /** *

The bucket in which to store the AMI. You can specify a bucket that you * already own or a new bucket that Amazon EC2 creates on your behalf. If you * specify a bucket that belongs to someone else, Amazon EC2 returns an error.

*/ inline BundleInstanceRequest& WithStorage(Storage&& value) { SetStorage(std::move(value)); return *this;} /** *

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 BundleInstanceRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} private: Aws::String m_instanceId; bool m_instanceIdHasBeenSet = false; Storage m_storage; bool m_storageHasBeenSet = false; bool m_dryRun; bool m_dryRunHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws