Struct aws_sdk_verifiedpermissions::operation::list_identity_sources::ListIdentitySourcesInput
source · #[non_exhaustive]pub struct ListIdentitySourcesInput {
pub policy_store_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub filters: Option<Vec<IdentitySourceFilter>>,
}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.policy_store_id: Option<String>Specifies the ID of the policy store that contains the identity sources that you want to list.
next_token: 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.
max_results: 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.
filters: Option<Vec<IdentitySourceFilter>>Specifies characteristics of an identity source that you can use to limit the output to matching identity sources.
Implementations§
source§impl ListIdentitySourcesInput
impl ListIdentitySourcesInput
sourcepub fn policy_store_id(&self) -> Option<&str>
pub fn policy_store_id(&self) -> Option<&str>
Specifies the ID of the policy store that contains the identity sources that you want to list.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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) -> Option<i32>
pub fn 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) -> &[IdentitySourceFilter]
pub fn filters(&self) -> &[IdentitySourceFilter]
Specifies characteristics of an identity source that you can use to limit the output to matching identity sources.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none().
source§impl ListIdentitySourcesInput
impl ListIdentitySourcesInput
sourcepub fn builder() -> ListIdentitySourcesInputBuilder
pub fn builder() -> ListIdentitySourcesInputBuilder
Creates a new builder-style object to manufacture ListIdentitySourcesInput.
Trait Implementations§
source§impl Clone for ListIdentitySourcesInput
impl Clone for ListIdentitySourcesInput
source§fn clone(&self) -> ListIdentitySourcesInput
fn clone(&self) -> ListIdentitySourcesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListIdentitySourcesInput
impl Debug for ListIdentitySourcesInput
source§impl PartialEq for ListIdentitySourcesInput
impl PartialEq for ListIdentitySourcesInput
source§fn eq(&self, other: &ListIdentitySourcesInput) -> bool
fn eq(&self, other: &ListIdentitySourcesInput) -> bool
self and other values to be equal, and is used
by ==.