Interface CfnGatewayRulePropsMixin.WeightedOverrideProperty

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

@Stability(Stable) public static interface CfnGatewayRulePropsMixin.WeightedOverrideProperty extends software.amazon.jsii.JsiiSerializable
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.bedrockagentcore.*;
 WeightedOverrideProperty weightedOverrideProperty = WeightedOverrideProperty.builder()
         .trafficSplit(List.of(TrafficSplitEntryProperty.builder()
                 .configurationBundle(ConfigurationBundleReferenceProperty.builder()
                         .bundleArn("bundleArn")
                         .bundleVersion("bundleVersion")
                         .build())
                 .description("description")
                 .metadata(Map.of(
                         "metadataKey", "metadata"))
                 .name("name")
                 .weight(123)
                 .build()))
         .build();
 

See Also: