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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect-blue-green.html

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)


12430
12431
12432
12433
12434
12435
# File 'lib/aws-sdk-ecs/types.rb', line 12430

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.



12430
12431
12432
12433
12434
12435
# File 'lib/aws-sdk-ecs/types.rb', line 12430

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