-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCreateCollectionResultData.php
More file actions
46 lines (39 loc) · 1.2 KB
/
Copy pathCreateCollectionResultData.php
File metadata and controls
46 lines (39 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
declare(strict_types=1);
namespace MoeMizrak\Rekognition\Data\ResultData;
use Spatie\LaravelData\Data;
/**
* CreateCollectionResultData is for the result of the Rekognition API createCollection request.
* For more info: https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-rekognition-2016-06-27.html#createcollection
*
* @class CreateCollectionResultData
*/
final class CreateCollectionResultData extends Data
{
public function __construct(
/*
* Amazon Resource Name (ARN) of the collection. You can use this to manage permissions on your resources.
*
* @param string|null
*/
public ?string $collectionArn = null,
/*
* Version number of the face detection model associated with the collection you are creating.
*
* @param string|null
*/
public ?string $faceModelVersion = null,
/*
* HTTP status code indicating the result of the operation.
*
* @param int|null
*/
public ?int $statusCode = null,
/*
* Metadata about the request.
*
* @param MetaData|null
*/
public ?MetaData $metadata = null,
) {}
}