interface CfnEventTrackerProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Personalize.CfnEventTrackerProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspersonalize#CfnEventTrackerProps |
Java | software.amazon.awscdk.services.personalize.CfnEventTrackerProps |
Python | aws_cdk.aws_personalize.CfnEventTrackerProps |
TypeScript | aws-cdk-lib » aws_personalize » CfnEventTrackerProps |
Properties for defining a CfnEventTracker.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_personalize as personalize } from 'aws-cdk-lib';
const cfnEventTrackerProps: personalize.CfnEventTrackerProps = {
datasetGroupArn: 'datasetGroupArn',
name: 'name',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dataset | string | The Amazon Resource Name (ARN) of the dataset group that receives the event data. |
| name | string | The name for the event tracker. |
| tags? | Cfn[] | A list of tags to apply to the event tracker. |
datasetGroupArn
Type:
string
The Amazon Resource Name (ARN) of the dataset group that receives the event data.
name
Type:
string
The name for the event tracker.
tags?
Type:
Cfn[]
(optional)
A list of tags to apply to the event tracker.

.NET
Go
Java
Python
TypeScript