CfnEventTrackerProps
- class aws_cdk.aws_personalize.CfnEventTrackerProps(*, dataset_group_arn, name, tags=None)
Bases:
objectProperties 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:
- 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.
- name
The name for the event tracker.
- tags
A list of tags to apply to the event tracker.