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
impl StructuralPartialEq for ListStepsInput
Auto Trait Implementations§
impl Freeze for ListStepsInput
impl RefUnwindSafe for ListStepsInput
impl Send for ListStepsInput
impl Sync for ListStepsInput
impl Unpin for ListStepsInput
impl UnwindSafe for ListStepsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more