Interface CfnGraphQLApiProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGraphQLApiProps.Jsii$Proxy
CfnGraphQLApi.
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.*;
CfnGraphQLApiProps cfnGraphQLApiProps = CfnGraphQLApiProps.builder()
.authenticationType("authenticationType")
.name("name")
// the properties below are optional
.additionalAuthenticationProviders(List.of(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()))
.apiType("apiType")
.lambdaAuthorizerConfig(LambdaAuthorizerConfigProperty.builder()
.authorizerResultTtlInSeconds(123)
.authorizerUri("authorizerUri")
.identityValidationExpression("identityValidationExpression")
.build())
.logConfig(LogConfigProperty.builder()
.cloudWatchLogsRoleArn("cloudWatchLogsRoleArn")
.excludeVerboseContent(false)
.fieldLogLevel("fieldLogLevel")
.build())
.mergedApiExecutionRoleArn("mergedApiExecutionRoleArn")
.openIdConnectConfig(OpenIDConnectConfigProperty.builder()
.authTtl(123)
.clientId("clientId")
.iatTtl(123)
.issuer("issuer")
.build())
.ownerContact("ownerContact")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.userPoolConfig(UserPoolConfigProperty.builder()
.appIdClientRegex("appIdClientRegex")
.awsRegion("awsRegion")
.defaultAction("defaultAction")
.userPoolId("userPoolId")
.build())
.visibility("visibility")
.xrayEnabled(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGraphQLApiPropsstatic final classAn implementation forCfnGraphQLApiProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnGraphQLApiProps.Builderbuilder()default ObjectA list of additional authentication providers for theGraphqlApiAPI.default StringThe value that indicates whether the GraphQL API is a standard API (GRAPHQL) or merged API (MERGED).Security configuration for your GraphQL API.default ObjectALambdaAuthorizerConfigholds configuration on how to authorize AWS AppSync API access when using theAWS_LAMBDAauthorizer mode.default ObjectThe Amazon CloudWatch Logs configuration.default StringThe AWS Identity and Access Management service role ARN for a merged API.getName()The API name.default ObjectThe OpenID Connect configuration.default StringThe owner contact information for an API resource.getTags()An arbitrary set of tags (key-value pairs) for this GraphQL API.default ObjectOptional authorization configuration for using Amazon Cognito user pools with your GraphQL endpoint.default StringSets the scope of the GraphQL API to public (GLOBAL) or private (PRIVATE).default ObjectA flag indicating whether to use AWS X-Ray tracing for thisGraphqlApi.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthenticationType
Security configuration for your GraphQL API.For allowed values (such as
API_KEY,AWS_IAM,AMAZON_COGNITO_USER_POOLS,OPENID_CONNECT, orAWS_LAMBDA), see Security in the AWS AppSync Developer Guide .- See Also:
-
getName
The API name.- See Also:
-
getAdditionalAuthenticationProviders
A list of additional authentication providers for theGraphqlApiAPI.- See Also:
-
getApiType
The value that indicates whether the GraphQL API is a standard API (GRAPHQL) or merged API (MERGED).WARNING : If the
ApiTypehas not been defined, explicitly setting it toGRAPHQLin a template/stack update will result in an API replacement and new DNS values.The following values are valid:
GRAPHQL | MERGED- See Also:
-
getLambdaAuthorizerConfig
ALambdaAuthorizerConfigholds configuration on how to authorize AWS AppSync API access when using theAWS_LAMBDAauthorizer mode.Be aware that an AWS AppSync API may have only one Lambda authorizer configured at a time.
- See Also:
-
getLogConfig
The Amazon CloudWatch Logs configuration.- See Also:
-
getMergedApiExecutionRoleArn
The AWS Identity and Access Management service role ARN for a merged API.The AppSync service assumes this role on behalf of the Merged API to validate access to source APIs at runtime and to prompt the
AUTO_MERGEto update the merged API endpoint with the source API changes automatically.- See Also:
-
getOpenIdConnectConfig
The OpenID Connect configuration.- See Also:
-
getOwnerContact
The owner contact information for an API resource.This field accepts any string input with a length of 0 - 256 characters.
- See Also:
-
getTags
An arbitrary set of tags (key-value pairs) for this GraphQL API.- See Also:
-
getUserPoolConfig
Optional authorization configuration for using Amazon Cognito user pools with your GraphQL endpoint.- See Also:
-
getVisibility
Sets the scope of the GraphQL API to public (GLOBAL) or private (PRIVATE).By default, the scope is set to
Globalif no value is provided.WARNING : If
Visibilityhas not been defined, explicitly setting it toGLOBALin a template/stack update will result in an API replacement and new DNS values.- See Also:
-
getXrayEnabled
A flag indicating whether to use AWS X-Ray tracing for thisGraphqlApi.- See Also:
-
builder
- Returns:
- a
CfnGraphQLApiProps.BuilderofCfnGraphQLApiProps
-