CollectionReference

class aws_cdk.aws_rekognition.CollectionReference(*, collection_arn, collection_id)

Bases: object

A 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 import aws_rekognition as rekognition

collection_reference = 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.