Module Values.ECSServiceSource

Contains the service and cluster names used to identify an Amazon ECS deployment's target.

Sourcetype nonrec t = {
  1. serviceName : ECSServiceName.t option;
    (*

    The name of the target Amazon ECS service.

    *)
  2. clusterName : ECSClusterName.t option;
    (*

    The name of the cluster that the Amazon ECS service is associated with.

    *)
}
Sourceval make : ?serviceName:??? -> ?clusterName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ECSServiceName.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