/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object containing information about the output file.See
* Also:
AWS
* API Reference
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