interface RouteSettingsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SAM.CfnFunction.RouteSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssam#CfnFunction_RouteSettingsProperty |
Java | software.amazon.awscdk.services.sam.CfnFunction.RouteSettingsProperty |
Python | aws_cdk.aws_sam.CfnFunction.RouteSettingsProperty |
TypeScript | aws-cdk-lib » aws_sam » CfnFunction » RouteSettingsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sam as sam } from 'aws-cdk-lib';
const routeSettingsProperty: sam.CfnFunction.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)