/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the parameters for BundleInstance.See Also:
AWS
* API Reference
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
.
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
.
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
.
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
.