AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Deletes a delivery stream and its data.

You can delete a delivery stream only if it is in one of the following states: ACTIVE, DELETING, CREATING_FAILED, or DELETING_FAILED. You can't delete a delivery stream that is in the CREATING state. To check the state of a delivery stream, use DescribeDeliveryStream.

DeleteDeliveryStream is an asynchronous API. When an API request to DeleteDeliveryStream succeeds, the delivery stream is marked for deletion, and it goes into the DELETING state.While the delivery stream is in the DELETING state, the service might continue to accept records, but it doesn't make any guarantees with respect to delivering the data. Therefore, as a best practice, first stop any applications that are sending records before you delete a delivery stream.

Removal of a delivery stream that is in the DELETING state is a low priority operation for the service. A stream may remain in the DELETING state for several minutes. Therefore, as a best practice, applications should not wait for streams in the DELETING state to be removed.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DeleteDeliveryStreamAsync.

Namespace: Amazon.KinesisFirehose
Assembly: AWSSDK.KinesisFirehose.dll
Version: 3.x.y.z

Syntax

C#
public virtual DeleteDeliveryStreamResponse DeleteDeliveryStream(
         DeleteDeliveryStreamRequest request
)

Parameters

request
Type: Amazon.KinesisFirehose.Model.DeleteDeliveryStreamRequest

Container for the necessary parameters to execute the DeleteDeliveryStream service method.

Return Value


The response from the DeleteDeliveryStream service method, as returned by KinesisFirehose.

Exceptions

ExceptionCondition
ResourceInUseException The resource is already in use and not available for this operation.
ResourceNotFoundException The specified resource could not be found.

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also