Values.UpdateApiDestinationRequestSourceUpdates an API destination.
type nonrec t = {name : ApiDestinationName.t;The name of the API destination to update.
*)description : ApiDestinationDescription.t option;The name of the API destination to update.
*)connectionArn : ConnectionArn.t option;The ARN of the connection to use for the API destination.
*)invocationEndpoint : HttpsEndpoint.t option;The URL to the endpoint to use for the API destination.
*)httpMethod : ApiDestinationHttpMethod.t option;The method to use for the API destination.
*)invocationRateLimitPerSecond : ApiDestinationInvocationRateLimitPerSecond.t
option;The maximum number of invocations per second to send to the API destination.
*)}val make :
?description:??? ->
?connectionArn:??? ->
?invocationEndpoint:??? ->
?httpMethod:??? ->
?invocationRateLimitPerSecond:??? ->
name:ApiDestinationName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of ApiDestinationInvocationRateLimitPerSecond.t
| `String of ApiDestinationName.t ])
list ]