Module Values.CreateResourceRequestSource

Requests API Gateway to create a Resource resource.

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

    The string identifier of the associated RestApi.

    *)
  2. parentId : String_.t;
    (*

    The parent resource's identifier.

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

    The last path segment for this resource.

    *)
}
Sourceval context_ : string
Sourceval make : restApiId:String_.t -> parentId:String_.t -> pathPart: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