Struct rusoto_emr::CancelStepsInput[][src]

pub struct CancelStepsInput {
    pub cluster_id: Option<String>,
    pub step_ids: Option<Vec<String>>,
}

The input argument to the CancelSteps operation.

Fields

The ClusterID for which specified steps will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.

The list of StepIDs to cancel. Use ListSteps to get steps and their states for the specified cluster.

Trait Implementations

impl Default for CancelStepsInput
[src]

Returns the "default value" for a type. Read more

impl Debug for CancelStepsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CancelStepsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CancelStepsInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations