Interface CfnGatewayRulePropsMixin.ConfigurationBundleActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayRulePropsMixin.ConfigurationBundleActionProperty.Jsii$Proxy
- Enclosing class:
CfnGatewayRulePropsMixin
@Stability(Stable)
public static interface CfnGatewayRulePropsMixin.ConfigurationBundleActionProperty
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.*;
ConfigurationBundleActionProperty configurationBundleActionProperty = ConfigurationBundleActionProperty.builder()
.staticOverride(StaticOverrideProperty.builder()
.bundleArn("bundleArn")
.bundleVersion("bundleVersion")
.build())
.weightedOverride(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())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnGatewayRulePropsMixin.ConfigurationBundleActionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnGatewayRulePropsMixin.StaticOverridePropertydefault ObjectReturns union: eitherIResolvableorCfnGatewayRulePropsMixin.WeightedOverridePropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStaticOverride
Returns union: eitherIResolvableorCfnGatewayRulePropsMixin.StaticOverrideProperty- See Also:
-
getWeightedOverride
Returns union: eitherIResolvableorCfnGatewayRulePropsMixin.WeightedOverrideProperty- See Also:
-
builder
@Stability(Stable) static CfnGatewayRulePropsMixin.ConfigurationBundleActionProperty.Builder builder()
-