Module Values.GetIntegrationResponseRequestSource

Represents a get integration response request.

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

    The string identifier of the associated RestApi.

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

    Specifies a get integration response request's resource identifier.

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

    Specifies a get integration response request's HTTP method.

    *)
  4. statusCode : StatusCode.t;
    (*

    Specifies a get integration response request's status code.

    *)
}
Sourceval context_ : string
Sourceval make : restApiId:String_.t -> resourceId:String_.t -> httpMethod:String_.t -> statusCode:StatusCode.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