interface ModelReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.APIGateway.ModelReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapigateway#ModelReference |
Java | software.amazon.awscdk.interfaces.apigateway.ModelReference |
Python | aws_cdk.interfaces.aws_apigateway.ModelReference |
TypeScript | aws-cdk-lib » interfaces » aws_apigateway » ModelReference |
A reference to a Model resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigateway as interfaces_aws_apigateway } from 'aws-cdk-lib/interfaces';
const modelReference: interfaces_aws_apigateway.ModelReference = {
modelName: 'modelName',
};
Properties
| Name | Type | Description |
|---|---|---|
| model | string | The Name of the Model resource. |
modelName
Type:
string
The Name of the Model resource.

.NET
Go
Java
Python
TypeScript