interface GraphQLSchemaReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.GraphQLSchemaReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#GraphQLSchemaReference |
Java | software.amazon.awscdk.services.appsync.GraphQLSchemaReference |
Python | aws_cdk.aws_appsync.GraphQLSchemaReference |
TypeScript | aws-cdk-lib » aws_appsync » GraphQLSchemaReference |
A reference to a GraphQLSchema resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appsync as appsync } from 'aws-cdk-lib';
const graphQLSchemaReference: appsync.GraphQLSchemaReference = {
graphQlSchemaId: 'graphQlSchemaId',
};
Properties
| Name | Type | Description |
|---|---|---|
| graph | string | The Id of the GraphQLSchema resource. |
graphQlSchemaId
Type:
string
The Id of the GraphQLSchema resource.

.NET
Go
Java
Python
TypeScript