/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMakerGeospatial { namespace Model { /** *

The response structure for an OutputConfig returned by an * ExportEarthObservationJob.

See Also:

AWS * API Reference

*/ class OutputConfigInput { public: AWS_SAGEMAKERGEOSPATIAL_API OutputConfigInput(); AWS_SAGEMAKERGEOSPATIAL_API OutputConfigInput(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKERGEOSPATIAL_API OutputConfigInput& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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