Struct aws_sdk_ssooidc::operation::start_device_authorization::StartDeviceAuthorizationOutput
source · #[non_exhaustive]pub struct StartDeviceAuthorizationOutput { /* private fields */ }
Implementations§
source§impl StartDeviceAuthorizationOutput
impl StartDeviceAuthorizationOutput
sourcepub fn device_code(&self) -> Option<&str>
pub fn device_code(&self) -> Option<&str>
The short-lived code that is used by the device when polling for a session token.
sourcepub fn user_code(&self) -> Option<&str>
pub fn user_code(&self) -> Option<&str>
A one-time user verification code. This is needed to authorize an in-use device.
sourcepub fn verification_uri(&self) -> Option<&str>
pub fn verification_uri(&self) -> Option<&str>
The URI of the verification page that takes the userCode
to authorize the device.
sourcepub fn verification_uri_complete(&self) -> Option<&str>
pub fn verification_uri_complete(&self) -> Option<&str>
An alternate URL that the client can use to automatically launch a browser. This process skips the manual step in which the user visits the verification page and enters their code.
sourcepub fn expires_in(&self) -> i32
pub fn expires_in(&self) -> i32
Indicates the number of seconds in which the verification code will become invalid.
source§impl StartDeviceAuthorizationOutput
impl StartDeviceAuthorizationOutput
sourcepub fn builder() -> StartDeviceAuthorizationOutputBuilder
pub fn builder() -> StartDeviceAuthorizationOutputBuilder
Creates a new builder-style object to manufacture StartDeviceAuthorizationOutput
.
Trait Implementations§
source§impl Clone for StartDeviceAuthorizationOutput
impl Clone for StartDeviceAuthorizationOutput
source§fn clone(&self) -> StartDeviceAuthorizationOutput
fn clone(&self) -> StartDeviceAuthorizationOutput
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 PartialEq<StartDeviceAuthorizationOutput> for StartDeviceAuthorizationOutput
impl PartialEq<StartDeviceAuthorizationOutput> for StartDeviceAuthorizationOutput
source§fn eq(&self, other: &StartDeviceAuthorizationOutput) -> bool
fn eq(&self, other: &StartDeviceAuthorizationOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for StartDeviceAuthorizationOutput
impl RequestId for StartDeviceAuthorizationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for StartDeviceAuthorizationOutput
Auto Trait Implementations§
impl RefUnwindSafe for StartDeviceAuthorizationOutput
impl Send for StartDeviceAuthorizationOutput
impl Sync for StartDeviceAuthorizationOutput
impl Unpin for StartDeviceAuthorizationOutput
impl UnwindSafe for StartDeviceAuthorizationOutput
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