Struct aws_sdk_verifiedpermissions::operation::list_identity_sources::builders::ListIdentitySourcesFluentBuilder
source · pub struct ListIdentitySourcesFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to ListIdentitySources.
Returns a paginated list of all of the identity sources defined in the specified policy store.
Implementations§
source§impl ListIdentitySourcesFluentBuilder
impl ListIdentitySourcesFluentBuilder
sourcepub fn as_input(&self) -> &ListIdentitySourcesInputBuilder
pub fn as_input(&self) -> &ListIdentitySourcesInputBuilder
Access the ListIdentitySources as a reference.
sourcepub async fn send(
self
) -> Result<ListIdentitySourcesOutput, SdkError<ListIdentitySourcesError, HttpResponse>>
pub async fn send( self ) -> Result<ListIdentitySourcesOutput, SdkError<ListIdentitySourcesError, 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<ListIdentitySourcesOutput, ListIdentitySourcesError, Self>
pub fn customize( self ) -> CustomizableOperation<ListIdentitySourcesOutput, ListIdentitySourcesError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn into_paginator(self) -> ListIdentitySourcesPaginator
pub fn into_paginator(self) -> ListIdentitySourcesPaginator
Create a paginator for this request
Paginators are used by calling send().await which returns a PaginationStream.
sourcepub fn policy_store_id(self, input: impl Into<String>) -> Self
pub fn policy_store_id(self, input: impl Into<String>) -> Self
Specifies the ID of the policy store that contains the identity sources that you want to list.
sourcepub fn set_policy_store_id(self, input: Option<String>) -> Self
pub fn set_policy_store_id(self, input: Option<String>) -> Self
Specifies the ID of the policy store that contains the identity sources that you want to list.
sourcepub fn get_policy_store_id(&self) -> &Option<String>
pub fn get_policy_store_id(&self) -> &Option<String>
Specifies the ID of the policy store that contains the identity sources that you want to list.
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.
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.
If you do not specify this parameter, the operation defaults to 10 identity sources per response. You can specify a maximum of 200 identity sources per response.
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.
If you do not specify this parameter, the operation defaults to 10 identity sources per response. You can specify a maximum of 200 identity sources per response.
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.
If you do not specify this parameter, the operation defaults to 10 identity sources per response. You can specify a maximum of 200 identity sources per response.
sourcepub fn filters(self, input: IdentitySourceFilter) -> Self
pub fn filters(self, input: IdentitySourceFilter) -> Self
Appends an item to filters.
To override the contents of this collection use set_filters.
Specifies characteristics of an identity source that you can use to limit the output to matching identity sources.
sourcepub fn set_filters(self, input: Option<Vec<IdentitySourceFilter>>) -> Self
pub fn set_filters(self, input: Option<Vec<IdentitySourceFilter>>) -> Self
Specifies characteristics of an identity source that you can use to limit the output to matching identity sources.
sourcepub fn get_filters(&self) -> &Option<Vec<IdentitySourceFilter>>
pub fn get_filters(&self) -> &Option<Vec<IdentitySourceFilter>>
Specifies characteristics of an identity source that you can use to limit the output to matching identity sources.
Trait Implementations§
source§impl Clone for ListIdentitySourcesFluentBuilder
impl Clone for ListIdentitySourcesFluentBuilder
source§fn clone(&self) -> ListIdentitySourcesFluentBuilder
fn clone(&self) -> ListIdentitySourcesFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more