enum IntrospectionConfig
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppSync.IntrospectionConfig |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#IntrospectionConfig |
![]() | software.amazon.awscdk.services.appsync.IntrospectionConfig |
![]() | aws_cdk.aws_appsync.IntrospectionConfig |
![]() | aws-cdk-lib » aws_appsync » IntrospectionConfig |
Introspection configuration for a GraphQL API.
Example
const api = new appsync.GraphqlApi(this, 'api', {
name: 'DisableIntrospectionApi',
definition: appsync.Definition.fromFile(path.join(__dirname, 'appsync.schema.graphql')),
introspectionConfig: appsync.IntrospectionConfig.DISABLED,
});
Members
Name | Description |
---|---|
ENABLED | Enable introspection. |
DISABLED | Disable introspection. |
ENABLED
Enable introspection.
DISABLED
Disable introspection.