interface DocumentationVersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.APIGateway.DocumentationVersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapigateway#DocumentationVersionReference |
Java | software.amazon.awscdk.interfaces.apigateway.DocumentationVersionReference |
Python | aws_cdk.interfaces.aws_apigateway.DocumentationVersionReference |
TypeScript | aws-cdk-lib » interfaces » aws_apigateway » DocumentationVersionReference |
A reference to a DocumentationVersion 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 documentationVersionReference: interfaces_aws_apigateway.DocumentationVersionReference = {
documentationVersion: 'documentationVersion',
restApiId: 'restApiId',
};
Properties
| Name | Type | Description |
|---|---|---|
| documentation | string | The DocumentationVersion of the DocumentationVersion resource. |
| rest | string | The RestApiId of the DocumentationVersion resource. |
documentationVersion
Type:
string
The DocumentationVersion of the DocumentationVersion resource.
restApiId
Type:
string
The RestApiId of the DocumentationVersion resource.

.NET
Go
Java
Python
TypeScript