Struct aws_sdk_appsync::model::OpenIdConnectConfig
source · #[non_exhaustive]pub struct OpenIdConnectConfig { /* private fields */ }
Expand description
Describes an OpenID Connect (OIDC) configuration.
Implementations§
source§impl OpenIdConnectConfig
impl OpenIdConnectConfig
sourcepub fn issuer(&self) -> Option<&str>
pub fn issuer(&self) -> Option<&str>
The issuer for the OIDC configuration. The issuer returned by discovery must exactly match the value of iss
in the ID token.
sourcepub fn client_id(&self) -> Option<&str>
pub fn client_id(&self) -> Option<&str>
The client identifier of the relying party at the OpenID identity provider. This identifier is typically obtained when the relying party is registered with the OpenID identity provider. You can specify a regular expression so that AppSync can validate against multiple client identifiers at a time.
source§impl OpenIdConnectConfig
impl OpenIdConnectConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OpenIdConnectConfig
.
Trait Implementations§
source§impl Clone for OpenIdConnectConfig
impl Clone for OpenIdConnectConfig
source§fn clone(&self) -> OpenIdConnectConfig
fn clone(&self) -> OpenIdConnectConfig
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 OpenIdConnectConfig
impl Debug for OpenIdConnectConfig
source§impl PartialEq<OpenIdConnectConfig> for OpenIdConnectConfig
impl PartialEq<OpenIdConnectConfig> for OpenIdConnectConfig
source§fn eq(&self, other: &OpenIdConnectConfig) -> bool
fn eq(&self, other: &OpenIdConnectConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.