#[non_exhaustive]pub struct ListResourceRequestsInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub resource_request_status_filter: Option<ResourceRequestStatusFilter>,
}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.max_results: Option<i32>The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a NextToken value that you can assign to the NextToken request parameter to get the next set of results.
The default is 20.
next_token: Option<String>If the previous paginated request didn't return all of the remaining results, the response object's NextToken parameter value is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
resource_request_status_filter: Option<ResourceRequestStatusFilter>The filter criteria to apply to the requests returned.
Implementations§
source§impl ListResourceRequestsInput
impl ListResourceRequestsInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a NextToken value that you can assign to the NextToken request parameter to get the next set of results.
The default is 20.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the previous paginated request didn't return all of the remaining results, the response object's NextToken parameter value is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's NextToken parameter. If there are no remaining results, the previous response object's NextToken parameter is set to null.
sourcepub fn resource_request_status_filter(
&self,
) -> Option<&ResourceRequestStatusFilter>
pub fn resource_request_status_filter( &self, ) -> Option<&ResourceRequestStatusFilter>
The filter criteria to apply to the requests returned.
source§impl ListResourceRequestsInput
impl ListResourceRequestsInput
sourcepub fn builder() -> ListResourceRequestsInputBuilder
pub fn builder() -> ListResourceRequestsInputBuilder
Creates a new builder-style object to manufacture ListResourceRequestsInput.
Trait Implementations§
source§impl Clone for ListResourceRequestsInput
impl Clone for ListResourceRequestsInput
source§fn clone(&self) -> ListResourceRequestsInput
fn clone(&self) -> ListResourceRequestsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListResourceRequestsInput
impl Debug for ListResourceRequestsInput
source§impl PartialEq for ListResourceRequestsInput
impl PartialEq for ListResourceRequestsInput
source§fn eq(&self, other: &ListResourceRequestsInput) -> bool
fn eq(&self, other: &ListResourceRequestsInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListResourceRequestsInput
Auto Trait Implementations§
impl Freeze for ListResourceRequestsInput
impl RefUnwindSafe for ListResourceRequestsInput
impl Send for ListResourceRequestsInput
impl Sync for ListResourceRequestsInput
impl Unpin for ListResourceRequestsInput
impl UnwindSafe for ListResourceRequestsInput
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