Module Values.AwsEcsTaskDefinitionProxyConfigurationDetailsSource

The configuration details for the App Mesh proxy.

Sourcetype nonrec t = {
  1. containerName : NonEmptyString.t option;
    (*

    The name of the container that will serve as the App Mesh proxy.

    *)
  2. proxyConfigurationProperties : AwsEcsTaskDefinitionProxyConfigurationProxyConfigurationPropertiesList.t option;
    (*

    The set of network configuration parameters to provide to the Container Network Interface (CNI) plugin, specified as key-value pairs.

    *)
  3. type_ : NonEmptyString.t option;
    (*

    The proxy type.

    *)
}
Sourceval make : ?containerName:??? -> ?proxyConfigurationProperties:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.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