StreamReference

class aws_cdk.aws_kinesisvideo.StreamReference(*, stream_arn, stream_name)

Bases: object

A reference to a Stream resource.

Parameters:
  • stream_arn (str) – The ARN of the Stream resource.

  • stream_name (str) – The Name of the Stream 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_kinesisvideo as kinesisvideo

stream_reference = kinesisvideo.StreamReference(
    stream_arn="streamArn",
    stream_name="streamName"
)

Attributes

stream_arn

The ARN of the Stream resource.

stream_name

The Name of the Stream resource.