Module Values.DescribeMappedResourceConfigurationInputSource

Returns the most current information about the stream. The streamName or streamARN should be provided in the input.

Sourcetype nonrec t = {
  1. streamName : StreamName.t option;
    (*

    The name of the stream.

    *)
  2. streamARN : ResourceARN.t option;
    (*

    The Amazon Resource Name (ARN) of the stream.

    *)
  3. maxResults : MappedResourceConfigurationListLimit.t option;
    (*

    The maximum number of results to return in the response.

    *)
  4. nextToken : NextToken.t option;
    (*

    The token to provide in your next request, to get another batch of results.

    *)
}
Sourceval make : ?streamName:??? -> ?streamARN:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MappedResourceConfigurationListLimit.t | `String of StreamName.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