EventStreamReference

class aws_cdk.aws_customerprofiles.EventStreamReference(*, domain_name, event_stream_arn, event_stream_name)

Bases: object

A reference to a EventStream resource.

Parameters:
  • domain_name (str) – The DomainName of the EventStream resource.

  • event_stream_arn (str) – The ARN of the EventStream resource.

  • event_stream_name (str) – The EventStreamName of the EventStream 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_customerprofiles as customerprofiles

event_stream_reference = customerprofiles.EventStreamReference(
    domain_name="domainName",
    event_stream_arn="eventStreamArn",
    event_stream_name="eventStreamName"
)

Attributes

domain_name

The DomainName of the EventStream resource.

event_stream_arn

The ARN of the EventStream resource.

event_stream_name

The EventStreamName of the EventStream resource.