/** * 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 LookoutforVision { namespace Model { /** *

Location information about a manifest file. You can use a manifest file to * create a dataset.

See Also:

AWS * API Reference

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

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