interface RouteSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SAM.Mixins.CfnFunctionPropsMixin.RouteSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssam/mixins#CfnFunctionPropsMixin_RouteSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sam.mixins.CfnFunctionPropsMixin.RouteSettingsProperty |
Python | aws_cdk.mixins_preview.aws_sam.mixins.CfnFunctionPropsMixin.RouteSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sam » mixins » CfnFunctionPropsMixin » RouteSettingsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sam_mixins } from '@aws-cdk/mixins-preview/aws-sam';
const routeSettingsProperty: sam_mixins.CfnFunctionPropsMixin.RouteSettingsProperty = {
dataTraceEnabled: false,
detailedMetricsEnabled: false,
loggingLevel: 'loggingLevel',
throttlingBurstLimit: 123,
throttlingRateLimit: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| data | boolean | IResolvable | |
| detailed | boolean | IResolvable | |
| logging | string | |
| throttling | number | |
| throttling | number |
dataTraceEnabled?
Type:
boolean | IResolvable
(optional)
detailedMetricsEnabled?
Type:
boolean | IResolvable
(optional)
loggingLevel?
Type:
string
(optional)
throttlingBurstLimit?
Type:
number
(optional)
throttlingRateLimit?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript