CfnEventTrackerProps

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

Bases: object

Properties for defining a CfnEventTracker.

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

  • name (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 import aws_personalize as personalize

cfn_event_tracker_props = personalize.CfnEventTrackerProps(
    dataset_group_arn="datasetGroupArn",
    name="name",

    # the properties below are optional
    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