Struct aws_sdk_ssoadmin::operation::list_application_authentication_methods::builders::ListApplicationAuthenticationMethodsOutputBuilder
source · #[non_exhaustive]pub struct ListApplicationAuthenticationMethodsOutputBuilder { /* private fields */ }Expand description
A builder for ListApplicationAuthenticationMethodsOutput.
Implementations§
source§impl ListApplicationAuthenticationMethodsOutputBuilder
impl ListApplicationAuthenticationMethodsOutputBuilder
sourcepub fn authentication_methods(self, input: AuthenticationMethodItem) -> Self
pub fn authentication_methods(self, input: AuthenticationMethodItem) -> Self
Appends an item to authentication_methods.
To override the contents of this collection use set_authentication_methods.
An array list of authentication methods for the specified application.
sourcepub fn set_authentication_methods(
self,
input: Option<Vec<AuthenticationMethodItem>>,
) -> Self
pub fn set_authentication_methods( self, input: Option<Vec<AuthenticationMethodItem>>, ) -> Self
An array list of authentication methods for the specified application.
sourcepub fn get_authentication_methods(
&self,
) -> &Option<Vec<AuthenticationMethodItem>>
pub fn get_authentication_methods( &self, ) -> &Option<Vec<AuthenticationMethodItem>>
An array list of authentication methods for the specified application.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If present, this value indicates that more output is available than is included in the current response. Use this value in the NextToken request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the NextToken response element comes back as null. This indicates that this is the last page of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If present, this value indicates that more output is available than is included in the current response. Use this value in the NextToken request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the NextToken response element comes back as null. This indicates that this is the last page of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If present, this value indicates that more output is available than is included in the current response. Use this value in the NextToken request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the NextToken response element comes back as null. This indicates that this is the last page of results.
sourcepub fn build(self) -> ListApplicationAuthenticationMethodsOutput
pub fn build(self) -> ListApplicationAuthenticationMethodsOutput
Consumes the builder and constructs a ListApplicationAuthenticationMethodsOutput.
Trait Implementations§
source§impl Clone for ListApplicationAuthenticationMethodsOutputBuilder
impl Clone for ListApplicationAuthenticationMethodsOutputBuilder
source§fn clone(&self) -> ListApplicationAuthenticationMethodsOutputBuilder
fn clone(&self) -> ListApplicationAuthenticationMethodsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListApplicationAuthenticationMethodsOutputBuilder
impl Default for ListApplicationAuthenticationMethodsOutputBuilder
source§fn default() -> ListApplicationAuthenticationMethodsOutputBuilder
fn default() -> ListApplicationAuthenticationMethodsOutputBuilder
source§impl PartialEq for ListApplicationAuthenticationMethodsOutputBuilder
impl PartialEq for ListApplicationAuthenticationMethodsOutputBuilder
source§fn eq(&self, other: &ListApplicationAuthenticationMethodsOutputBuilder) -> bool
fn eq(&self, other: &ListApplicationAuthenticationMethodsOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListApplicationAuthenticationMethodsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListApplicationAuthenticationMethodsOutputBuilder
impl RefUnwindSafe for ListApplicationAuthenticationMethodsOutputBuilder
impl Send for ListApplicationAuthenticationMethodsOutputBuilder
impl Sync for ListApplicationAuthenticationMethodsOutputBuilder
impl Unpin for ListApplicationAuthenticationMethodsOutputBuilder
impl UnwindSafe for ListApplicationAuthenticationMethodsOutputBuilder
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