interface CfnDeploymentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins.CfnDeploymentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigatewayv2/mixins#CfnDeploymentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.apigatewayv2.mixins.CfnDeploymentMixinProps |
Python | aws_cdk.mixins_preview.aws_apigatewayv2.mixins.CfnDeploymentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_apigatewayv2 » mixins » 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 { mixins as apigatewayv2_mixins } from '@aws-cdk/mixins-preview/aws-apigatewayv2';
const cfnDeploymentMixinProps: apigatewayv2_mixins.CfnDeploymentMixinProps = {
apiId: 'apiId',
description: 'description',
stageName: 'stageName',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | 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
(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