Interface CfnMetricAttributionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMetricAttributionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:30.857Z")
@Stability(Stable)
public interface CfnMetricAttributionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnMetricAttributionPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.personalize.*;
CfnMetricAttributionMixinProps cfnMetricAttributionMixinProps = CfnMetricAttributionMixinProps.builder()
.datasetGroupArn("datasetGroupArn")
.metrics(List.of(MetricAttributeProperty.builder()
.eventType("eventType")
.expression("expression")
.metricName("metricName")
.build()))
.metricsOutputConfig(MetricsOutputConfigProperty.builder()
.roleArn("roleArn")
.s3DataDestination(S3DataDestinationProperty.builder()
.kmsKeyArn("kmsKeyArn")
.path("path")
.build())
.build())
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMetricAttributionMixinPropsstatic final classAn implementation forCfnMetricAttributionMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of the destination dataset group.default ObjectA list of metric attributes for the metric attribution.default ObjectThe output configuration details for the metric attribution.default StringgetName()The name of the metric attribution.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatasetGroupArn
The ARN of the destination dataset group.- See Also:
-
getMetrics
A list of metric attributes for the metric attribution.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnMetricAttributionPropsMixin.MetricAttributeProperty>- See Also:
-
getMetricsOutputConfig
The output configuration details for the metric attribution.Returns union: either
IResolvableorCfnMetricAttributionPropsMixin.MetricsOutputConfigProperty- See Also:
-
getName
The name of the metric attribution.- See Also:
-
builder
-