CfnEventTrackerMixinProps

class aws_cdk.cfn_property_mixins.aws_personalize.CfnEventTrackerMixinProps(*, dataset_group_arn=None, name=None, tags=None)

Bases: object

Properties for CfnEventTrackerPropsMixin.

Parameters:
  • dataset_group_arn (Optional[str]) – The Amazon Resource Name (ARN) of the dataset group that receives the event data.

  • name (Optional[str]) – The name for the event tracker.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A list of tags to apply to the event tracker.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-eventtracker.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_personalize as personalize

cfn_event_tracker_mixin_props = personalize.CfnEventTrackerMixinProps(
    dataset_group_arn="datasetGroupArn",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

dataset_group_arn

The Amazon Resource Name (ARN) of the dataset group that receives the event data.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-eventtracker.html#cfn-personalize-eventtracker-datasetgrouparn

name

The name for the event tracker.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-eventtracker.html#cfn-personalize-eventtracker-name

tags

A list of tags to apply to the event tracker.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-personalize-eventtracker.html#cfn-personalize-eventtracker-tags