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();