@Stability(value=Stable)
public static interface CfnGraphQLApi.AdditionalAuthenticationProviderProperty
extends software.amazon.jsii.JsiiSerializable
// 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnGraphQLApi.AdditionalAuthenticationProviderProperty.Builder
A builder for
CfnGraphQLApi.AdditionalAuthenticationProviderProperty |
static class |
CfnGraphQLApi.AdditionalAuthenticationProviderProperty.Jsii$Proxy
An implementation for
CfnGraphQLApi.AdditionalAuthenticationProviderProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnGraphQLApi.AdditionalAuthenticationProviderProperty.Builder |
builder() |
String |
getAuthenticationType()
`CfnGraphQLApi.AdditionalAuthenticationProviderProperty.AuthenticationType`.
|
default Object |
getLambdaAuthorizerConfig()
`CfnGraphQLApi.AdditionalAuthenticationProviderProperty.LambdaAuthorizerConfig`.
|
default Object |
getOpenIdConnectConfig()
`CfnGraphQLApi.AdditionalAuthenticationProviderProperty.OpenIDConnectConfig`.
|
default Object |
getUserPoolConfig()
`CfnGraphQLApi.AdditionalAuthenticationProviderProperty.UserPoolConfig`.
|
@Stability(value=Stable) @NotNull String getAuthenticationType()
@Stability(value=Stable) @Nullable default Object getLambdaAuthorizerConfig()
@Stability(value=Stable) @Nullable default Object getOpenIdConnectConfig()
@Stability(value=Stable) @Nullable default Object getUserPoolConfig()
@Stability(value=Stable) static CfnGraphQLApi.AdditionalAuthenticationProviderProperty.Builder builder()
Copyright © 2021. All rights reserved.