pub struct ListStackResourcesInput {
pub next_token: Option<String>,
pub stack_name: String,
}
Expand description
The input for the ListStackResource action.
Fields§
§next_token: Option<String>
A string that identifies the next page of stack resources that you want to retrieve.
stack_name: String
The name or the unique stack ID that is associated with the stack, which are not 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.
Trait Implementations§
Source§impl Clone for ListStackResourcesInput
impl Clone for ListStackResourcesInput
Source§fn clone(&self) -> ListStackResourcesInput
fn clone(&self) -> ListStackResourcesInput
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 ListStackResourcesInput
impl Debug for ListStackResourcesInput
Source§impl Default for ListStackResourcesInput
impl Default for ListStackResourcesInput
Source§fn default() -> ListStackResourcesInput
fn default() -> ListStackResourcesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListStackResourcesInput
impl PartialEq for ListStackResourcesInput
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
Mutably borrows from an owned value. Read more