interface MetricsOutputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Personalize.CfnMetricAttribution.MetricsOutputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspersonalize#CfnMetricAttribution_MetricsOutputConfigProperty |
Java | software.amazon.awscdk.services.personalize.CfnMetricAttribution.MetricsOutputConfigProperty |
Python | aws_cdk.aws_personalize.CfnMetricAttribution.MetricsOutputConfigProperty |
TypeScript | aws-cdk-lib » aws_personalize » CfnMetricAttribution » MetricsOutputConfigProperty |
The output configuration details for the metric attribution.
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 metricsOutputConfigProperty: personalize.CfnMetricAttribution.MetricsOutputConfigProperty = {
roleArn: 'roleArn',
// the properties below are optional
s3DataDestination: {
path: 'path',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| role | string | The ARN of the IAM role for the metric attribution. |
| s3 | IResolvable | S3 | The configuration details of an Amazon S3 output bucket. |
roleArn
Type:
string
The ARN of the IAM role for the metric attribution.
s3DataDestination?
Type:
IResolvable | S3
(optional)
The configuration details of an Amazon S3 output bucket.

.NET
Go
Java
Python
TypeScript