StreamProcessorReference

class aws_cdk.aws_rekognition.StreamProcessorReference(*, stream_processor_arn, stream_processor_name)

Bases: object

A reference to a StreamProcessor resource.

Parameters:
  • stream_processor_arn (str) – The ARN of the StreamProcessor resource.

  • stream_processor_name (str) – The Name of the StreamProcessor 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

stream_processor_reference = rekognition.StreamProcessorReference(
    stream_processor_arn="streamProcessorArn",
    stream_processor_name="streamProcessorName"
)

Attributes

stream_processor_arn

The ARN of the StreamProcessor resource.

stream_processor_name

The Name of the StreamProcessor resource.