Struct aws_sdk_securityhub::types::AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
source · #[non_exhaustive]pub struct AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails {
pub authentication_type: Option<String>,
pub lambda_authorizer_config: Option<AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails>,
pub open_id_connect_config: Option<AwsAppSyncGraphQlApiOpenIdConnectConfigDetails>,
pub user_pool_config: Option<AwsAppSyncGraphQlApiUserPoolConfigDetails>,
}
Expand description
A list of additional authentication providers for the GraphqlApi API.
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.authentication_type: Option<String>
The type of security configuration for your GraphQL API: API key, Identity and Access Management (IAM), OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.
The configuration for Lambda function authorization.
open_id_connect_config: Option<AwsAppSyncGraphQlApiOpenIdConnectConfigDetails>
The OpenID Connect configuration.
user_pool_config: Option<AwsAppSyncGraphQlApiUserPoolConfigDetails>
The Amazon Cognito user pools configuration.
Implementations§
source§impl AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
impl AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
sourcepub fn authentication_type(&self) -> Option<&str>
pub fn authentication_type(&self) -> Option<&str>
The type of security configuration for your GraphQL API: API key, Identity and Access Management (IAM), OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.
The configuration for Lambda function authorization.
sourcepub fn open_id_connect_config(
&self
) -> Option<&AwsAppSyncGraphQlApiOpenIdConnectConfigDetails>
pub fn open_id_connect_config( &self ) -> Option<&AwsAppSyncGraphQlApiOpenIdConnectConfigDetails>
The OpenID Connect configuration.
sourcepub fn user_pool_config(
&self
) -> Option<&AwsAppSyncGraphQlApiUserPoolConfigDetails>
pub fn user_pool_config( &self ) -> Option<&AwsAppSyncGraphQlApiUserPoolConfigDetails>
The Amazon Cognito user pools configuration.
source§impl AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
impl AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
sourcepub fn builder(
) -> AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetailsBuilder
pub fn builder( ) -> AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetailsBuilder
Creates a new builder-style object to manufacture AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
.
Trait Implementations§
source§impl Clone for AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
impl Clone for AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
source§fn clone(&self) -> AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
fn clone(&self) -> AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
impl PartialEq for AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
source§fn eq(
&self,
other: &AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
) -> bool
fn eq( &self, other: &AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
Auto Trait Implementations§
impl Freeze for AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
impl RefUnwindSafe for AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
impl Send for AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
impl Sync for AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
impl Unpin for AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
impl UnwindSafe for AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more