Deployment Method Setting
data class DeploymentMethodSetting(val cacheDataEncrypted: Boolean? = null, val cacheTtlInSeconds: Int? = null, val cachingEnabled: Boolean? = null, val dataTraceEnabled: Boolean? = null, val httpMethod: String? = null, val loggingLevel: String? = null, val metricsEnabled: Boolean? = null, val resourcePath: String? = null, val throttlingBurstLimit: Int? = null, val throttlingRateLimit: Double? = null)
The `MethodSetting`
property type configures settings for all methods in a stage. The `MethodSettings`
property of the Amazon API Gateway Deployment StageDescription property type contains a list of `MethodSetting`
property types.
Constructors
Link copied to clipboard
fun DeploymentMethodSetting(cacheDataEncrypted: Boolean? = null, cacheTtlInSeconds: Int? = null, cachingEnabled: Boolean? = null, dataTraceEnabled: Boolean? = null, httpMethod: String? = null, loggingLevel: String? = null, metricsEnabled: Boolean? = null, resourcePath: String? = null, throttlingBurstLimit: Int? = null, throttlingRateLimit: Double? = null)
Types
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Specifies the logging level for this method, which affects the log entries pushed to Amazon CloudWatch Logs. Valid values are `OFF`
, `ERROR`
, and `INFO`
. Choose `ERROR`
to write only error-level entries to CloudWatch Logs, or choose `INFO`
to include all `ERROR`
events as well as extra informational events.
Link copied to clipboard
Link copied to clipboard