CfnEventStreamPropsMixin
- class aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnEventStreamPropsMixin(props, *, strategy=None)
Bases:
MixinAn Event Stream resource of Amazon Connect Customer Profiles.
- See:
- CloudformationResource:
AWS::CustomerProfiles::EventStream
- Mixin:
true
- 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 import mixins from aws_cdk.mixins_preview.aws_customerprofiles import mixins as customerprofiles_mixins cfn_event_stream_props_mixin = customerprofiles_mixins.CfnEventStreamPropsMixin(customerprofiles_mixins.CfnEventStreamMixinProps( domain_name="domainName", event_stream_name="eventStreamName", tags=[CfnTag( key="key", value="value" )], uri="uri" ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::CustomerProfiles::EventStream.- Parameters:
props (
Union[CfnEventStreamMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['domainName', 'eventStreamName', 'tags', 'uri']
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
DestinationDetailsProperty
- class CfnEventStreamPropsMixin.DestinationDetailsProperty(*, status=None, uri=None)
Bases:
objectDetails regarding the Kinesis stream.
- Parameters:
status (
Optional[str]) – The status of enabling the Kinesis stream as a destination for export.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 destination_details_property = customerprofiles_mixins.CfnEventStreamPropsMixin.DestinationDetailsProperty( status="status", uri="uri" )
Attributes
- status
The status of enabling the Kinesis stream as a destination for export.
- uri
The StreamARN of the destination to deliver profile events to.
For example, arn:aws:kinesis:region:account-id:stream/stream-name.