/** *
Represents a collection of route settings.
*/ export interface _RouteSettings { /** *Specifies whether (true) or not (false) data trace * logging is enabled for this route. This property affects the log entries pushed to * Amazon CloudWatch Logs.
*/ DataTraceEnabled?: boolean; /** *Specifies whether detailed metrics are enabled.
*/ DetailedMetricsEnabled?: boolean; /** *Specifies the logging level for this route: DEBUG, INFO, * or WARN. This property affects the log entries pushed to Amazon * CloudWatch Logs.
*/ LoggingLevel?: "ERROR" | "INFO" | "false" | string; /** *Specifies the throttling burst limit.
*/ ThrottlingBurstLimit?: number; /** *Specifies the throttling rate limit.
*/ ThrottlingRateLimit?: number; } export declare type _UnmarshalledRouteSettings = _RouteSettings;