/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents an Amazon S3 location (bucket name, bucket owner, and object key)
* where DataBrew can read input data, or write output from a job.See
* Also:
AWS
* API Reference
The Amazon S3 bucket name.
*/ inline const Aws::String& GetBucket() const{ return m_bucket; } /** *The Amazon S3 bucket name.
*/ inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; } /** *The Amazon S3 bucket name.
*/ inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; } /** *The Amazon S3 bucket name.
*/ inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); } /** *The Amazon S3 bucket name.
*/ inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); } /** *The Amazon S3 bucket name.
*/ inline S3Location& WithBucket(const Aws::String& value) { SetBucket(value); return *this;} /** *The Amazon S3 bucket name.
*/ inline S3Location& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;} /** *The Amazon S3 bucket name.
*/ inline S3Location& WithBucket(const char* value) { SetBucket(value); return *this;} /** *The unique name of the object in the bucket.
*/ inline const Aws::String& GetKey() const{ return m_key; } /** *The unique name of the object in the bucket.
*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *The unique name of the object in the bucket.
*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *The unique name of the object in the bucket.
*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *The unique name of the object in the bucket.
*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *The unique name of the object in the bucket.
*/ inline S3Location& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *The unique name of the object in the bucket.
*/ inline S3Location& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *The unique name of the object in the bucket.
*/ inline S3Location& WithKey(const char* value) { SetKey(value); return *this;} /** *The Amazon Web Services account ID of the bucket owner.
*/ inline const Aws::String& GetBucketOwner() const{ return m_bucketOwner; } /** *The Amazon Web Services account ID of the bucket owner.
*/ inline bool BucketOwnerHasBeenSet() const { return m_bucketOwnerHasBeenSet; } /** *The Amazon Web Services account ID of the bucket owner.
*/ inline void SetBucketOwner(const Aws::String& value) { m_bucketOwnerHasBeenSet = true; m_bucketOwner = value; } /** *The Amazon Web Services account ID of the bucket owner.
*/ inline void SetBucketOwner(Aws::String&& value) { m_bucketOwnerHasBeenSet = true; m_bucketOwner = std::move(value); } /** *The Amazon Web Services account ID of the bucket owner.
*/ inline void SetBucketOwner(const char* value) { m_bucketOwnerHasBeenSet = true; m_bucketOwner.assign(value); } /** *The Amazon Web Services account ID of the bucket owner.
*/ inline S3Location& WithBucketOwner(const Aws::String& value) { SetBucketOwner(value); return *this;} /** *The Amazon Web Services account ID of the bucket owner.
*/ inline S3Location& WithBucketOwner(Aws::String&& value) { SetBucketOwner(std::move(value)); return *this;} /** *The Amazon Web Services account ID of the bucket owner.
*/ inline S3Location& WithBucketOwner(const char* value) { SetBucketOwner(value); return *this;} private: Aws::String m_bucket; bool m_bucketHasBeenSet = false; Aws::String m_key; bool m_keyHasBeenSet = false; Aws::String m_bucketOwner; bool m_bucketOwnerHasBeenSet = false; }; } // namespace Model } // namespace GlueDataBrew } // namespace Aws