Interface CfnMetricAttribution.MetricsOutputConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMetricAttribution.MetricsOutputConfigProperty.Jsii$Proxy
Enclosing class:
CfnMetricAttribution

@Stability(Stable) public static interface CfnMetricAttribution.MetricsOutputConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.personalize.*;
 MetricsOutputConfigProperty metricsOutputConfigProperty = MetricsOutputConfigProperty.builder()
         .roleArn("roleArn")
         // the properties below are optional
         .s3DataDestination(S3DataDestinationProperty.builder()
                 .path("path")
                 // the properties below are optional
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .build();
 

See Also: