Values.DescribeDeliveryStreamInputSourceDescribes the specified Firehose stream and its status. For example, after your Firehose stream is created, call DescribeDeliveryStream to see whether the Firehose stream is ACTIVE and therefore ready for data to be sent to it. If the status of a Firehose stream is CREATING_FAILED, this status doesn't change, and you can't invoke CreateDeliveryStream again on it. However, you can invoke the DeleteDeliveryStream operation to delete it. If the status is DELETING_FAILED, you can force deletion by invoking DeleteDeliveryStream again but with DeleteDeliveryStreamInput$AllowForceDelete set to true.
type nonrec t = {deliveryStreamName : DeliveryStreamName.t;The name of the Firehose stream.
*)limit : DescribeDeliveryStreamInputLimit.t option;The limit on the number of destinations to return. You can have one destination per Firehose stream.
*)exclusiveStartDestinationId : DestinationId.t option;The ID of the destination to start returning the destination information. Firehose supports one destination per Firehose stream.
*)}val make :
?limit:??? ->
?exclusiveStartDestinationId:??? ->
deliveryStreamName:DeliveryStreamName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of DescribeDeliveryStreamInputLimit.t
| `String of DeliveryStreamName.t ])
list ]