Module Values.ServiceConnectServiceSource

The Service Connect service object configuration. For more information, see Service Connect in the Amazon Elastic Container Service Developer Guide.

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

    The portName must match the name of one of the portMappings from all the containers in the task definition of this Amazon ECS service.

    *)
  2. discoveryName : String_.t option;
    (*

    The discoveryName is the name of the new Cloud Map service that Amazon ECS creates for this Amazon ECS service. This must be unique within the Cloud Map namespace. The name can contain up to 64 characters. The name can include lowercase letters, numbers, underscores (_), and hyphens (-). The name can't start with a hyphen. If the discoveryName isn't specified, the port mapping name from the task definition is used in portName.namespace.

    *)
  3. clientAliases : ServiceConnectClientAliasList.t option;
    (*

    The list of client aliases for this Service Connect service. You use these to assign names that can be used by client applications. The maximum number of client aliases that you can have in this list is 1. Each alias ("endpoint") is a fully-qualified name and port number that other Amazon ECS tasks ("clients") can use to connect to this service. Each name and port mapping must be unique within the namespace. For each ServiceConnectService, you must provide at least one clientAlias with one port.

    *)
  4. ingressPortOverride : PortNumber.t option;
    (*

    The port number for the Service Connect proxy to listen on. Use the value of this field to bypass the proxy for traffic on the port number specified in the named portMapping in the task definition of this application, and then use it in your VPC security groups to allow traffic into the proxy for this Amazon ECS service. In awsvpc mode and Fargate, the default value is the container port number. The container port number is in the portMapping in the task definition. In bridge mode, the default value is the ephemeral port of the Service Connect proxy.

    *)
  5. timeout : TimeoutConfiguration.t option;
    (*

    A reference to an object that represents the configured timeouts for Service Connect.

    *)
  6. tls : ServiceConnectTlsConfiguration.t option;
    (*

    A reference to an object that represents a Transport Layer Security (TLS) configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?discoveryName:??? -> ?clientAliases:??? -> ?ingressPortOverride:??? -> ?timeout:??? -> ?tls:??? -> portName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PortNumber.t | `List of [> `Structure of (string * [> `Integer of PortNumber.t | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list ]) list ]) list ] list | `String of String_.t | `Structure of (string * [> `Integer of Duration.t | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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