interface DeploymentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.APIGateway.DeploymentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapigateway#DeploymentReference |
Java | software.amazon.awscdk.interfaces.apigateway.DeploymentReference |
Python | aws_cdk.interfaces.aws_apigateway.DeploymentReference |
TypeScript | aws-cdk-lib » interfaces » aws_apigateway » DeploymentReference |
A reference to a Deployment 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_apigateway } from 'aws-cdk-lib/interfaces';
const deploymentReference: interfaces_apigateway.DeploymentReference = {
deploymentId: 'deploymentId',
restApiId: 'restApiId',
};
Properties
| Name | Type | Description |
|---|---|---|
| deployment | string | The DeploymentId of the Deployment resource. |
| rest | string | The RestApiId of the Deployment resource. |
deploymentId
Type:
string
The DeploymentId of the Deployment resource.
restApiId
Type:
string
The RestApiId of the Deployment resource.

.NET
Go
Java
Python
TypeScript