Module Values.DescribeIntegrationsMessageSource

Describes one or more zero-ETL or S3 event integrations with Amazon Redshift.

Sourcetype nonrec t = {
  1. integrationArn : IntegrationArn.t option;
    (*

    The unique identifier of the integration.

    *)
  2. maxRecords : IntegerOptional.t option;
    (*

    The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. Default: 100 Constraints: minimum 20, maximum 100.

    *)
  3. marker : String_.t option;
    (*

    An optional pagination token provided by a previous DescribeIntegrations request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

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

    A filter that specifies one or more resources to return.

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