Struct aws_sdk_sagemaker::types::builders::OidcConfigBuilder
source · #[non_exhaustive]pub struct OidcConfigBuilder { /* private fields */ }
Expand description
A builder for OidcConfig
.
Implementations§
source§impl OidcConfigBuilder
impl OidcConfigBuilder
sourcepub fn client_id(self, input: impl Into<String>) -> Self
pub fn client_id(self, input: impl Into<String>) -> Self
The OIDC IdP client ID used to configure your private workforce.
This field is required.sourcepub fn set_client_id(self, input: Option<String>) -> Self
pub fn set_client_id(self, input: Option<String>) -> Self
The OIDC IdP client ID used to configure your private workforce.
sourcepub fn get_client_id(&self) -> &Option<String>
pub fn get_client_id(&self) -> &Option<String>
The OIDC IdP client ID used to configure your private workforce.
sourcepub fn client_secret(self, input: impl Into<String>) -> Self
pub fn client_secret(self, input: impl Into<String>) -> Self
The OIDC IdP client secret used to configure your private workforce.
This field is required.sourcepub fn set_client_secret(self, input: Option<String>) -> Self
pub fn set_client_secret(self, input: Option<String>) -> Self
The OIDC IdP client secret used to configure your private workforce.
sourcepub fn get_client_secret(&self) -> &Option<String>
pub fn get_client_secret(&self) -> &Option<String>
The OIDC IdP client secret used to configure your private workforce.
sourcepub fn issuer(self, input: impl Into<String>) -> Self
pub fn issuer(self, input: impl Into<String>) -> Self
The OIDC IdP issuer used to configure your private workforce.
This field is required.sourcepub fn set_issuer(self, input: Option<String>) -> Self
pub fn set_issuer(self, input: Option<String>) -> Self
The OIDC IdP issuer used to configure your private workforce.
sourcepub fn get_issuer(&self) -> &Option<String>
pub fn get_issuer(&self) -> &Option<String>
The OIDC IdP issuer used to configure your private workforce.
The OIDC IdP authorization endpoint used to configure your private workforce.
This field is required.The OIDC IdP authorization endpoint used to configure your private workforce.
The OIDC IdP authorization endpoint used to configure your private workforce.
sourcepub fn token_endpoint(self, input: impl Into<String>) -> Self
pub fn token_endpoint(self, input: impl Into<String>) -> Self
The OIDC IdP token endpoint used to configure your private workforce.
This field is required.sourcepub fn set_token_endpoint(self, input: Option<String>) -> Self
pub fn set_token_endpoint(self, input: Option<String>) -> Self
The OIDC IdP token endpoint used to configure your private workforce.
sourcepub fn get_token_endpoint(&self) -> &Option<String>
pub fn get_token_endpoint(&self) -> &Option<String>
The OIDC IdP token endpoint used to configure your private workforce.
sourcepub fn user_info_endpoint(self, input: impl Into<String>) -> Self
pub fn user_info_endpoint(self, input: impl Into<String>) -> Self
The OIDC IdP user information endpoint used to configure your private workforce.
This field is required.sourcepub fn set_user_info_endpoint(self, input: Option<String>) -> Self
pub fn set_user_info_endpoint(self, input: Option<String>) -> Self
The OIDC IdP user information endpoint used to configure your private workforce.
sourcepub fn get_user_info_endpoint(&self) -> &Option<String>
pub fn get_user_info_endpoint(&self) -> &Option<String>
The OIDC IdP user information endpoint used to configure your private workforce.
sourcepub fn logout_endpoint(self, input: impl Into<String>) -> Self
pub fn logout_endpoint(self, input: impl Into<String>) -> Self
The OIDC IdP logout endpoint used to configure your private workforce.
This field is required.sourcepub fn set_logout_endpoint(self, input: Option<String>) -> Self
pub fn set_logout_endpoint(self, input: Option<String>) -> Self
The OIDC IdP logout endpoint used to configure your private workforce.
sourcepub fn get_logout_endpoint(&self) -> &Option<String>
pub fn get_logout_endpoint(&self) -> &Option<String>
The OIDC IdP logout endpoint used to configure your private workforce.
sourcepub fn jwks_uri(self, input: impl Into<String>) -> Self
pub fn jwks_uri(self, input: impl Into<String>) -> Self
The OIDC IdP JSON Web Key Set (Jwks) URI used to configure your private workforce.
This field is required.sourcepub fn set_jwks_uri(self, input: Option<String>) -> Self
pub fn set_jwks_uri(self, input: Option<String>) -> Self
The OIDC IdP JSON Web Key Set (Jwks) URI used to configure your private workforce.
sourcepub fn get_jwks_uri(&self) -> &Option<String>
pub fn get_jwks_uri(&self) -> &Option<String>
The OIDC IdP JSON Web Key Set (Jwks) URI used to configure your private workforce.
sourcepub fn build(self) -> OidcConfig
pub fn build(self) -> OidcConfig
Consumes the builder and constructs a OidcConfig
.
Trait Implementations§
source§impl Clone for OidcConfigBuilder
impl Clone for OidcConfigBuilder
source§fn clone(&self) -> OidcConfigBuilder
fn clone(&self) -> OidcConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OidcConfigBuilder
impl Debug for OidcConfigBuilder
source§impl Default for OidcConfigBuilder
impl Default for OidcConfigBuilder
source§fn default() -> OidcConfigBuilder
fn default() -> OidcConfigBuilder
source§impl PartialEq for OidcConfigBuilder
impl PartialEq for OidcConfigBuilder
source§fn eq(&self, other: &OidcConfigBuilder) -> bool
fn eq(&self, other: &OidcConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.