Struct aws_sdk_apigatewayv2::model::JwtConfiguration
source · [−]#[non_exhaustive]pub struct JwtConfiguration {
pub audience: Option<Vec<String>>,
pub issuer: Option<String>,
}Expand description
Represents the configuration of a JWT authorizer. Required for the JWT authorizer type. Supported only for HTTP APIs.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.audience: Option<Vec<String>>A list of the intended recipients of the JWT. A valid JWT must provide an aud that matches at least one entry in this list. See RFC 7519. Supported only for HTTP APIs.
issuer: Option<String>The base domain of the identity provider that issues JSON Web Tokens. For example, an Amazon Cognito user pool has the following format: https://cognito-idp.
Implementations
sourceimpl JwtConfiguration
impl JwtConfiguration
sourcepub fn audience(&self) -> Option<&[String]>
pub fn audience(&self) -> Option<&[String]>
A list of the intended recipients of the JWT. A valid JWT must provide an aud that matches at least one entry in this list. See RFC 7519. Supported only for HTTP APIs.
sourcepub fn issuer(&self) -> Option<&str>
pub fn issuer(&self) -> Option<&str>
The base domain of the identity provider that issues JSON Web Tokens. For example, an Amazon Cognito user pool has the following format: https://cognito-idp.
sourceimpl JwtConfiguration
impl JwtConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture JwtConfiguration.
Trait Implementations
sourceimpl Clone for JwtConfiguration
impl Clone for JwtConfiguration
sourcefn clone(&self) -> JwtConfiguration
fn clone(&self) -> JwtConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for JwtConfiguration
impl Debug for JwtConfiguration
sourceimpl PartialEq<JwtConfiguration> for JwtConfiguration
impl PartialEq<JwtConfiguration> for JwtConfiguration
sourcefn eq(&self, other: &JwtConfiguration) -> bool
fn eq(&self, other: &JwtConfiguration) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &JwtConfiguration) -> bool
fn ne(&self, other: &JwtConfiguration) -> bool
This method tests for !=.
impl StructuralPartialEq for JwtConfiguration
Auto Trait Implementations
impl RefUnwindSafe for JwtConfiguration
impl Send for JwtConfiguration
impl Sync for JwtConfiguration
impl Unpin for JwtConfiguration
impl UnwindSafe for JwtConfiguration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more