[][src]Struct rusoto_sso_oidc::StartDeviceAuthorizationRequest

pub struct StartDeviceAuthorizationRequest {
    pub client_id: String,
    pub client_secret: String,
    pub start_url: String,
}

Fields

client_id: String

The unique identifier string for the client that is registered with AWS SSO. This value should come from the persisted result of the RegisterClient API operation.

client_secret: String

A secret string that is generated for the client. This value should come from the persisted result of the RegisterClient API operation.

start_url: String

The URL for the AWS SSO user portal. For more information, see Using the User Portal in the AWS Single Sign-On User Guide.

Trait Implementations

impl Clone for StartDeviceAuthorizationRequest[src]

impl Debug for StartDeviceAuthorizationRequest[src]

impl Default for StartDeviceAuthorizationRequest[src]

impl PartialEq<StartDeviceAuthorizationRequest> for StartDeviceAuthorizationRequest[src]

impl Serialize for StartDeviceAuthorizationRequest[src]

impl StructuralPartialEq for StartDeviceAuthorizationRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.