interface CollectionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Rekognition.CollectionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrekognition#CollectionReference |
Java | software.amazon.awscdk.interfaces.rekognition.CollectionReference |
Python | aws_cdk.interfaces.aws_rekognition.CollectionReference |
TypeScript | aws-cdk-lib » interfaces » aws_rekognition » CollectionReference |
A reference to a Collection resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rekognition as interfaces_rekognition } from 'aws-cdk-lib/interfaces';
const collectionReference: interfaces_rekognition.CollectionReference = {
collectionArn: 'collectionArn',
collectionId: 'collectionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| collection | string | The ARN of the Collection resource. |
| collection | string | The CollectionId of the Collection resource. |
collectionArn
Type:
string
The ARN of the Collection resource.
collectionId
Type:
string
The CollectionId of the Collection resource.

.NET
Go
Java
Python
TypeScript