interface GraphQLApiReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.GraphQLApiReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#GraphQLApiReference |
Java | software.amazon.awscdk.services.appsync.GraphQLApiReference |
Python | aws_cdk.aws_appsync.GraphQLApiReference |
TypeScript | aws-cdk-lib » aws_appsync » GraphQLApiReference |
A reference to a GraphQLApi 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 graphQLApiReference: appsync.GraphQLApiReference = {
apiId: 'apiId',
graphQlApiArn: 'graphQlApiArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The ApiId of the GraphQLApi resource. |
| graph | string | The ARN of the GraphQLApi resource. |
apiId
Type:
string
The ApiId of the GraphQLApi resource.
graphQlApiArn
Type:
string
The ARN of the GraphQLApi resource.

.NET
Go
Java
Python
TypeScript