Class: Aws::ECS::Types::ServiceConnectTestTrafficHeaderRules

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

Overview

The HTTP header rules used to identify and route test traffic during Amazon ECS blue/green deployments. These rules specify which HTTP headers to examine and what values to match for routing decisions.

For more information, see Service Connect for Amazon ECS blue/green deployments in the Amazon Elastic Container Service Developer Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the HTTP header to examine for test traffic routing. Common examples include custom headers like X-Test-Version or X-Canary-Request that can be used to identify test traffic.

Returns:

  • (String)


10402
10403
10404
10405
10406
10407
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 10402

class ServiceConnectTestTrafficHeaderRules < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueTypes::ServiceConnectTestTrafficHeaderMatchRules

The header value matching configuration that determines how the HTTP header value is evaluated for test traffic routing decisions.



10402
10403
10404
10405
10406
10407
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 10402

class ServiceConnectTestTrafficHeaderRules < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end