interface RouteSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.APIGateway.CfnStageV2.RouteSettingsProperty |
Java | software.amazon.awscdk.services.apigateway.CfnStageV2.RouteSettingsProperty |
Python | aws_cdk.aws_apigateway.CfnStageV2.RouteSettingsProperty |
TypeScript (source) | @aws-cdk/aws-apigateway » CfnStageV2 » RouteSettingsProperty |
⚠️ Deprecated: moved to package aws-apigatewayv2
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apigateway from '@aws-cdk/aws-apigateway';
const routeSettingsProperty: apigateway.CfnStageV2.RouteSettingsProperty = {
dataTraceEnabled: false,
detailedMetricsEnabled: false,
loggingLevel: 'loggingLevel',
throttlingBurstLimit: 123,
throttlingRateLimit: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| data | boolean | IResolvable | CfnStageV2.RouteSettingsProperty.DataTraceEnabled. |
| detailed | boolean | IResolvable | CfnStageV2.RouteSettingsProperty.DetailedMetricsEnabled. |
| logging | string | CfnStageV2.RouteSettingsProperty.LoggingLevel. |
| throttling | number | CfnStageV2.RouteSettingsProperty.ThrottlingBurstLimit. |
| throttling | number | CfnStageV2.RouteSettingsProperty.ThrottlingRateLimit. |
dataTraceEnabled?
⚠️ Deprecated: moved to package aws-apigatewayv2
Type:
boolean | IResolvable
(optional)
CfnStageV2.RouteSettingsProperty.DataTraceEnabled.
detailedMetricsEnabled?
⚠️ Deprecated: moved to package aws-apigatewayv2
Type:
boolean | IResolvable
(optional)
CfnStageV2.RouteSettingsProperty.DetailedMetricsEnabled.
loggingLevel?
⚠️ Deprecated: moved to package aws-apigatewayv2
Type:
string
(optional)
CfnStageV2.RouteSettingsProperty.LoggingLevel.
throttlingBurstLimit?
⚠️ Deprecated: moved to package aws-apigatewayv2
Type:
number
(optional)
CfnStageV2.RouteSettingsProperty.ThrottlingBurstLimit.
throttlingRateLimit?
⚠️ Deprecated: moved to package aws-apigatewayv2
Type:
number
(optional)
CfnStageV2.RouteSettingsProperty.ThrottlingRateLimit.

.NET
Java
Python
TypeScript (