interface CfnDeploymentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApiGatewayV2.CfnDeploymentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapigatewayv2#CfnDeploymentMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.CfnDeploymentMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_apigatewayv2.CfnDeploymentMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apigatewayv2 » CfnDeploymentMixinProps |
Properties for CfnDeploymentPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigatewayv2 as apigatewayv2 } from '@aws-cdk/cfn-property-mixins';
const cfnDeploymentMixinProps: apigatewayv2.CfnDeploymentMixinProps = {
apiId: 'apiId',
description: 'description',
stageName: 'stageName',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | IApi | The API identifier. |
| description? | string | The description for the deployment resource. |
| stage | string | The name of an existing stage to associate with the deployment. |
apiId?
Type:
string | IApi
(optional)
The API identifier.
description?
Type:
string
(optional)
The description for the deployment resource.
stageName?
Type:
string
(optional)
The name of an existing stage to associate with the deployment.

.NET
Go
Java
Python
TypeScript