#[non_exhaustive]pub struct GetResourceCollectionInput {
pub resource_collection_type: Option<ResourceCollectionType>,
pub next_token: Option<String>,
}
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.resource_collection_type: Option<ResourceCollectionType>
The type of Amazon Web Services resource collections to return. The one valid value is CLOUD_FORMATION
for Amazon Web Services CloudFormation stacks.
next_token: Option<String>
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
Implementations§
source§impl GetResourceCollectionInput
impl GetResourceCollectionInput
sourcepub fn resource_collection_type(&self) -> Option<&ResourceCollectionType>
pub fn resource_collection_type(&self) -> Option<&ResourceCollectionType>
The type of Amazon Web Services resource collections to return. The one valid value is CLOUD_FORMATION
for Amazon Web Services CloudFormation stacks.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
source§impl GetResourceCollectionInput
impl GetResourceCollectionInput
sourcepub fn builder() -> GetResourceCollectionInputBuilder
pub fn builder() -> GetResourceCollectionInputBuilder
Creates a new builder-style object to manufacture GetResourceCollectionInput
.
Trait Implementations§
source§impl Clone for GetResourceCollectionInput
impl Clone for GetResourceCollectionInput
source§fn clone(&self) -> GetResourceCollectionInput
fn clone(&self) -> GetResourceCollectionInput
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 GetResourceCollectionInput
impl Debug for GetResourceCollectionInput
source§impl PartialEq for GetResourceCollectionInput
impl PartialEq for GetResourceCollectionInput
source§fn eq(&self, other: &GetResourceCollectionInput) -> bool
fn eq(&self, other: &GetResourceCollectionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetResourceCollectionInput
Auto Trait Implementations§
impl RefUnwindSafe for GetResourceCollectionInput
impl Send for GetResourceCollectionInput
impl Sync for GetResourceCollectionInput
impl Unpin for GetResourceCollectionInput
impl UnwindSafe for GetResourceCollectionInput
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
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>
Creates a shared type from an unshared type.