Module Values.DeleteStreamInputSource

Represents the input for DeleteStream.

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

    The name of the stream to delete.

    *)
  2. enforceConsumerDeletion : BooleanObject.t option;
    (*

    If this parameter is unset (null) or if you set it to false, and the stream has registered consumers, the call to DeleteStream fails with a ResourceInUseException.

    *)
  3. streamARN : StreamARN.t option;
    (*

    The ARN of the stream.

    *)
  4. streamId : StreamId.t option;
    (*

    Not Implemented. Reserved for future use.

    *)
}
Sourceval make : ?streamName:??? -> ?enforceConsumerDeletion:??? -> ?streamARN:??? -> ?streamId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.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