/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace EC2 { namespace Model { /** */ class CreateStoreImageTaskRequest : public EC2Request { public: AWS_EC2_API CreateStoreImageTaskRequest(); // 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 "CreateStoreImageTask"; } 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 AMI.

*/ inline const Aws::String& GetImageId() const{ return m_imageId; } /** *

The ID of the AMI.

*/ inline bool ImageIdHasBeenSet() const { return m_imageIdHasBeenSet; } /** *

The ID of the AMI.

*/ inline void SetImageId(const Aws::String& value) { m_imageIdHasBeenSet = true; m_imageId = value; } /** *

The ID of the AMI.

*/ inline void SetImageId(Aws::String&& value) { m_imageIdHasBeenSet = true; m_imageId = std::move(value); } /** *

The ID of the AMI.

*/ inline void SetImageId(const char* value) { m_imageIdHasBeenSet = true; m_imageId.assign(value); } /** *

The ID of the AMI.

*/ inline CreateStoreImageTaskRequest& WithImageId(const Aws::String& value) { SetImageId(value); return *this;} /** *

The ID of the AMI.

*/ inline CreateStoreImageTaskRequest& WithImageId(Aws::String&& value) { SetImageId(std::move(value)); return *this;} /** *

The ID of the AMI.

*/ inline CreateStoreImageTaskRequest& WithImageId(const char* value) { SetImageId(value); return *this;} /** *

The name of the Amazon S3 bucket in which the AMI object will be stored. The * bucket must be in the Region in which the request is being made. The AMI object * appears in the bucket only after the upload task has completed.

*/ inline const Aws::String& GetBucket() const{ return m_bucket; } /** *

The name of the Amazon S3 bucket in which the AMI object will be stored. The * bucket must be in the Region in which the request is being made. The AMI object * appears in the bucket only after the upload task has completed.

*/ inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; } /** *

The name of the Amazon S3 bucket in which the AMI object will be stored. The * bucket must be in the Region in which the request is being made. The AMI object * appears in the bucket only after the upload task has completed.

*/ inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; } /** *

The name of the Amazon S3 bucket in which the AMI object will be stored. The * bucket must be in the Region in which the request is being made. The AMI object * appears in the bucket only after the upload task has completed.

*/ inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); } /** *

The name of the Amazon S3 bucket in which the AMI object will be stored. The * bucket must be in the Region in which the request is being made. The AMI object * appears in the bucket only after the upload task has completed.

*/ inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); } /** *

The name of the Amazon S3 bucket in which the AMI object will be stored. The * bucket must be in the Region in which the request is being made. The AMI object * appears in the bucket only after the upload task has completed.

*/ inline CreateStoreImageTaskRequest& WithBucket(const Aws::String& value) { SetBucket(value); return *this;} /** *

The name of the Amazon S3 bucket in which the AMI object will be stored. The * bucket must be in the Region in which the request is being made. The AMI object * appears in the bucket only after the upload task has completed.

*/ inline CreateStoreImageTaskRequest& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;} /** *

The name of the Amazon S3 bucket in which the AMI object will be stored. The * bucket must be in the Region in which the request is being made. The AMI object * appears in the bucket only after the upload task has completed.

*/ inline CreateStoreImageTaskRequest& WithBucket(const char* value) { SetBucket(value); return *this;} /** *

The tags to apply to the AMI object that will be stored in the Amazon S3 * bucket.

*/ inline const Aws::Vector& GetS3ObjectTags() const{ return m_s3ObjectTags; } /** *

The tags to apply to the AMI object that will be stored in the Amazon S3 * bucket.

*/ inline bool S3ObjectTagsHasBeenSet() const { return m_s3ObjectTagsHasBeenSet; } /** *

The tags to apply to the AMI object that will be stored in the Amazon S3 * bucket.

*/ inline void SetS3ObjectTags(const Aws::Vector& value) { m_s3ObjectTagsHasBeenSet = true; m_s3ObjectTags = value; } /** *

The tags to apply to the AMI object that will be stored in the Amazon S3 * bucket.

*/ inline void SetS3ObjectTags(Aws::Vector&& value) { m_s3ObjectTagsHasBeenSet = true; m_s3ObjectTags = std::move(value); } /** *

The tags to apply to the AMI object that will be stored in the Amazon S3 * bucket.

*/ inline CreateStoreImageTaskRequest& WithS3ObjectTags(const Aws::Vector& value) { SetS3ObjectTags(value); return *this;} /** *

The tags to apply to the AMI object that will be stored in the Amazon S3 * bucket.

*/ inline CreateStoreImageTaskRequest& WithS3ObjectTags(Aws::Vector&& value) { SetS3ObjectTags(std::move(value)); return *this;} /** *

The tags to apply to the AMI object that will be stored in the Amazon S3 * bucket.

*/ inline CreateStoreImageTaskRequest& AddS3ObjectTags(const S3ObjectTag& value) { m_s3ObjectTagsHasBeenSet = true; m_s3ObjectTags.push_back(value); return *this; } /** *

The tags to apply to the AMI object that will be stored in the Amazon S3 * bucket.

*/ inline CreateStoreImageTaskRequest& AddS3ObjectTags(S3ObjectTag&& value) { m_s3ObjectTagsHasBeenSet = true; m_s3ObjectTags.push_back(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 CreateStoreImageTaskRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} private: Aws::String m_imageId; bool m_imageIdHasBeenSet = false; Aws::String m_bucket; bool m_bucketHasBeenSet = false; Aws::Vector m_s3ObjectTags; bool m_s3ObjectTagsHasBeenSet = false; bool m_dryRun; bool m_dryRunHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws