/** * 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 Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Describes the destination for an export image task.

See Also:

* AWS * API Reference

*/ class ExportTaskS3Location { public: AWS_EC2_API ExportTaskS3Location(); AWS_EC2_API ExportTaskS3Location(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API ExportTaskS3Location& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

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 ExportTaskS3Location& WithS3Bucket(const Aws::String& value) { SetS3Bucket(value); return *this;} /** *

The destination Amazon S3 bucket.

*/ inline ExportTaskS3Location& WithS3Bucket(Aws::String&& value) { SetS3Bucket(std::move(value)); return *this;} /** *

The destination Amazon S3 bucket.

*/ inline ExportTaskS3Location& 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 ExportTaskS3Location& WithS3Prefix(const Aws::String& value) { SetS3Prefix(value); return *this;} /** *

The prefix (logical hierarchy) in the bucket.

*/ inline ExportTaskS3Location& WithS3Prefix(Aws::String&& value) { SetS3Prefix(std::move(value)); return *this;} /** *

The prefix (logical hierarchy) in the bucket.

*/ inline ExportTaskS3Location& 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