#[non_exhaustive]pub struct ListStacksInput {
pub next_token: Option<String>,
pub stack_status_filter: Option<Vec<StackStatus>>,
}Expand description
The input for ListStacks action.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.next_token: Option<String>A string that identifies the next page of stacks that you want to retrieve.
stack_status_filter: Option<Vec<StackStatus>>Stack status to use as a filter. Specify one or more stack status codes to list only stacks with the specified status codes. For a complete list of stack status codes, see the StackStatus parameter of the Stack data type.
Implementations§
source§impl ListStacksInput
impl ListStacksInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A string that identifies the next page of stacks that you want to retrieve.
sourcepub fn stack_status_filter(&self) -> Option<&[StackStatus]>
pub fn stack_status_filter(&self) -> Option<&[StackStatus]>
Stack status to use as a filter. Specify one or more stack status codes to list only stacks with the specified status codes. For a complete list of stack status codes, see the StackStatus parameter of the Stack data type.
source§impl ListStacksInput
impl ListStacksInput
sourcepub fn builder() -> ListStacksInputBuilder
pub fn builder() -> ListStacksInputBuilder
Creates a new builder-style object to manufacture ListStacksInput.
Trait Implementations§
source§impl Clone for ListStacksInput
impl Clone for ListStacksInput
source§fn clone(&self) -> ListStacksInput
fn clone(&self) -> ListStacksInput
Returns a copy 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 ListStacksInput
impl Debug for ListStacksInput
source§impl PartialEq<ListStacksInput> for ListStacksInput
impl PartialEq<ListStacksInput> for ListStacksInput
source§fn eq(&self, other: &ListStacksInput) -> bool
fn eq(&self, other: &ListStacksInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListStacksInput
Auto Trait Implementations§
impl RefUnwindSafe for ListStacksInput
impl Send for ListStacksInput
impl Sync for ListStacksInput
impl Unpin for ListStacksInput
impl UnwindSafe for ListStacksInput
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