Module Values.FargateProfileSelectorSource

An object representing an Fargate profile selector.

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

    The Kubernetes namespace that the selector should match.

    *)
  2. labels : FargateProfileLabel.t option;
    (*

    The Kubernetes labels that the selector should match. A pod must contain all of the labels that are specified in the selector for it to be considered a match.

    *)
}
Sourceval make : ?namespace:??? -> ?labels:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t ]) 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