Struct aws_sdk_ec2::types::builders::OidcOptionsBuilder
source · #[non_exhaustive]pub struct OidcOptionsBuilder { /* private fields */ }Expand description
A builder for OidcOptions.
Implementations§
source§impl OidcOptionsBuilder
impl OidcOptionsBuilder
sourcepub fn set_issuer(self, input: Option<String>) -> Self
pub fn set_issuer(self, input: Option<String>) -> Self
The OIDC issuer.
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 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 set_client_id(self, input: Option<String>) -> Self
pub fn set_client_id(self, input: Option<String>) -> Self
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 scope(self, input: impl Into<String>) -> Self
pub fn scope(self, input: impl Into<String>) -> Self
The OpenID Connect (OIDC) scope specified.
sourcepub fn set_scope(self, input: Option<String>) -> Self
pub fn set_scope(self, input: Option<String>) -> Self
The OpenID Connect (OIDC) scope specified.
sourcepub fn build(self) -> OidcOptions
pub fn build(self) -> OidcOptions
Consumes the builder and constructs a OidcOptions.
Trait Implementations§
source§impl Clone for OidcOptionsBuilder
impl Clone for OidcOptionsBuilder
source§fn clone(&self) -> OidcOptionsBuilder
fn clone(&self) -> OidcOptionsBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for OidcOptionsBuilder
impl Debug for OidcOptionsBuilder
source§impl Default for OidcOptionsBuilder
impl Default for OidcOptionsBuilder
source§fn default() -> OidcOptionsBuilder
fn default() -> OidcOptionsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<OidcOptionsBuilder> for OidcOptionsBuilder
impl PartialEq<OidcOptionsBuilder> for OidcOptionsBuilder
source§fn eq(&self, other: &OidcOptionsBuilder) -> bool
fn eq(&self, other: &OidcOptionsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.