interface ApiReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Apigatewayv2.ApiReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapigatewayv2#ApiReference |
Java | software.amazon.awscdk.interfaces.apigatewayv2.ApiReference |
Python | aws_cdk.interfaces.aws_apigatewayv2.ApiReference |
TypeScript | aws-cdk-lib » interfaces » aws_apigatewayv2 » ApiReference |
A reference to a Api resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigatewayv2 as interfaces_aws_apigatewayv2 } from 'aws-cdk-lib/interfaces';
const apiReference: interfaces_aws_apigatewayv2.ApiReference = {
apiId: 'apiId',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The ApiId of the Api resource. |
apiId
Type:
string
The ApiId of the Api resource.

.NET
Go
Java
Python
TypeScript