/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Amazon S3 manifest file location.See Also:
AWS
* API Reference
Amazon S3 bucket.
*/ inline const Aws::String& GetBucket() const{ return m_bucket; } /** *Amazon S3 bucket.
*/ inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; } /** *Amazon S3 bucket.
*/ inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; } /** *Amazon S3 bucket.
*/ inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); } /** *Amazon S3 bucket.
*/ inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); } /** *Amazon S3 bucket.
*/ inline ManifestFileLocation& WithBucket(const Aws::String& value) { SetBucket(value); return *this;} /** *Amazon S3 bucket.
*/ inline ManifestFileLocation& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;} /** *Amazon S3 bucket.
*/ inline ManifestFileLocation& WithBucket(const char* value) { SetBucket(value); return *this;} /** *Amazon S3 key that identifies an object.
*/ inline const Aws::String& GetKey() const{ return m_key; } /** *Amazon S3 key that identifies an object.
*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *Amazon S3 key that identifies an object.
*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *Amazon S3 key that identifies an object.
*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *Amazon S3 key that identifies an object.
*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *Amazon S3 key that identifies an object.
*/ inline ManifestFileLocation& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *Amazon S3 key that identifies an object.
*/ inline ManifestFileLocation& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *Amazon S3 key that identifies an object.
*/ inline ManifestFileLocation& WithKey(const char* value) { SetKey(value); return *this;} private: Aws::String m_bucket; bool m_bucketHasBeenSet = false; Aws::String m_key; bool m_keyHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws