Module Values.GetConnectionInputSource

Gets a connection. In Amazon DataZone, a connection enables you to connect your resources (domains, projects, and environments) to external resources and services.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The ID of the domain where we get the connection.

    *)
  2. identifier : ConnectionId.t;
    (*

    The connection ID.

    *)
  3. withSecret : Boolean.t option;
    (*

    Specifies whether a connection has a secret.

    *)
}
Sourceval context_ : string
Sourceval make : ?withSecret:??? -> domainIdentifier:DomainId.t -> identifier:ConnectionId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of DomainId.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