Struct aws_sdk_ec2::model::OidcOptions
source · #[non_exhaustive]pub struct OidcOptions { /* private fields */ }
Expand description
Options for OIDC-based, user-identity type trust provider.
Implementations§
source§impl OidcOptions
impl OidcOptions
The OIDC authorization endpoint.
sourcepub fn token_endpoint(&self) -> Option<&str>
pub fn token_endpoint(&self) -> Option<&str>
The OIDC token endpoint.
sourcepub fn user_info_endpoint(&self) -> Option<&str>
pub fn user_info_endpoint(&self) -> Option<&str>
The OIDC user info endpoint.
sourcepub fn client_secret(&self) -> Option<&str>
pub fn client_secret(&self) -> Option<&str>
The client secret.
source§impl OidcOptions
impl OidcOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OidcOptions
.
Trait Implementations§
source§impl Clone for OidcOptions
impl Clone for OidcOptions
source§fn clone(&self) -> OidcOptions
fn clone(&self) -> OidcOptions
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 OidcOptions
impl Debug for OidcOptions
source§impl PartialEq<OidcOptions> for OidcOptions
impl PartialEq<OidcOptions> for OidcOptions
source§fn eq(&self, other: &OidcOptions) -> bool
fn eq(&self, other: &OidcOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.