Module Values.ServiceConnectTestTrafficHeaderRulesSource

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.

Sourcetype nonrec t = {
  1. name : String_.t;
    (*

    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.

    *)
  2. value : ServiceConnectTestTrafficHeaderMatchRules.t option;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?value:??? -> name:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t