interface HttpStageAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.APIGatewayv2.HttpStageAttributes |
![]() | software.amazon.awscdk.services.apigatewayv2.HttpStageAttributes |
![]() | aws_cdk.aws_apigatewayv2.HttpStageAttributes |
![]() | @aws-cdk/aws-apigatewayv2 » HttpStageAttributes |
The attributes used to import existing HttpStage.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apigatewayv2 from '@aws-cdk/aws-apigatewayv2';
declare const httpApi: apigatewayv2.HttpApi;
const httpStageAttributes: apigatewayv2.HttpStageAttributes = {
api: httpApi,
stageName: 'stageName',
};
Properties
Name | Type | Description |
---|---|---|
api | IHttp | The API to which this stage is associated. |
stage | string | The name of the stage. |
api
Type:
IHttp
The API to which this stage is associated.
stageName
Type:
string
The name of the stage.