/** * 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 { /** *

An object containing information about the output file.

See * Also:

AWS * API Reference

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

The input structure for Amazon S3 data; representing the Amazon S3 location * of the input data objects.

*/ inline const VectorEnrichmentJobS3Data& GetS3Data() const{ return m_s3Data; } /** *

The input structure for Amazon S3 data; representing the Amazon S3 location * of the input data objects.

*/ inline bool S3DataHasBeenSet() const { return m_s3DataHasBeenSet; } /** *

The input structure for Amazon S3 data; representing the Amazon S3 location * of the input data objects.

*/ inline void SetS3Data(const VectorEnrichmentJobS3Data& value) { m_s3DataHasBeenSet = true; m_s3Data = value; } /** *

The input structure for Amazon S3 data; representing the Amazon S3 location * of the input data objects.

*/ inline void SetS3Data(VectorEnrichmentJobS3Data&& value) { m_s3DataHasBeenSet = true; m_s3Data = std::move(value); } /** *

The input structure for Amazon S3 data; representing the Amazon S3 location * of the input data objects.

*/ inline ExportVectorEnrichmentJobOutputConfig& WithS3Data(const VectorEnrichmentJobS3Data& value) { SetS3Data(value); return *this;} /** *

The input structure for Amazon S3 data; representing the Amazon S3 location * of the input data objects.

*/ inline ExportVectorEnrichmentJobOutputConfig& WithS3Data(VectorEnrichmentJobS3Data&& value) { SetS3Data(std::move(value)); return *this;} private: VectorEnrichmentJobS3Data m_s3Data; bool m_s3DataHasBeenSet = false; }; } // namespace Model } // namespace SageMakerGeospatial } // namespace Aws