Module Values.CreateBasePathMappingRequestSource

Requests API Gateway to create a new BasePathMapping resource.

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

    The domain name of the BasePathMapping resource to create.

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

    The identifier for the domain name resource. Required for private custom domain names.

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

    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 a base path name after the domain name.

    *)
  4. restApiId : String_.t;
    (*

    The string identifier of the associated RestApi.

    *)
  5. stage : String_.t option;
    (*

    The name of the API's stage that you want to use for this mapping. Specify '(none)' if you want callers to explicitly specify the stage name after any base path name.

    *)
}
Sourceval context_ : string
Sourceval make : ?domainNameId:??? -> ?basePath:??? -> ?stage:??? -> domainName:String_.t -> restApiId: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