Module Values.GetBasePathMappingRequestSource

Request to describe a BasePathMapping resource.

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

    The domain name of the BasePathMapping resource to be described.

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

    The identifier for the domain name resource. Supported only for private custom domain names.

    *)
  3. basePath : String_.t;
    (*

    The base path name that callers of the API must provide as part of the URL after the domain name. This value must be unique for all of the mappings across a single API. Specify '(none)' if you do not want callers to specify any base path name after the domain name.

    *)
}
Sourceval context_ : string
Sourceval make : ?domainNameId:??? -> domainName:String_.t -> basePath:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure 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