Class: Aws::Lambda::Types::AliasRoutingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::AliasRoutingConfiguration
- Defined in:
- gems/aws-sdk-lambda/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 traffic-shifting configuration of a Lambda function alias.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#additional_version_weights ⇒ Hash<String,Float>
The second version, and the percentage of traffic that's routed to it.
Instance Attribute Details
#additional_version_weights ⇒ Hash<String,Float>
The second version, and the percentage of traffic that's routed to it.
355 356 357 358 359 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 355 class AliasRoutingConfiguration < Struct.new( :additional_version_weights) SENSITIVE = [] include Aws::Structure end |