Class: Aws::SecurityHub::Types::AwsApiGatewayCanarySettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsApiGatewayCanarySettings
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Contains information about settings for canary deployment in the stage.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The deployment identifier for the canary deployment.
-
#percent_traffic ⇒ Float
The percentage of traffic that is diverted to a canary deployment.
-
#stage_variable_overrides ⇒ Hash<String,String>
Stage variables that are overridden in the canary release deployment.
-
#use_stage_cache ⇒ Boolean
Indicates whether the canary deployment uses the stage cache.
Instance Attribute Details
#deployment_id ⇒ String
The deployment identifier for the canary deployment.
1675 1676 1677 1678 1679 1680 1681 1682 |
# File 'lib/aws-sdk-securityhub/types.rb', line 1675 class AwsApiGatewayCanarySettings < Struct.new( :percent_traffic, :deployment_id, :stage_variable_overrides, :use_stage_cache) SENSITIVE = [] include Aws::Structure end |
#percent_traffic ⇒ Float
The percentage of traffic that is diverted to a canary deployment.
1675 1676 1677 1678 1679 1680 1681 1682 |
# File 'lib/aws-sdk-securityhub/types.rb', line 1675 class AwsApiGatewayCanarySettings < Struct.new( :percent_traffic, :deployment_id, :stage_variable_overrides, :use_stage_cache) SENSITIVE = [] include Aws::Structure end |
#stage_variable_overrides ⇒ Hash<String,String>
Stage variables that are overridden in the canary release deployment. The variables include new stage variables that are introduced in the canary.
Each variable is represented as a string-to-string map between the stage variable name and the variable value.
1675 1676 1677 1678 1679 1680 1681 1682 |
# File 'lib/aws-sdk-securityhub/types.rb', line 1675 class AwsApiGatewayCanarySettings < Struct.new( :percent_traffic, :deployment_id, :stage_variable_overrides, :use_stage_cache) SENSITIVE = [] include Aws::Structure end |
#use_stage_cache ⇒ Boolean
Indicates whether the canary deployment uses the stage cache.
1675 1676 1677 1678 1679 1680 1681 1682 |
# File 'lib/aws-sdk-securityhub/types.rb', line 1675 class AwsApiGatewayCanarySettings < Struct.new( :percent_traffic, :deployment_id, :stage_variable_overrides, :use_stage_cache) SENSITIVE = [] include Aws::Structure end |