#[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 ==
.