pub struct ListStepsInput {
pub cluster_id: String,
pub marker: Option<String>,
pub step_ids: Option<Vec<String>>,
pub step_states: Option<Vec<String>>,
}
Expand description
This input determines which steps to list.
Fields§
§cluster_id: String
The identifier of the cluster for which to list the steps.
marker: Option<String>
The pagination token that indicates the next set of results to retrieve.
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.
step_states: Option<Vec<String>>
The filter to limit the step list based on certain states.
Trait Implementations§
Source§impl Clone for ListStepsInput
impl Clone for ListStepsInput
Source§fn clone(&self) -> ListStepsInput
fn clone(&self) -> ListStepsInput
Returns a duplicate 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 ListStepsInput
impl Debug for ListStepsInput
Source§impl Default for ListStepsInput
impl Default for ListStepsInput
Source§fn default() -> ListStepsInput
fn default() -> ListStepsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListStepsInput
impl PartialEq for ListStepsInput
Source§impl Serialize for ListStepsInput
impl Serialize 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
Mutably borrows from an owned value. Read more