Module Values_1.DescribeIntegrationsRequestSource

The API is used to retrieve a list of integrations.

Sourcetype nonrec t = {
  1. integrationIdentifier : String128.t option;
    (*

    The Amazon Resource Name (ARN) for the integration.

    *)
  2. marker : String128.t option;
    (*

    A value that indicates the starting point for the next set of response records in a subsequent request.

    *)
  3. maxRecords : IntegrationInteger.t option;
    (*

    The total number of items to return in the output.

    *)
  4. filters : IntegrationFilterList.t option;
    (*

    A list of key and values, to filter down the results. Supported keys are "Status", "IntegrationName", and "SourceArn". IntegrationName is limited to only one value.

    *)
}
Sourceval make : ?integrationIdentifier:??? -> ?marker:??? -> ?maxRecords:??? -> ?filters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IntegrationInteger.t | `List of [> `Structure of (string * [> `List of [> `String of String128.t ] list | `String of String128.t ]) list ] list | `String of String128.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