Struct aws_sdk_emr::input::ListStepsInput [−][src]
#[non_exhaustive]pub struct ListStepsInput {
pub cluster_id: Option<String>,
pub step_states: Option<Vec<StepState>>,
pub step_ids: Option<Vec<String>>,
pub marker: Option<String>,
}Expand description
This input determines which steps to list.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.cluster_id: Option<String>The identifier of the cluster for which to list the steps.
step_states: Option<Vec<StepState>>The filter to limit the step list based on certain states.
step_ids: Option<Vec<String>>The filter to limit the step list based on the identifier of the steps. You can specify a maximum of ten Step IDs. The character constraint applies to the overall length of the array.
marker: Option<String>The maximum number of steps that a single ListSteps action returns is 50. To return a longer list of steps, use multiple ListSteps actions along with the Marker parameter, which is a pagination token that indicates the next set of results to retrieve.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListSteps, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListSteps, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListSteps>
Creates a new builder-style object to manufacture ListStepsInput
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ListStepsInput
impl Send for ListStepsInput
impl Sync for ListStepsInput
impl Unpin for ListStepsInput
impl UnwindSafe for ListStepsInput
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