interface HttpStageAttributes
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Apigatewayv2.HttpStageAttributes |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapigatewayv2#HttpStageAttributes |
Java | software.amazon.awscdk.services.apigatewayv2.HttpStageAttributes |
Python | aws_cdk.aws_apigatewayv2.HttpStageAttributes |
TypeScript (source) | aws-cdk-lib » 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 { aws_apigatewayv2 as apigatewayv2 } from 'aws-cdk-lib';
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.