StreamReference

class aws_cdk.aws_qldb.StreamReference(*, ledger_name, stream_arn, stream_id)

Bases: object

A reference to a Stream resource.

Parameters:
  • ledger_name (str) – The LedgerName of the Stream resource.

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

  • stream_id (str) – The Id 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_qldb as qldb

stream_reference = qldb.StreamReference(
    ledger_name="ledgerName",
    stream_arn="streamArn",
    stream_id="streamId"
)

Attributes

ledger_name

The LedgerName of the Stream resource.

stream_arn

The ARN of the Stream resource.

stream_id

The Id of the Stream resource.