Struct aws_sdk_ssoadmin::operation::list_application_assignments::builders::ListApplicationAssignmentsFluentBuilder
source · pub struct ListApplicationAssignmentsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to ListApplicationAssignments
.
Lists Amazon Web Services account users that are assigned to an application.
Implementations§
source§impl ListApplicationAssignmentsFluentBuilder
impl ListApplicationAssignmentsFluentBuilder
sourcepub fn as_input(&self) -> &ListApplicationAssignmentsInputBuilder
pub fn as_input(&self) -> &ListApplicationAssignmentsInputBuilder
Access the ListApplicationAssignments as a reference.
sourcepub async fn send(
self
) -> Result<ListApplicationAssignmentsOutput, SdkError<ListApplicationAssignmentsError, HttpResponse>>
pub async fn send( self ) -> Result<ListApplicationAssignmentsOutput, SdkError<ListApplicationAssignmentsError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<ListApplicationAssignmentsOutput, ListApplicationAssignmentsError, Self>
pub fn customize( self ) -> CustomizableOperation<ListApplicationAssignmentsOutput, ListApplicationAssignmentsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn into_paginator(self) -> ListApplicationAssignmentsPaginator
pub fn into_paginator(self) -> ListApplicationAssignmentsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a PaginationStream
.
sourcepub fn application_arn(self, input: impl Into<String>) -> Self
pub fn application_arn(self, input: impl Into<String>) -> Self
Specifies the ARN of the application.
sourcepub fn set_application_arn(self, input: Option<String>) -> Self
pub fn set_application_arn(self, input: Option<String>) -> Self
Specifies the ARN of the application.
sourcepub fn get_application_arn(&self) -> &Option<String>
pub fn get_application_arn(&self) -> &Option<String>
Specifies the ARN of the application.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
Specifies the total number of results that you want included in each response. If additional items exist beyond the number you specify, the NextToken
response element is returned with a value (not null). Include the specified value as the NextToken
request parameter in the next call to the operation to get the next set of results. Note that the service might return fewer results than the maximum even when there are more results available. You should check NextToken
after every operation to ensure that you receive all of the results.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
Specifies the total number of results that you want included in each response. If additional items exist beyond the number you specify, the NextToken
response element is returned with a value (not null). Include the specified value as the NextToken
request parameter in the next call to the operation to get the next set of results. Note that the service might return fewer results than the maximum even when there are more results available. You should check NextToken
after every operation to ensure that you receive all of the results.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
Specifies the total number of results that you want included in each response. If additional items exist beyond the number you specify, the NextToken
response element is returned with a value (not null). Include the specified value as the NextToken
request parameter in the next call to the operation to get the next set of results. Note that the service might return fewer results than the maximum even when there are more results available. You should check NextToken
after every operation to ensure that you receive all of the results.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Specifies that you want to receive the next page of results. Valid only if you received a NextToken
response in the previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous call's NextToken
response to request the next page of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Specifies that you want to receive the next page of results. Valid only if you received a NextToken
response in the previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous call's NextToken
response to request the next page of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
Specifies that you want to receive the next page of results. Valid only if you received a NextToken
response in the previous request. If you did, it indicates that more output is available. Set this parameter to the value provided by the previous call's NextToken
response to request the next page of results.
Trait Implementations§
source§impl Clone for ListApplicationAssignmentsFluentBuilder
impl Clone for ListApplicationAssignmentsFluentBuilder
source§fn clone(&self) -> ListApplicationAssignmentsFluentBuilder
fn clone(&self) -> ListApplicationAssignmentsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more