Struct aws_sdk_devopsguru::operation::get_resource_collection::builders::GetResourceCollectionOutputBuilder
source · #[non_exhaustive]pub struct GetResourceCollectionOutputBuilder { /* private fields */ }
Expand description
A builder for GetResourceCollectionOutput
.
Implementations§
source§impl GetResourceCollectionOutputBuilder
impl GetResourceCollectionOutputBuilder
sourcepub fn resource_collection(self, input: ResourceCollectionFilter) -> Self
pub fn resource_collection(self, input: ResourceCollectionFilter) -> Self
The requested list of Amazon Web Services resource collections. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag key. You can specify up to 500 Amazon Web Services CloudFormation stacks.
sourcepub fn set_resource_collection(
self,
input: Option<ResourceCollectionFilter>,
) -> Self
pub fn set_resource_collection( self, input: Option<ResourceCollectionFilter>, ) -> Self
The requested list of Amazon Web Services resource collections. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag key. You can specify up to 500 Amazon Web Services CloudFormation stacks.
sourcepub fn get_resource_collection(&self) -> &Option<ResourceCollectionFilter>
pub fn get_resource_collection(&self) -> &Option<ResourceCollectionFilter>
The requested list of Amazon Web Services resource collections. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag key. You can specify up to 500 Amazon Web Services CloudFormation stacks.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
sourcepub fn build(self) -> GetResourceCollectionOutput
pub fn build(self) -> GetResourceCollectionOutput
Consumes the builder and constructs a GetResourceCollectionOutput
.
Trait Implementations§
source§impl Clone for GetResourceCollectionOutputBuilder
impl Clone for GetResourceCollectionOutputBuilder
source§fn clone(&self) -> GetResourceCollectionOutputBuilder
fn clone(&self) -> GetResourceCollectionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetResourceCollectionOutputBuilder
impl Default for GetResourceCollectionOutputBuilder
source§fn default() -> GetResourceCollectionOutputBuilder
fn default() -> GetResourceCollectionOutputBuilder
source§impl PartialEq for GetResourceCollectionOutputBuilder
impl PartialEq for GetResourceCollectionOutputBuilder
source§fn eq(&self, other: &GetResourceCollectionOutputBuilder) -> bool
fn eq(&self, other: &GetResourceCollectionOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetResourceCollectionOutputBuilder
Auto Trait Implementations§
impl Freeze for GetResourceCollectionOutputBuilder
impl RefUnwindSafe for GetResourceCollectionOutputBuilder
impl Send for GetResourceCollectionOutputBuilder
impl Sync for GetResourceCollectionOutputBuilder
impl Unpin for GetResourceCollectionOutputBuilder
impl UnwindSafe for GetResourceCollectionOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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