pub struct DeleteComputeEnvironment<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteComputeEnvironment
.
Deletes an Batch compute environment.
Before you can delete a compute environment, you must set its state to DISABLED
with the UpdateComputeEnvironment
API operation and disassociate it from any job queues with the UpdateJobQueue
API operation. Compute environments that use Fargate resources must terminate all active jobs on that compute environment before deleting the compute environment. If this isn't done, the compute environment enters an invalid state.
Implementations
impl<C, M, R> DeleteComputeEnvironment<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> DeleteComputeEnvironment<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<DeleteComputeEnvironmentOutput, SdkError<DeleteComputeEnvironmentError>> where
R::Policy: SmithyRetryPolicy<DeleteComputeEnvironmentInputOperationOutputAlias, DeleteComputeEnvironmentOutput, DeleteComputeEnvironmentError, DeleteComputeEnvironmentInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<DeleteComputeEnvironmentOutput, SdkError<DeleteComputeEnvironmentError>> where
R::Policy: SmithyRetryPolicy<DeleteComputeEnvironmentInputOperationOutputAlias, DeleteComputeEnvironmentOutput, DeleteComputeEnvironmentError, DeleteComputeEnvironmentInputOperationRetryAlias>,
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 name or Amazon Resource Name (ARN) of the compute environment to delete.
The name or Amazon Resource Name (ARN) of the compute environment to delete.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for DeleteComputeEnvironment<C, M, R>
impl<C, M, R> Send for DeleteComputeEnvironment<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for DeleteComputeEnvironment<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for DeleteComputeEnvironment<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for DeleteComputeEnvironment<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