#[non_exhaustive]pub struct LogoutInputBuilder { /* private fields */ }
Expand description
A builder for LogoutInput
.
Implementations§
Source§impl LogoutInputBuilder
impl LogoutInputBuilder
Sourcepub fn access_token(self, input: impl Into<String>) -> Self
pub fn access_token(self, input: impl Into<String>) -> Self
The token issued by the CreateToken
API call. For more information, see CreateToken in the IAM Identity Center OIDC API Reference Guide.
Sourcepub fn set_access_token(self, input: Option<String>) -> Self
pub fn set_access_token(self, input: Option<String>) -> Self
The token issued by the CreateToken
API call. For more information, see CreateToken in the IAM Identity Center OIDC API Reference Guide.
Sourcepub fn get_access_token(&self) -> &Option<String>
pub fn get_access_token(&self) -> &Option<String>
The token issued by the CreateToken
API call. For more information, see CreateToken in the IAM Identity Center OIDC API Reference Guide.
Sourcepub fn build(self) -> Result<LogoutInput, BuildError>
pub fn build(self) -> Result<LogoutInput, BuildError>
Consumes the builder and constructs a LogoutInput
.
Source§impl LogoutInputBuilder
impl LogoutInputBuilder
Sourcepub async fn send_with(
self,
client: &Client,
) -> Result<LogoutOutput, SdkError<LogoutError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<LogoutOutput, SdkError<LogoutError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
Source§impl Clone for LogoutInputBuilder
impl Clone for LogoutInputBuilder
Source§fn clone(&self) -> LogoutInputBuilder
fn clone(&self) -> LogoutInputBuilder
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LogoutInputBuilder
impl Debug for LogoutInputBuilder
Source§impl Default for LogoutInputBuilder
impl Default for LogoutInputBuilder
Source§fn default() -> LogoutInputBuilder
fn default() -> LogoutInputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for LogoutInputBuilder
impl PartialEq for LogoutInputBuilder
impl StructuralPartialEq for LogoutInputBuilder
Auto Trait Implementations§
impl Freeze for LogoutInputBuilder
impl RefUnwindSafe for LogoutInputBuilder
impl Send for LogoutInputBuilder
impl Sync for LogoutInputBuilder
impl Unpin for LogoutInputBuilder
impl UnwindSafe for LogoutInputBuilder
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Creates a shared type from an unshared type.