interface DeploymentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Apigatewayv2.DeploymentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapigatewayv2#DeploymentReference |
Java | software.amazon.awscdk.interfaces.apigatewayv2.DeploymentReference |
Python | aws_cdk.interfaces.aws_apigatewayv2.DeploymentReference |
TypeScript | aws-cdk-lib » interfaces » aws_apigatewayv2 » 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_apigatewayv2 as interfaces_apigatewayv2 } from 'aws-cdk-lib/interfaces';
const deploymentReference: interfaces_apigatewayv2.DeploymentReference = {
apiId: 'apiId',
deploymentId: 'deploymentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The ApiId of the Deployment resource. |
| deployment | string | The DeploymentId of the Deployment resource. |
apiId
Type:
string
The ApiId of the Deployment resource.
deploymentId
Type:
string
The DeploymentId of the Deployment resource.

.NET
Go
Java
Python
TypeScript