Module Values.UpdateApiDestinationRequestSource

Updates an API destination.

Sourcetype nonrec t = {
  1. name : ApiDestinationName.t;
    (*

    The name of the API destination to update.

    *)
  2. description : ApiDestinationDescription.t option;
    (*

    The name of the API destination to update.

    *)
  3. connectionArn : ConnectionArn.t option;
    (*

    The ARN of the connection to use for the API destination.

    *)
  4. invocationEndpoint : HttpsEndpoint.t option;
    (*

    The URL to the endpoint to use for the API destination.

    *)
  5. httpMethod : ApiDestinationHttpMethod.t option;
    (*

    The method to use for the API destination.

    *)
  6. invocationRateLimitPerSecond : ApiDestinationInvocationRateLimitPerSecond.t option;
    (*

    The maximum number of invocations per second to send to the API destination.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?connectionArn:??? -> ?invocationEndpoint:??? -> ?httpMethod:??? -> ?invocationRateLimitPerSecond:??? -> name:ApiDestinationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ApiDestinationInvocationRateLimitPerSecond.t | `String of ApiDestinationName.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