Module Values.GetStreamOutputSource

The output of a retrieved stream.

Sourcetype nonrec t = {
  1. clusterIdentifier : ClusterId.t option;
    (*

    The ID of the cluster for the retrieved stream.

    *)
  2. streamIdentifier : StreamId.t option;
    (*

    The ID of the retrieved stream.

    *)
  3. arn : StreamArn.t option;
    (*

    The ARN of the retrieved stream.

    *)
  4. status : StreamStatus.t option;
    (*

    The current status of the retrieved stream.

    *)
  5. creationTime : StreamCreationTime.t option;
    (*

    The time when the stream was created.

    *)
  6. ordering : StreamOrdering.t option;
    (*

    The ordering mode of the stream.

    *)
  7. format : StreamFormat.t option;
    (*

    The format of the stream records.

    *)
  8. targetDefinition : TargetDefinition.t option;
    (*

    The target definition for the stream destination.

    *)
  9. statusReason : StatusReason.t option;
    (*

    Stream status reason with error code and timestamp (if applicable).

    *)
  10. tags : TagMap.t option;
    (*

    A map of tags associated with the stream.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?clusterIdentifier:??? -> ?streamIdentifier:??? -> ?arn:??? -> ?status:??? -> ?creationTime:??? -> ?ordering:??? -> ?format:??? -> ?targetDefinition:??? -> ?statusReason:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ClusterId.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of KinesisStreamArn.t ]) list | `Timestamp of Timestamp.t ]) list | `Timestamp of StreamCreationTime.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