/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The response structure for an OutputConfig returned by an
* ExportEarthObservationJob.See Also:
AWS
* API Reference
Path to Amazon S3 storage location for the output configuration file.
*/ inline const ExportS3DataInput& GetS3Data() const{ return m_s3Data; } /** *Path to Amazon S3 storage location for the output configuration file.
*/ inline bool S3DataHasBeenSet() const { return m_s3DataHasBeenSet; } /** *Path to Amazon S3 storage location for the output configuration file.
*/ inline void SetS3Data(const ExportS3DataInput& value) { m_s3DataHasBeenSet = true; m_s3Data = value; } /** *Path to Amazon S3 storage location for the output configuration file.
*/ inline void SetS3Data(ExportS3DataInput&& value) { m_s3DataHasBeenSet = true; m_s3Data = std::move(value); } /** *Path to Amazon S3 storage location for the output configuration file.
*/ inline OutputConfigInput& WithS3Data(const ExportS3DataInput& value) { SetS3Data(value); return *this;} /** *Path to Amazon S3 storage location for the output configuration file.
*/ inline OutputConfigInput& WithS3Data(ExportS3DataInput&& value) { SetS3Data(std::move(value)); return *this;} private: ExportS3DataInput m_s3Data; bool m_s3DataHasBeenSet = false; }; } // namespace Model } // namespace SageMakerGeospatial } // namespace Aws