Interface CfnAlias.AliasRoutingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAlias.AliasRoutingConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnAlias
@Stability(Stable)
public static interface CfnAlias.AliasRoutingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The traffic-shifting configuration of a Lambda function alias.
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.lambda.*;
AliasRoutingConfigurationProperty aliasRoutingConfigurationProperty = AliasRoutingConfigurationProperty.builder()
.additionalVersionWeights(List.of(VersionWeightProperty.builder()
.functionVersion("functionVersion")
.functionWeight(123)
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAlias.AliasRoutingConfigurationPropertystatic final classAn implementation forCfnAlias.AliasRoutingConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The second version, and the percentage of traffic that's routed to it.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdditionalVersionWeights
The second version, and the percentage of traffic that's routed to it. -
builder
-