interface GraphQLSchemaReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppSync.GraphQLSchemaReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappsync#GraphQLSchemaReference |
Java | software.amazon.awscdk.interfaces.appsync.GraphQLSchemaReference |
Python | aws_cdk.interfaces.aws_appsync.GraphQLSchemaReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_appsync } from 'aws-cdk-lib/interfaces';
const graphQLSchemaReference: interfaces_aws_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