/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the destination for an export image task.See Also:
* AWS
* API Reference
The destination Amazon S3 bucket.
*/ inline const Aws::String& GetS3Bucket() const{ return m_s3Bucket; } /** *The destination Amazon S3 bucket.
*/ inline bool S3BucketHasBeenSet() const { return m_s3BucketHasBeenSet; } /** *The destination Amazon S3 bucket.
*/ inline void SetS3Bucket(const Aws::String& value) { m_s3BucketHasBeenSet = true; m_s3Bucket = value; } /** *The destination Amazon S3 bucket.
*/ inline void SetS3Bucket(Aws::String&& value) { m_s3BucketHasBeenSet = true; m_s3Bucket = std::move(value); } /** *The destination Amazon S3 bucket.
*/ inline void SetS3Bucket(const char* value) { m_s3BucketHasBeenSet = true; m_s3Bucket.assign(value); } /** *The destination Amazon S3 bucket.
*/ inline ExportTaskS3LocationRequest& WithS3Bucket(const Aws::String& value) { SetS3Bucket(value); return *this;} /** *The destination Amazon S3 bucket.
*/ inline ExportTaskS3LocationRequest& WithS3Bucket(Aws::String&& value) { SetS3Bucket(std::move(value)); return *this;} /** *The destination Amazon S3 bucket.
*/ inline ExportTaskS3LocationRequest& WithS3Bucket(const char* value) { SetS3Bucket(value); return *this;} /** *The prefix (logical hierarchy) in the bucket.
*/ inline const Aws::String& GetS3Prefix() const{ return m_s3Prefix; } /** *The prefix (logical hierarchy) in the bucket.
*/ inline bool S3PrefixHasBeenSet() const { return m_s3PrefixHasBeenSet; } /** *The prefix (logical hierarchy) in the bucket.
*/ inline void SetS3Prefix(const Aws::String& value) { m_s3PrefixHasBeenSet = true; m_s3Prefix = value; } /** *The prefix (logical hierarchy) in the bucket.
*/ inline void SetS3Prefix(Aws::String&& value) { m_s3PrefixHasBeenSet = true; m_s3Prefix = std::move(value); } /** *The prefix (logical hierarchy) in the bucket.
*/ inline void SetS3Prefix(const char* value) { m_s3PrefixHasBeenSet = true; m_s3Prefix.assign(value); } /** *The prefix (logical hierarchy) in the bucket.
*/ inline ExportTaskS3LocationRequest& WithS3Prefix(const Aws::String& value) { SetS3Prefix(value); return *this;} /** *The prefix (logical hierarchy) in the bucket.
*/ inline ExportTaskS3LocationRequest& WithS3Prefix(Aws::String&& value) { SetS3Prefix(std::move(value)); return *this;} /** *The prefix (logical hierarchy) in the bucket.
*/ inline ExportTaskS3LocationRequest& WithS3Prefix(const char* value) { SetS3Prefix(value); return *this;} private: Aws::String m_s3Bucket; bool m_s3BucketHasBeenSet = false; Aws::String m_s3Prefix; bool m_s3PrefixHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws