pub struct ListStackSetsOutput {
pub next_token: Option<String>,
pub summaries: Option<Vec<StackSetSummary>>,
}Fields§
§next_token: Option<String>If the request doesn't return all of the remaining results, NextToken is set to a token. To retrieve the next set of results, call ListStackInstances again and assign that token to the request object's NextToken parameter. If the request returns all results, NextToken is set to null.
summaries: Option<Vec<StackSetSummary>>A list of StackSetSummary structures that contain information about the user's stack sets.
Trait Implementations§
Source§impl Clone for ListStackSetsOutput
impl Clone for ListStackSetsOutput
Source§fn clone(&self) -> ListStackSetsOutput
fn clone(&self) -> ListStackSetsOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListStackSetsOutput
impl Debug for ListStackSetsOutput
Source§impl Default for ListStackSetsOutput
impl Default for ListStackSetsOutput
Source§fn default() -> ListStackSetsOutput
fn default() -> ListStackSetsOutput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListStackSetsOutput
impl PartialEq for ListStackSetsOutput
Source§fn eq(&self, other: &ListStackSetsOutput) -> bool
fn eq(&self, other: &ListStackSetsOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListStackSetsOutput
Auto Trait Implementations§
impl Freeze for ListStackSetsOutput
impl RefUnwindSafe for ListStackSetsOutput
impl Send for ListStackSetsOutput
impl Sync for ListStackSetsOutput
impl Unpin for ListStackSetsOutput
impl UnsafeUnpin for ListStackSetsOutput
impl UnwindSafe for ListStackSetsOutput
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