Interface CfnGraphQLApi.AdditionalAuthenticationProviderProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGraphQLApi.AdditionalAuthenticationProviderProperty.Jsii$Proxy
Enclosing class:
CfnGraphQLApi

@Stability(Stable) public static interface CfnGraphQLApi.AdditionalAuthenticationProviderProperty extends software.amazon.jsii.JsiiSerializable
Describes an additional authentication provider.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appsync.*;
 AdditionalAuthenticationProviderProperty additionalAuthenticationProviderProperty = AdditionalAuthenticationProviderProperty.builder()
         .authenticationType("authenticationType")
         // the properties below are optional
         .lambdaAuthorizerConfig(LambdaAuthorizerConfigProperty.builder()
                 .authorizerResultTtlInSeconds(123)
                 .authorizerUri("authorizerUri")
                 .identityValidationExpression("identityValidationExpression")
                 .build())
         .openIdConnectConfig(OpenIDConnectConfigProperty.builder()
                 .authTtl(123)
                 .clientId("clientId")
                 .iatTtl(123)
                 .issuer("issuer")
                 .build())
         .userPoolConfig(CognitoUserPoolConfigProperty.builder()
                 .appIdClientRegex("appIdClientRegex")
                 .awsRegion("awsRegion")
                 .userPoolId("userPoolId")
                 .build())
         .build();