/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents options that specify how and where DataBrew writes the Amazon S3
* output generated by recipe jobs.See Also:
AWS
* API Reference
Represents an Amazon S3 location (bucket name and object key) where DataBrew * can write output from a job.
*/ inline const S3Location& GetLocation() const{ return m_location; } /** *Represents an Amazon S3 location (bucket name and object key) where DataBrew * can write output from a job.
*/ inline bool LocationHasBeenSet() const { return m_locationHasBeenSet; } /** *Represents an Amazon S3 location (bucket name and object key) where DataBrew * can write output from a job.
*/ inline void SetLocation(const S3Location& value) { m_locationHasBeenSet = true; m_location = value; } /** *Represents an Amazon S3 location (bucket name and object key) where DataBrew * can write output from a job.
*/ inline void SetLocation(S3Location&& value) { m_locationHasBeenSet = true; m_location = std::move(value); } /** *Represents an Amazon S3 location (bucket name and object key) where DataBrew * can write output from a job.
*/ inline S3TableOutputOptions& WithLocation(const S3Location& value) { SetLocation(value); return *this;} /** *Represents an Amazon S3 location (bucket name and object key) where DataBrew * can write output from a job.
*/ inline S3TableOutputOptions& WithLocation(S3Location&& value) { SetLocation(std::move(value)); return *this;} private: S3Location m_location; bool m_locationHasBeenSet = false; }; } // namespace Model } // namespace GlueDataBrew } // namespace Aws