/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Location information about a manifest file. You can use a manifest file to
* create a dataset.See Also:
AWS
* API Reference
The S3 bucket location for the manifest file.
*/ inline const InputS3Object& GetS3Object() const{ return m_s3Object; } /** *The S3 bucket location for the manifest file.
*/ inline bool S3ObjectHasBeenSet() const { return m_s3ObjectHasBeenSet; } /** *The S3 bucket location for the manifest file.
*/ inline void SetS3Object(const InputS3Object& value) { m_s3ObjectHasBeenSet = true; m_s3Object = value; } /** *The S3 bucket location for the manifest file.
*/ inline void SetS3Object(InputS3Object&& value) { m_s3ObjectHasBeenSet = true; m_s3Object = std::move(value); } /** *The S3 bucket location for the manifest file.
*/ inline DatasetGroundTruthManifest& WithS3Object(const InputS3Object& value) { SetS3Object(value); return *this;} /** *The S3 bucket location for the manifest file.
*/ inline DatasetGroundTruthManifest& WithS3Object(InputS3Object&& value) { SetS3Object(std::move(value)); return *this;} private: InputS3Object m_s3Object; bool m_s3ObjectHasBeenSet = false; }; } // namespace Model } // namespace LookoutforVision } // namespace Aws