[][src]Struct rusoto_sagemaker::OidcConfig

pub struct OidcConfig {
    pub authorization_endpoint: String,
    pub client_id: String,
    pub client_secret: String,
    pub issuer: String,
    pub jwks_uri: String,
    pub logout_endpoint: String,
    pub token_endpoint: String,
    pub user_info_endpoint: String,
}

Use this parameter to configure your OIDC Identity Provider (IdP).

Fields

authorization_endpoint: String

The OIDC IdP authorization endpoint used to configure your private workforce.

client_id: String

The OIDC IdP client ID used to configure your private workforce.

client_secret: String

The OIDC IdP client secret used to configure your private workforce.

issuer: String

The OIDC IdP issuer used to configure your private workforce.

jwks_uri: String

The OIDC IdP JSON Web Key Set (Jwks) URI used to configure your private workforce.

logout_endpoint: String

The OIDC IdP logout endpoint used to configure your private workforce.

token_endpoint: String

The OIDC IdP token endpoint used to configure your private workforce.

user_info_endpoint: String

The OIDC IdP user information endpoint used to configure your private workforce.

Trait Implementations

impl Clone for OidcConfig[src]

impl Debug for OidcConfig[src]

impl Default for OidcConfig[src]

impl PartialEq<OidcConfig> for OidcConfig[src]

impl Serialize for OidcConfig[src]

impl StructuralPartialEq for OidcConfig[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> Instrument 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.