#[non_exhaustive]pub struct ListStackResourcesInput {
pub stack_name: Option<String>,
pub next_token: Option<String>,
}Expand description
The input for the ListStackResource 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.stack_name: Option<String>The name or the unique stack ID that is associated with the stack, which aren't always interchangeable:
-
Running stacks: You can specify either the stack's name or its unique stack ID.
-
Deleted stacks: You must specify the unique stack ID.
Default: There is no default value.
next_token: Option<String>A string that identifies the next page of stack resources that you want to retrieve.
Implementations§
source§impl ListStackResourcesInput
impl ListStackResourcesInput
sourcepub fn stack_name(&self) -> Option<&str>
pub fn stack_name(&self) -> Option<&str>
The name or the unique stack ID that is associated with the stack, which aren't always interchangeable:
-
Running stacks: You can specify either the stack's name or its unique stack ID.
-
Deleted stacks: You must specify the unique stack ID.
Default: There is no default value.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A string that identifies the next page of stack resources that you want to retrieve.
source§impl ListStackResourcesInput
impl ListStackResourcesInput
sourcepub fn builder() -> ListStackResourcesInputBuilder
pub fn builder() -> ListStackResourcesInputBuilder
Creates a new builder-style object to manufacture ListStackResourcesInput.
Trait Implementations§
source§impl Clone for ListStackResourcesInput
impl Clone for ListStackResourcesInput
source§fn clone(&self) -> ListStackResourcesInput
fn clone(&self) -> ListStackResourcesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListStackResourcesInput
impl Debug for ListStackResourcesInput
source§impl PartialEq for ListStackResourcesInput
impl PartialEq for ListStackResourcesInput
source§fn eq(&self, other: &ListStackResourcesInput) -> bool
fn eq(&self, other: &ListStackResourcesInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListStackResourcesInput
Auto Trait Implementations§
impl Freeze for ListStackResourcesInput
impl RefUnwindSafe for ListStackResourcesInput
impl Send for ListStackResourcesInput
impl Sync for ListStackResourcesInput
impl Unpin for ListStackResourcesInput
impl UnwindSafe for ListStackResourcesInput
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> 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