Struct aws_sdk_emr::operation::list_steps::ListStepsInput
source · #[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§
source§impl ListStepsInput
impl ListStepsInput
sourcepub fn cluster_id(&self) -> Option<&str>
pub fn cluster_id(&self) -> Option<&str>
The identifier of the cluster for which to list the steps.
sourcepub fn step_states(&self) -> &[StepState]
pub fn step_states(&self) -> &[StepState]
The filter to limit the step list based on certain states.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .step_states.is_none()
.
sourcepub fn step_ids(&self) -> &[String]
pub fn step_ids(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .step_ids.is_none()
.
source§impl ListStepsInput
impl ListStepsInput
sourcepub fn builder() -> ListStepsInputBuilder
pub fn builder() -> ListStepsInputBuilder
Creates a new builder-style object to manufacture ListStepsInput
.
Trait Implementations§
source§impl Clone for ListStepsInput
impl Clone for ListStepsInput
source§fn clone(&self) -> ListStepsInput
fn clone(&self) -> ListStepsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListStepsInput
impl Debug for ListStepsInput
source§impl PartialEq for ListStepsInput
impl PartialEq for ListStepsInput
source§fn eq(&self, other: &ListStepsInput) -> bool
fn eq(&self, other: &ListStepsInput) -> bool
self
and other
values to be equal, and is used
by ==
.