@aws-cdk_aws-apigatewayv2-alpha.HttpStageAttributes

interface HttpStageAttributes ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Apigatewayv2.Alpha.HttpStageAttributes
Gogithub.com/aws/aws-cdk-go/awscdkapigatewayv2alpha/v2#HttpStageAttributes
Javasoftware.amazon.awscdk.services.apigatewayv2.alpha.HttpStageAttributes
Pythonaws_cdk.aws_apigatewayv2_alpha.HttpStageAttributes
TypeScript (source)@aws-cdk/aws-apigatewayv2-alpha ยป 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_alpha from '@aws-cdk/aws-apigatewayv2-alpha';

declare const httpApi: apigatewayv2_alpha.HttpApi;
const httpStageAttributes: apigatewayv2_alpha.HttpStageAttributes = {
  api: httpApi,
  stageName: 'stageName',
};

Properties

NameTypeDescription
api๐Ÿ”นIHttpApiThe API to which this stage is associated.
stageName๐Ÿ”นstringThe name of the stage.

api๐Ÿ”น

Type: IHttpApi

The API to which this stage is associated.


stageName๐Ÿ”น

Type: string

The name of the stage.