Class: Aws::APIGateway::Types::DeploymentCanarySettings

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb

Overview

The input configuration for a canary deployment.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#percent_trafficFloat

The percentage (0.0-100.0) of traffic routed to the canary deployment.

Returns:

  • (Float)


1633
1634
1635
1636
1637
1638
1639
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1633

class DeploymentCanarySettings < Struct.new(
  :percent_traffic,
  :stage_variable_overrides,
  :use_stage_cache)
  SENSITIVE = []
  include Aws::Structure
end

#stage_variable_overridesHash<String,String>

A stage variable overrides used for the canary release deployment. They can override existing stage variables or add new stage variables for the canary release deployment. These stage variables are represented as a string-to-string map between stage variable names and their values.

Returns:

  • (Hash<String,String>)


1633
1634
1635
1636
1637
1638
1639
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1633

class DeploymentCanarySettings < Struct.new(
  :percent_traffic,
  :stage_variable_overrides,
  :use_stage_cache)
  SENSITIVE = []
  include Aws::Structure
end

#use_stage_cacheBoolean

A Boolean flag to indicate whether the canary release deployment uses the stage cache or not.

Returns:

  • (Boolean)


1633
1634
1635
1636
1637
1638
1639
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1633

class DeploymentCanarySettings < Struct.new(
  :percent_traffic,
  :stage_variable_overrides,
  :use_stage_cache)
  SENSITIVE = []
  include Aws::Structure
end