interface TypeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppSync.TypeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappsync#TypeReference |
Java | software.amazon.awscdk.interfaces.appsync.TypeReference |
Python | aws_cdk.interfaces.aws_appsync.TypeReference |
TypeScript | aws-cdk-lib » interfaces » aws_appsync » TypeReference |
A reference to a Type 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_appsync } from 'aws-cdk-lib/interfaces';
const typeReference: interfaces_appsync.TypeReference = {
typeArn: 'typeArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The Arn of the Type resource. |
typeArn
Type:
string
The Arn of the Type resource.

.NET
Go
Java
Python
TypeScript