#[non_exhaustive]pub struct CreateVerifiedAccessTrustProviderOidcOptionsBuilder { /* private fields */ }
Expand description
A builder for CreateVerifiedAccessTrustProviderOidcOptions
.
Implementations§
source§impl CreateVerifiedAccessTrustProviderOidcOptionsBuilder
impl CreateVerifiedAccessTrustProviderOidcOptionsBuilder
sourcepub fn set_issuer(self, input: Option<String>) -> Self
pub fn set_issuer(self, input: Option<String>) -> Self
The OIDC issuer.
sourcepub fn get_issuer(&self) -> &Option<String>
pub fn get_issuer(&self) -> &Option<String>
The OIDC issuer.
The OIDC authorization endpoint.
The OIDC authorization endpoint.
The OIDC authorization endpoint.
sourcepub fn token_endpoint(self, input: impl Into<String>) -> Self
pub fn token_endpoint(self, input: impl Into<String>) -> Self
The OIDC token endpoint.
sourcepub fn set_token_endpoint(self, input: Option<String>) -> Self
pub fn set_token_endpoint(self, input: Option<String>) -> Self
The OIDC token endpoint.
sourcepub fn get_token_endpoint(&self) -> &Option<String>
pub fn get_token_endpoint(&self) -> &Option<String>
The OIDC token endpoint.
sourcepub fn user_info_endpoint(self, input: impl Into<String>) -> Self
pub fn user_info_endpoint(self, input: impl Into<String>) -> Self
The OIDC user info endpoint.
sourcepub fn set_user_info_endpoint(self, input: Option<String>) -> Self
pub fn set_user_info_endpoint(self, input: Option<String>) -> Self
The OIDC user info endpoint.
sourcepub fn get_user_info_endpoint(&self) -> &Option<String>
pub fn get_user_info_endpoint(&self) -> &Option<String>
The OIDC user info endpoint.
sourcepub fn set_client_id(self, input: Option<String>) -> Self
pub fn set_client_id(self, input: Option<String>) -> Self
The client identifier.
sourcepub fn get_client_id(&self) -> &Option<String>
pub fn get_client_id(&self) -> &Option<String>
The client identifier.
sourcepub fn client_secret(self, input: impl Into<String>) -> Self
pub fn client_secret(self, input: impl Into<String>) -> Self
The client secret.
sourcepub fn set_client_secret(self, input: Option<String>) -> Self
pub fn set_client_secret(self, input: Option<String>) -> Self
The client secret.
sourcepub fn get_client_secret(&self) -> &Option<String>
pub fn get_client_secret(&self) -> &Option<String>
The client secret.
sourcepub fn scope(self, input: impl Into<String>) -> Self
pub fn scope(self, input: impl Into<String>) -> Self
OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user's details. Each scope returns a specific set of user attributes.
sourcepub fn set_scope(self, input: Option<String>) -> Self
pub fn set_scope(self, input: Option<String>) -> Self
OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user's details. Each scope returns a specific set of user attributes.
sourcepub fn get_scope(&self) -> &Option<String>
pub fn get_scope(&self) -> &Option<String>
OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to a user's details. Each scope returns a specific set of user attributes.
sourcepub fn build(self) -> CreateVerifiedAccessTrustProviderOidcOptions
pub fn build(self) -> CreateVerifiedAccessTrustProviderOidcOptions
Consumes the builder and constructs a CreateVerifiedAccessTrustProviderOidcOptions
.
Trait Implementations§
source§impl Clone for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
impl Clone for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
source§fn clone(&self) -> CreateVerifiedAccessTrustProviderOidcOptionsBuilder
fn clone(&self) -> CreateVerifiedAccessTrustProviderOidcOptionsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
impl Default for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
source§fn default() -> CreateVerifiedAccessTrustProviderOidcOptionsBuilder
fn default() -> CreateVerifiedAccessTrustProviderOidcOptionsBuilder
source§impl PartialEq for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
impl PartialEq for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
source§fn eq(
&self,
other: &CreateVerifiedAccessTrustProviderOidcOptionsBuilder,
) -> bool
fn eq( &self, other: &CreateVerifiedAccessTrustProviderOidcOptionsBuilder, ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
Auto Trait Implementations§
impl Freeze for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
impl RefUnwindSafe for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
impl Send for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
impl Sync for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
impl Unpin for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
impl UnwindSafe for CreateVerifiedAccessTrustProviderOidcOptionsBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more