#[non_exhaustive]pub struct StartDeviceAuthorizationOutput {
pub device_code: Option<String>,
pub user_code: Option<String>,
pub verification_uri: Option<String>,
pub verification_uri_complete: Option<String>,
pub expires_in: i32,
pub interval: i32,
/* private fields */
}
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.device_code: Option<String>
The short-lived code that is used by the device when polling for a session token.
user_code: Option<String>
A one-time user verification code. This is needed to authorize an in-use device.
verification_uri: Option<String>
The URI of the verification page that takes the userCode
to authorize the device.
verification_uri_complete: Option<String>
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.
expires_in: i32
Indicates the number of seconds in which the verification code will become invalid.
interval: i32
Indicates the number of seconds the client must wait between attempts when polling for a session.
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
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl PartialEq for StartDeviceAuthorizationOutput
impl PartialEq for StartDeviceAuthorizationOutput
Source§fn eq(&self, other: &StartDeviceAuthorizationOutput) -> bool
fn eq(&self, other: &StartDeviceAuthorizationOutput) -> bool
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>
None
if the service could not be reached.