336 lines
14 KiB
C
336 lines
14 KiB
C
|
|
/**
|
|||
|
|
* 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/RekognitionRequest.h>
|
|||
|
|
#include <aws/rekognition/model/Video.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <aws/rekognition/model/NotificationChannel.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Rekognition
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_REKOGNITION_API StartFaceSearchRequest : public RekognitionRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
StartFaceSearchRequest();
|
|||
|
|
|
|||
|
|
// Service request name is the Operation name which will send this request out,
|
|||
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|||
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|||
|
|
// so we can not get operation's name from response.
|
|||
|
|
inline virtual const char* GetServiceRequestName() const override { return "StartFaceSearch"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The video you want to search. The video must be stored in an Amazon S3
|
|||
|
|
* bucket. </p>
|
|||
|
|
*/
|
|||
|
|
inline const Video& GetVideo() const{ return m_video; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The video you want to search. The video must be stored in an Amazon S3
|
|||
|
|
* bucket. </p>
|
|||
|
|
*/
|
|||
|
|
inline bool VideoHasBeenSet() const { return m_videoHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The video you want to search. The video must be stored in an Amazon S3
|
|||
|
|
* bucket. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVideo(const Video& value) { m_videoHasBeenSet = true; m_video = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The video you want to search. The video must be stored in an Amazon S3
|
|||
|
|
* bucket. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVideo(Video&& value) { m_videoHasBeenSet = true; m_video = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The video you want to search. The video must be stored in an Amazon S3
|
|||
|
|
* bucket. </p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithVideo(const Video& value) { SetVideo(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The video you want to search. The video must be stored in an Amazon S3
|
|||
|
|
* bucket. </p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithVideo(Video&& value) { SetVideo(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Idempotent token used to identify the start request. If you use the same
|
|||
|
|
* token with multiple <code>StartFaceSearch</code> requests, the same
|
|||
|
|
* <code>JobId</code> is returned. Use <code>ClientRequestToken</code> to prevent
|
|||
|
|
* the same job from being accidently started more than once. </p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetClientRequestToken() const{ return m_clientRequestToken; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Idempotent token used to identify the start request. If you use the same
|
|||
|
|
* token with multiple <code>StartFaceSearch</code> requests, the same
|
|||
|
|
* <code>JobId</code> is returned. Use <code>ClientRequestToken</code> to prevent
|
|||
|
|
* the same job from being accidently started more than once. </p>
|
|||
|
|
*/
|
|||
|
|
inline bool ClientRequestTokenHasBeenSet() const { return m_clientRequestTokenHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Idempotent token used to identify the start request. If you use the same
|
|||
|
|
* token with multiple <code>StartFaceSearch</code> requests, the same
|
|||
|
|
* <code>JobId</code> is returned. Use <code>ClientRequestToken</code> to prevent
|
|||
|
|
* the same job from being accidently started more than once. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetClientRequestToken(const Aws::String& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Idempotent token used to identify the start request. If you use the same
|
|||
|
|
* token with multiple <code>StartFaceSearch</code> requests, the same
|
|||
|
|
* <code>JobId</code> is returned. Use <code>ClientRequestToken</code> to prevent
|
|||
|
|
* the same job from being accidently started more than once. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetClientRequestToken(Aws::String&& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Idempotent token used to identify the start request. If you use the same
|
|||
|
|
* token with multiple <code>StartFaceSearch</code> requests, the same
|
|||
|
|
* <code>JobId</code> is returned. Use <code>ClientRequestToken</code> to prevent
|
|||
|
|
* the same job from being accidently started more than once. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetClientRequestToken(const char* value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Idempotent token used to identify the start request. If you use the same
|
|||
|
|
* token with multiple <code>StartFaceSearch</code> requests, the same
|
|||
|
|
* <code>JobId</code> is returned. Use <code>ClientRequestToken</code> to prevent
|
|||
|
|
* the same job from being accidently started more than once. </p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithClientRequestToken(const Aws::String& value) { SetClientRequestToken(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Idempotent token used to identify the start request. If you use the same
|
|||
|
|
* token with multiple <code>StartFaceSearch</code> requests, the same
|
|||
|
|
* <code>JobId</code> is returned. Use <code>ClientRequestToken</code> to prevent
|
|||
|
|
* the same job from being accidently started more than once. </p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithClientRequestToken(Aws::String&& value) { SetClientRequestToken(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Idempotent token used to identify the start request. If you use the same
|
|||
|
|
* token with multiple <code>StartFaceSearch</code> requests, the same
|
|||
|
|
* <code>JobId</code> is returned. Use <code>ClientRequestToken</code> to prevent
|
|||
|
|
* the same job from being accidently started more than once. </p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithClientRequestToken(const char* value) { SetClientRequestToken(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The minimum confidence in the person match to return. For example, don't
|
|||
|
|
* return any matches where confidence in matches is less than 70%. The default
|
|||
|
|
* value is 80%.</p>
|
|||
|
|
*/
|
|||
|
|
inline double GetFaceMatchThreshold() const{ return m_faceMatchThreshold; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The minimum confidence in the person match to return. For example, don't
|
|||
|
|
* return any matches where confidence in matches is less than 70%. The default
|
|||
|
|
* value is 80%.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool FaceMatchThresholdHasBeenSet() const { return m_faceMatchThresholdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The minimum confidence in the person match to return. For example, don't
|
|||
|
|
* return any matches where confidence in matches is less than 70%. The default
|
|||
|
|
* value is 80%.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetFaceMatchThreshold(double value) { m_faceMatchThresholdHasBeenSet = true; m_faceMatchThreshold = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The minimum confidence in the person match to return. For example, don't
|
|||
|
|
* return any matches where confidence in matches is less than 70%. The default
|
|||
|
|
* value is 80%.</p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithFaceMatchThreshold(double value) { SetFaceMatchThreshold(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ID of the collection that contains the faces you want to search for.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetCollectionId() const{ return m_collectionId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ID of the collection that contains the faces you want to search for.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool CollectionIdHasBeenSet() const { return m_collectionIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ID of the collection that contains the faces you want to search for.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCollectionId(const Aws::String& value) { m_collectionIdHasBeenSet = true; m_collectionId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ID of the collection that contains the faces you want to search for.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCollectionId(Aws::String&& value) { m_collectionIdHasBeenSet = true; m_collectionId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ID of the collection that contains the faces you want to search for.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCollectionId(const char* value) { m_collectionIdHasBeenSet = true; m_collectionId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ID of the collection that contains the faces you want to search for.</p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithCollectionId(const Aws::String& value) { SetCollectionId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ID of the collection that contains the faces you want to search for.</p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithCollectionId(Aws::String&& value) { SetCollectionId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>ID of the collection that contains the faces you want to search for.</p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithCollectionId(const char* value) { SetCollectionId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the Amazon SNS topic to which you want Amazon Rekognition Video to
|
|||
|
|
* publish the completion status of the search. </p>
|
|||
|
|
*/
|
|||
|
|
inline const NotificationChannel& GetNotificationChannel() const{ return m_notificationChannel; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the Amazon SNS topic to which you want Amazon Rekognition Video to
|
|||
|
|
* publish the completion status of the search. </p>
|
|||
|
|
*/
|
|||
|
|
inline bool NotificationChannelHasBeenSet() const { return m_notificationChannelHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the Amazon SNS topic to which you want Amazon Rekognition Video to
|
|||
|
|
* publish the completion status of the search. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNotificationChannel(const NotificationChannel& value) { m_notificationChannelHasBeenSet = true; m_notificationChannel = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the Amazon SNS topic to which you want Amazon Rekognition Video to
|
|||
|
|
* publish the completion status of the search. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNotificationChannel(NotificationChannel&& value) { m_notificationChannelHasBeenSet = true; m_notificationChannel = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the Amazon SNS topic to which you want Amazon Rekognition Video to
|
|||
|
|
* publish the completion status of the search. </p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithNotificationChannel(const NotificationChannel& value) { SetNotificationChannel(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The ARN of the Amazon SNS topic to which you want Amazon Rekognition Video to
|
|||
|
|
* publish the completion status of the search. </p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithNotificationChannel(NotificationChannel&& value) { SetNotificationChannel(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An identifier you specify that's returned in the completion notification
|
|||
|
|
* that's published to your Amazon Simple Notification Service topic. For example,
|
|||
|
|
* you can use <code>JobTag</code> to group related jobs and identify them in the
|
|||
|
|
* completion notification.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetJobTag() const{ return m_jobTag; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An identifier you specify that's returned in the completion notification
|
|||
|
|
* that's published to your Amazon Simple Notification Service topic. For example,
|
|||
|
|
* you can use <code>JobTag</code> to group related jobs and identify them in the
|
|||
|
|
* completion notification.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool JobTagHasBeenSet() const { return m_jobTagHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An identifier you specify that's returned in the completion notification
|
|||
|
|
* that's published to your Amazon Simple Notification Service topic. For example,
|
|||
|
|
* you can use <code>JobTag</code> to group related jobs and identify them in the
|
|||
|
|
* completion notification.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetJobTag(const Aws::String& value) { m_jobTagHasBeenSet = true; m_jobTag = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An identifier you specify that's returned in the completion notification
|
|||
|
|
* that's published to your Amazon Simple Notification Service topic. For example,
|
|||
|
|
* you can use <code>JobTag</code> to group related jobs and identify them in the
|
|||
|
|
* completion notification.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetJobTag(Aws::String&& value) { m_jobTagHasBeenSet = true; m_jobTag = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An identifier you specify that's returned in the completion notification
|
|||
|
|
* that's published to your Amazon Simple Notification Service topic. For example,
|
|||
|
|
* you can use <code>JobTag</code> to group related jobs and identify them in the
|
|||
|
|
* completion notification.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetJobTag(const char* value) { m_jobTagHasBeenSet = true; m_jobTag.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An identifier you specify that's returned in the completion notification
|
|||
|
|
* that's published to your Amazon Simple Notification Service topic. For example,
|
|||
|
|
* you can use <code>JobTag</code> to group related jobs and identify them in the
|
|||
|
|
* completion notification.</p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithJobTag(const Aws::String& value) { SetJobTag(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An identifier you specify that's returned in the completion notification
|
|||
|
|
* that's published to your Amazon Simple Notification Service topic. For example,
|
|||
|
|
* you can use <code>JobTag</code> to group related jobs and identify them in the
|
|||
|
|
* completion notification.</p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithJobTag(Aws::String&& value) { SetJobTag(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An identifier you specify that's returned in the completion notification
|
|||
|
|
* that's published to your Amazon Simple Notification Service topic. For example,
|
|||
|
|
* you can use <code>JobTag</code> to group related jobs and identify them in the
|
|||
|
|
* completion notification.</p>
|
|||
|
|
*/
|
|||
|
|
inline StartFaceSearchRequest& WithJobTag(const char* value) { SetJobTag(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Video m_video;
|
|||
|
|
bool m_videoHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_clientRequestToken;
|
|||
|
|
bool m_clientRequestTokenHasBeenSet;
|
|||
|
|
|
|||
|
|
double m_faceMatchThreshold;
|
|||
|
|
bool m_faceMatchThresholdHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_collectionId;
|
|||
|
|
bool m_collectionIdHasBeenSet;
|
|||
|
|
|
|||
|
|
NotificationChannel m_notificationChannel;
|
|||
|
|
bool m_notificationChannelHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_jobTag;
|
|||
|
|
bool m_jobTagHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Rekognition
|
|||
|
|
} // namespace Aws
|