Module Values.AttachPointDescriptorSource

Describes a possible Attach Point for a Connection.

Sourcetype nonrec t = {
  1. type_ : AttachPointType.t option;
    (*

    The type of this AttachPoint, which will dictate the syntax of the identifier. Current types include: ARN DirectConnect Gateway

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

    The identifier for the specific type of the AttachPoint.

    *)
  3. name : String_.t option;
    (*

    The descriptive name of the identifier attach point.

    *)
}
Sourceval make : ?type_:??? -> ?identifier:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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