interface CfnEventTrackerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Personalize.CfnEventTrackerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspersonalize#CfnEventTrackerMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.personalize.CfnEventTrackerMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_personalize.CfnEventTrackerMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_personalize » CfnEventTrackerMixinProps |
Properties for CfnEventTrackerPropsMixin.
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/cfn-property-mixins';
const cfnEventTrackerMixinProps: personalize.CfnEventTrackerMixinProps = {
datasetGroupArn: 'datasetGroupArn',
name: 'name',
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
(optional)
The Amazon Resource Name (ARN) of the dataset group that receives the event data.
name?
Type:
string
(optional)
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