CollectionReference
- class aws_cdk.interfaces.aws_rekognition.CollectionReference(*, collection_arn, collection_id)
Bases:
objectA reference to a Collection resource.
- Parameters:
collection_arn (
str) – The ARN of the Collection resource.collection_id (
str) – The CollectionId of the Collection resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_rekognition as interfaces_rekognition collection_reference = interfaces_rekognition.CollectionReference( collection_arn="collectionArn", collection_id="collectionId" )
Attributes
- collection_arn
The ARN of the Collection resource.
- collection_id
The CollectionId of the Collection resource.