Table of Contents

Interface ICfnStageV2Props

Namespace
Amazon.CDK.AWS.APIGateway
Assembly
Amazon.CDK.AWS.APIGateway.dll

(deprecated) Properties for defining a AWS::ApiGatewayV2::Stage.

[Obsolete("moved to package aws-apigatewayv2")]
public interface ICfnStageV2Props

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.APIGateway;

             var routeSettings;
             var stageVariables;
             var tags;

             var cfnStageV2Props = new CfnStageV2Props {
                 ApiId = "apiId",
                 StageName = "stageName",

                 // the properties below are optional
                 AccessLogSettings = new AccessLogSettingsProperty {
                     DestinationArn = "destinationArn",
                     Format = "format"
                 },
                 AutoDeploy = false,
                 ClientCertificateId = "clientCertificateId",
                 DefaultRouteSettings = new RouteSettingsProperty {
                     DataTraceEnabled = false,
                     DetailedMetricsEnabled = false,
                     LoggingLevel = "loggingLevel",
                     ThrottlingBurstLimit = 123,
                     ThrottlingRateLimit = 123
                 },
                 DeploymentId = "deploymentId",
                 Description = "description",
                 RouteSettings = routeSettings,
                 StageVariables = stageVariables,
                 Tags = tags
             };

Remarks

Properties

AccessLogSettings

(deprecated) AWS::ApiGatewayV2::Stage.AccessLogSettings.

[Obsolete]
object? AccessLogSettings { get; }

Property Value

object

Remarks

ApiId

(deprecated) AWS::ApiGatewayV2::Stage.ApiId.

[Obsolete]
string ApiId { get; }

Property Value

string

Remarks

AutoDeploy

(deprecated) AWS::ApiGatewayV2::Stage.AutoDeploy.

[Obsolete]
object? AutoDeploy { get; }

Property Value

object

Remarks

ClientCertificateId

(deprecated) AWS::ApiGatewayV2::Stage.ClientCertificateId.

[Obsolete]
string? ClientCertificateId { get; }

Property Value

string

Remarks

DefaultRouteSettings

(deprecated) AWS::ApiGatewayV2::Stage.DefaultRouteSettings.

[Obsolete]
object? DefaultRouteSettings { get; }

Property Value

object

Remarks

DeploymentId

(deprecated) AWS::ApiGatewayV2::Stage.DeploymentId.

[Obsolete]
string? DeploymentId { get; }

Property Value

string

Remarks

Description

(deprecated) AWS::ApiGatewayV2::Stage.Description.

[Obsolete]
string? Description { get; }

Property Value

string

Remarks

RouteSettings

(deprecated) AWS::ApiGatewayV2::Stage.RouteSettings.

[Obsolete]
object? RouteSettings { get; }

Property Value

object

Remarks

StageName

(deprecated) AWS::ApiGatewayV2::Stage.StageName.

[Obsolete]
string StageName { get; }

Property Value

string

Remarks

StageVariables

(deprecated) AWS::ApiGatewayV2::Stage.StageVariables.

[Obsolete]
object? StageVariables { get; }

Property Value

object

Remarks

Tags

(deprecated) AWS::ApiGatewayV2::Stage.Tags.

[Obsolete]
object? Tags { get; }

Property Value

object

Remarks