interface MetricsOutputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Personalize.CfnMetricAttributionPropsMixin.MetricsOutputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspersonalize#CfnMetricAttributionPropsMixin_MetricsOutputConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.personalize.CfnMetricAttributionPropsMixin.MetricsOutputConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_personalize.CfnMetricAttributionPropsMixin.MetricsOutputConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_personalize » CfnMetricAttributionPropsMixin » 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/cfn-property-mixins';
const metricsOutputConfigProperty: personalize.CfnMetricAttributionPropsMixin.MetricsOutputConfigProperty = {
roleArn: 'roleArn',
s3DataDestination: {
kmsKeyArn: 'kmsKeyArn',
path: 'path',
},
};
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
(optional)
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