Struct aws_sdk_directory::operation::describe_client_authentication_settings::builders::DescribeClientAuthenticationSettingsInputBuilder
source · #[non_exhaustive]pub struct DescribeClientAuthenticationSettingsInputBuilder { /* private fields */ }Expand description
A builder for DescribeClientAuthenticationSettingsInput.
Implementations§
source§impl DescribeClientAuthenticationSettingsInputBuilder
impl DescribeClientAuthenticationSettingsInputBuilder
sourcepub fn directory_id(self, input: impl Into<String>) -> Self
pub fn directory_id(self, input: impl Into<String>) -> Self
The identifier of the directory for which to retrieve information.
This field is required.sourcepub fn set_directory_id(self, input: Option<String>) -> Self
pub fn set_directory_id(self, input: Option<String>) -> Self
The identifier of the directory for which to retrieve information.
sourcepub fn get_directory_id(&self) -> &Option<String>
pub fn get_directory_id(&self) -> &Option<String>
The identifier of the directory for which to retrieve information.
sourcepub fn type(self, input: ClientAuthenticationType) -> Self
pub fn type(self, input: ClientAuthenticationType) -> Self
The type of client authentication for which to retrieve information. If no type is specified, a list of all client authentication types that are supported for the specified directory is retrieved.
sourcepub fn set_type(self, input: Option<ClientAuthenticationType>) -> Self
pub fn set_type(self, input: Option<ClientAuthenticationType>) -> Self
The type of client authentication for which to retrieve information. If no type is specified, a list of all client authentication types that are supported for the specified directory is retrieved.
sourcepub fn get_type(&self) -> &Option<ClientAuthenticationType>
pub fn get_type(&self) -> &Option<ClientAuthenticationType>
The type of client authentication for which to retrieve information. If no type is specified, a list of all client authentication types that are supported for the specified directory is retrieved.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The DescribeClientAuthenticationSettingsResult.NextToken value from a previous call to DescribeClientAuthenticationSettings. Pass null if this is the first call.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The DescribeClientAuthenticationSettingsResult.NextToken value from a previous call to DescribeClientAuthenticationSettings. Pass null if this is the first call.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The DescribeClientAuthenticationSettingsResult.NextToken value from a previous call to DescribeClientAuthenticationSettings. Pass null if this is the first call.
sourcepub fn limit(self, input: i32) -> Self
pub fn limit(self, input: i32) -> Self
The maximum number of items to return. If this value is zero, the maximum number of items is specified by the limitations of the operation.
sourcepub fn set_limit(self, input: Option<i32>) -> Self
pub fn set_limit(self, input: Option<i32>) -> Self
The maximum number of items to return. If this value is zero, the maximum number of items is specified by the limitations of the operation.
sourcepub fn get_limit(&self) -> &Option<i32>
pub fn get_limit(&self) -> &Option<i32>
The maximum number of items to return. If this value is zero, the maximum number of items is specified by the limitations of the operation.
sourcepub fn build(
self,
) -> Result<DescribeClientAuthenticationSettingsInput, BuildError>
pub fn build( self, ) -> Result<DescribeClientAuthenticationSettingsInput, BuildError>
Consumes the builder and constructs a DescribeClientAuthenticationSettingsInput.
source§impl DescribeClientAuthenticationSettingsInputBuilder
impl DescribeClientAuthenticationSettingsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeClientAuthenticationSettingsOutput, SdkError<DescribeClientAuthenticationSettingsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeClientAuthenticationSettingsOutput, SdkError<DescribeClientAuthenticationSettingsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeClientAuthenticationSettingsInputBuilder
impl Clone for DescribeClientAuthenticationSettingsInputBuilder
source§fn clone(&self) -> DescribeClientAuthenticationSettingsInputBuilder
fn clone(&self) -> DescribeClientAuthenticationSettingsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeClientAuthenticationSettingsInputBuilder
impl Default for DescribeClientAuthenticationSettingsInputBuilder
source§fn default() -> DescribeClientAuthenticationSettingsInputBuilder
fn default() -> DescribeClientAuthenticationSettingsInputBuilder
source§impl PartialEq for DescribeClientAuthenticationSettingsInputBuilder
impl PartialEq for DescribeClientAuthenticationSettingsInputBuilder
source§fn eq(&self, other: &DescribeClientAuthenticationSettingsInputBuilder) -> bool
fn eq(&self, other: &DescribeClientAuthenticationSettingsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeClientAuthenticationSettingsInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeClientAuthenticationSettingsInputBuilder
impl RefUnwindSafe for DescribeClientAuthenticationSettingsInputBuilder
impl Send for DescribeClientAuthenticationSettingsInputBuilder
impl Sync for DescribeClientAuthenticationSettingsInputBuilder
impl Unpin for DescribeClientAuthenticationSettingsInputBuilder
impl UnwindSafe for DescribeClientAuthenticationSettingsInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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