interface CfnMetricAttributionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Personalize.CfnMetricAttributionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspersonalize#CfnMetricAttributionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.personalize.CfnMetricAttributionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_personalize.CfnMetricAttributionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_personalize » CfnMetricAttributionMixinProps |
Properties for CfnMetricAttributionPropsMixin.
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 cfnMetricAttributionMixinProps: personalize.CfnMetricAttributionMixinProps = {
datasetGroupArn: 'datasetGroupArn',
metrics: [{
eventType: 'eventType',
expression: 'expression',
metricName: 'metricName',
}],
metricsOutputConfig: {
roleArn: 'roleArn',
s3DataDestination: {
kmsKeyArn: 'kmsKeyArn',
path: 'path',
},
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| dataset | string | The ARN of the destination dataset group. |
| metrics? | IResolvable | (IResolvable | Metric)[] | A list of metric attributes for the metric attribution. |
| metrics | IResolvable | Metrics | The output configuration details for the metric attribution. |
| name? | string | The name of the metric attribution. |
datasetGroupArn?
Type:
string
(optional)
The ARN of the destination dataset group.
metrics?
Type:
IResolvable | (IResolvable | Metric)[]
(optional)
A list of metric attributes for the metric attribution.
metricsOutputConfig?
Type:
IResolvable | Metrics
(optional)
The output configuration details for the metric attribution.
name?
Type:
string
(optional)
The name of the metric attribution.

.NET
Go
Java
Python
TypeScript