Class: Aws::Lambda::Types::AliasRoutingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::AliasRoutingConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass AliasRoutingConfiguration data as a hash:
{
additional_version_weights: {
"AdditionalVersion" => 1.0,
},
}
The parent object that implements what percentage of traffic will invoke each function version. For more information, see lambda-traffic-shifting-using-aliases.
Instance Attribute Summary collapse
-
#additional_version_weights ⇒ Hash<String,Float>
Set this value to dictate what percentage of traffic will invoke the updated function version.
Instance Attribute Details
#additional_version_weights ⇒ Hash<String,Float>
Set this value to dictate what percentage of traffic will invoke the updated function version. If set to an empty string, 100 percent of traffic will invoke function-version. For more information, see lambda-traffic-shifting-using-aliases.
281 282 283 284 |
# File 'lib/aws-sdk-lambda/types.rb', line 281 class AliasRoutingConfiguration < Struct.new( :additional_version_weights) include Aws::Structure end |