Module Values.ApiDestinationSource

Contains details about an API destination.

Sourcetype nonrec t = {
  1. apiDestinationArn : ApiDestinationArn.t option;
    (*

    The ARN of the API destination.

    *)
  2. name : ApiDestinationName.t option;
    (*

    The name of the API destination.

    *)
  3. apiDestinationState : ApiDestinationState.t option;
    (*

    The state of the API destination.

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

    The ARN of the connection specified for the API destination.

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

    The URL to the endpoint for the API destination.

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

    The method to use to connect to the HTTP endpoint.

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

    The maximum number of invocations per second to send to the HTTP endpoint.

    *)
  8. creationTime : Timestamp.t option;
    (*

    A time stamp for the time that the API destination was created.

    *)
  9. lastModifiedTime : Timestamp.t option;
    (*

    A time stamp for the time that the API destination was last modified.

    *)
}
Sourceval make : ?apiDestinationArn:??? -> ?name:??? -> ?apiDestinationState:??? -> ?connectionArn:??? -> ?invocationEndpoint:??? -> ?httpMethod:??? -> ?invocationRateLimitPerSecond:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ApiDestinationInvocationRateLimitPerSecond.t | `String of ApiDestinationArn.t | `Timestamp of Timestamp.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