Struct aws_sdk_datapipeline::client::fluent_builders::DeletePipeline [−][src]
pub struct DeletePipeline<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to DeletePipeline
.
Deletes a pipeline, its pipeline definition, and its run history. AWS Data Pipeline attempts to cancel instances associated with the pipeline that are currently being processed by task runners.
Deleting a pipeline cannot be undone. You cannot query or restore a deleted pipeline.
To temporarily pause a pipeline instead of deleting it, call SetStatus with the status set to PAUSE
on individual components.
Components that are paused by SetStatus can be resumed.
POST / HTTP/1.1 Content-Type: application/x-amz-json-1.1 X-Amz-Target: DataPipeline.DeletePipeline Content-Length: 50 Host: datapipeline.us-east-1.amazonaws.com X-Amz-Date: Mon, 12 Nov 2012 17:49:52 GMT Authorization: AuthParams
{“pipelineId”: “df-06372391ZG65EXAMPLE”}
x-amzn-RequestId: b7a88c81-0754-11e2-af6f-6bc7a6be60d9 Content-Type: application/x-amz-json-1.1 Content-Length: 0 Date: Mon, 12 Nov 2012 17:50:53 GMT
Unexpected response: 200, OK, undefined
Implementations
impl<C, M, R> DeletePipeline<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> DeletePipeline<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<DeletePipelineOutput, SdkError<DeletePipelineError>> where
R::Policy: SmithyRetryPolicy<DeletePipelineInputOperationOutputAlias, DeletePipelineOutput, DeletePipelineError, DeletePipelineInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<DeletePipelineOutput, SdkError<DeletePipelineError>> where
R::Policy: SmithyRetryPolicy<DeletePipelineInputOperationOutputAlias, DeletePipelineOutput, DeletePipelineError, DeletePipelineInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
The ID of the pipeline.
The ID of the pipeline.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for DeletePipeline<C, M, R>
impl<C, M, R> Send for DeletePipeline<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for DeletePipeline<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for DeletePipeline<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for DeletePipeline<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more