CfnEventStreamMixinProps
- class aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnEventStreamMixinProps(*, domain_name=None, event_stream_name=None, tags=None, uri=None)
Bases:
objectProperties for CfnEventStreamPropsMixin.
- Parameters:
domain_name (
Optional[str]) – The unique name of the domain.event_stream_name (
Optional[str]) – The name of the event stream.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags used to organize, track, or control access for this resource.uri (
Optional[str]) – The StreamARN of the destination to deliver profile events to. For example, arn:aws:kinesis:region:account-id:stream/stream-name.
- 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.mixins_preview.aws_customerprofiles import mixins as customerprofiles_mixins cfn_event_stream_mixin_props = customerprofiles_mixins.CfnEventStreamMixinProps( domain_name="domainName", event_stream_name="eventStreamName", tags=[CfnTag( key="key", value="value" )], uri="uri" )
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.