Struct aws_sdk_emr::client::fluent_builders::CancelSteps
source · pub struct CancelSteps { /* private fields */ }Expand description
Fluent builder constructing a request to CancelSteps.
Cancels a pending step or steps in a running cluster. Available only in Amazon EMR versions 4.8.0 and later, excluding version 5.0.0. A maximum of 256 steps are allowed in each CancelSteps request. CancelSteps is idempotent but asynchronous; it does not guarantee that a step will be canceled, even if the request is successfully submitted. When you use Amazon EMR versions 5.28.0 and later, you can cancel steps that are in a PENDING or RUNNING state. In earlier versions of Amazon EMR, you can only cancel steps that are in a PENDING state.
Implementations§
source§impl CancelSteps
impl CancelSteps
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CancelSteps, AwsResponseRetryClassifier>, SdkError<CancelStepsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CancelSteps, AwsResponseRetryClassifier>, SdkError<CancelStepsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(self) -> Result<CancelStepsOutput, SdkError<CancelStepsError>>
pub async fn send(self) -> Result<CancelStepsOutput, SdkError<CancelStepsError>>
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.
sourcepub fn cluster_id(self, input: impl Into<String>) -> Self
pub fn cluster_id(self, input: impl Into<String>) -> Self
The ClusterID for the specified steps that will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.
sourcepub fn set_cluster_id(self, input: Option<String>) -> Self
pub fn set_cluster_id(self, input: Option<String>) -> Self
The ClusterID for the specified steps that will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.
sourcepub fn step_ids(self, input: impl Into<String>) -> Self
pub fn step_ids(self, input: impl Into<String>) -> Self
Appends an item to StepIds.
To override the contents of this collection use set_step_ids.
The list of StepIDs to cancel. Use ListSteps to get steps and their states for the specified cluster.
sourcepub fn set_step_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_step_ids(self, input: Option<Vec<String>>) -> Self
The list of StepIDs to cancel. Use ListSteps to get steps and their states for the specified cluster.
sourcepub fn step_cancellation_option(self, input: StepCancellationOption) -> Self
pub fn step_cancellation_option(self, input: StepCancellationOption) -> Self
The option to choose to cancel RUNNING steps. By default, the value is SEND_INTERRUPT.
sourcepub fn set_step_cancellation_option(
self,
input: Option<StepCancellationOption>
) -> Self
pub fn set_step_cancellation_option(
self,
input: Option<StepCancellationOption>
) -> Self
The option to choose to cancel RUNNING steps. By default, the value is SEND_INTERRUPT.
Trait Implementations§
source§impl Clone for CancelSteps
impl Clone for CancelSteps
source§fn clone(&self) -> CancelSteps
fn clone(&self) -> CancelSteps
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more