GraphQLApiReference
- class aws_cdk.aws_appsync.GraphQLApiReference(*, api_id, graph_ql_api_arn)
Bases:
object
A reference to a GraphQLApi resource.
- Parameters:
api_id (
str
) – The ApiId of the GraphQLApi resource.graph_ql_api_arn (
str
) – The ARN of the GraphQLApi resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_appsync as appsync graph_qLApi_reference = appsync.GraphQLApiReference( api_id="apiId", graph_ql_api_arn="graphQlApiArn" )
Attributes
- api_id
The ApiId of the GraphQLApi resource.
- graph_ql_api_arn
The ARN of the GraphQLApi resource.