CfnEventStreamPropsMixin

class aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnEventStreamPropsMixin(props, *, strategy=None)

Bases: Mixin

An Event Stream resource of Amazon Connect Customer Profiles.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-eventstream.html

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:

IConstruct

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 x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

DestinationDetailsProperty

class CfnEventStreamPropsMixin.DestinationDetailsProperty(*, status=None, uri=None)

Bases: object

Details 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventstream-destinationdetails.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventstream-destinationdetails.html#cfn-customerprofiles-eventstream-destinationdetails-status

uri

The StreamARN of the destination to deliver profile events to.

For example, arn:aws:kinesis:region:account-id:stream/stream-name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventstream-destinationdetails.html#cfn-customerprofiles-eventstream-destinationdetails-uri