#[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
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) -> &[StackStatus]
pub fn stack_status_filter(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .stack_status_filter.is_none().
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListStacksInput
impl Debug for ListStacksInput
source§impl PartialEq for ListStacksInput
impl PartialEq for ListStacksInput
source§fn eq(&self, other: &ListStacksInput) -> bool
fn eq(&self, other: &ListStacksInput) -> bool
self and other values to be equal, and is used
by ==.