CfnEventStreamProps
- class aws_cdk.aws_customerprofiles.CfnEventStreamProps(*, domain_name, event_stream_name, uri, tags=None)
Bases:
objectProperties for defining a
CfnEventStream.- Parameters:
domain_name (
str) – The unique name of the domain.event_stream_name (
str) – The name of the event stream.uri (
str) – The StreamARN of the destination to deliver profile events to. For example, arn:aws:kinesis:region:account-id:stream/stream-name.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags used to organize, track, or control access for this resource.
- See:
- 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 cfn_event_stream_props = customerprofiles.CfnEventStreamProps( domain_name="domainName", event_stream_name="eventStreamName", uri="uri", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- domain_name
The unique name of the domain.
- event_stream_name
The name of the event stream.
- tags
The tags used to organize, track, or control access for this resource.
- uri
The StreamARN of the destination to deliver profile events to.
For example, arn:aws:kinesis:region:account-id:stream/stream-name.