This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files

71 lines
1.8 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/rekognition/Rekognition_EXPORTS.h>
#include <aws/rekognition/model/S3Object.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Rekognition
{
namespace Model
{
/**
* <p>The S3 bucket that contains the training summary. The training summary
* includes aggregated evaluation metrics for the entire testing dataset and
* metrics for each individual label. </p> <p>You get the training summary S3
* bucket location by calling <a>DescribeProjectVersions</a>. </p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/rekognition-2016-06-27/Summary">AWS
* API Reference</a></p>
*/
class AWS_REKOGNITION_API Summary
{
public:
Summary();
Summary(Aws::Utils::Json::JsonView jsonValue);
Summary& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
inline const S3Object& GetS3Object() const{ return m_s3Object; }
inline bool S3ObjectHasBeenSet() const { return m_s3ObjectHasBeenSet; }
inline void SetS3Object(const S3Object& value) { m_s3ObjectHasBeenSet = true; m_s3Object = value; }
inline void SetS3Object(S3Object&& value) { m_s3ObjectHasBeenSet = true; m_s3Object = std::move(value); }
inline Summary& WithS3Object(const S3Object& value) { SetS3Object(value); return *this;}
inline Summary& WithS3Object(S3Object&& value) { SetS3Object(std::move(value)); return *this;}
private:
S3Object m_s3Object;
bool m_s3ObjectHasBeenSet;
};
} // namespace Model
} // namespace Rekognition
} // namespace Aws