Struct aws_sdk_emr::operation::cancel_steps::CancelStepsInput
source · #[non_exhaustive]pub struct CancelStepsInput { /* private fields */ }Expand description
The input argument to the CancelSteps operation.
Implementations§
source§impl CancelStepsInput
impl CancelStepsInput
sourcepub fn cluster_id(&self) -> Option<&str>
pub fn cluster_id(&self) -> Option<&str>
The ClusterID for the specified steps that will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.
sourcepub fn step_ids(&self) -> Option<&[String]>
pub fn step_ids(&self) -> Option<&[String]>
The list of StepIDs to cancel. Use ListSteps to get steps and their states for the specified cluster.
sourcepub fn step_cancellation_option(&self) -> Option<&StepCancellationOption>
pub fn step_cancellation_option(&self) -> Option<&StepCancellationOption>
The option to choose to cancel RUNNING steps. By default, the value is SEND_INTERRUPT.
source§impl CancelStepsInput
impl CancelStepsInput
sourcepub fn builder() -> CancelStepsInputBuilder
pub fn builder() -> CancelStepsInputBuilder
Creates a new builder-style object to manufacture CancelStepsInput.
source§impl CancelStepsInput
impl CancelStepsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CancelSteps, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<CancelSteps, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CancelSteps>
Trait Implementations§
source§impl Clone for CancelStepsInput
impl Clone for CancelStepsInput
source§fn clone(&self) -> CancelStepsInput
fn clone(&self) -> CancelStepsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CancelStepsInput
impl Debug for CancelStepsInput
source§impl PartialEq<CancelStepsInput> for CancelStepsInput
impl PartialEq<CancelStepsInput> for CancelStepsInput
source§fn eq(&self, other: &CancelStepsInput) -> bool
fn eq(&self, other: &CancelStepsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.