Interface CfnDeployment.MethodSettingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeployment.MethodSettingProperty.Jsii$Proxy
- Enclosing class:
CfnDeployment
MethodSetting property type configures settings for all methods in a stage.
If you modify this property type, you must create a new deployment for your API.
The MethodSettings property of the Amazon API Gateway Deployment StageDescription property type contains a list of MethodSetting property types.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigateway.*;
MethodSettingProperty methodSettingProperty = MethodSettingProperty.builder()
.cacheDataEncrypted(false)
.cacheTtlInSeconds(123)
.cachingEnabled(false)
.dataTraceEnabled(false)
.httpMethod("httpMethod")
.loggingLevel("loggingLevel")
.metricsEnabled(false)
.resourcePath("resourcePath")
.throttlingBurstLimit(123)
.throttlingRateLimit(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeployment.MethodSettingPropertystatic final classAn implementation forCfnDeployment.MethodSettingProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSpecifies whether the cached responses are encrypted.default NumberSpecifies the time to live (TTL), in seconds, for cached responses.default ObjectSpecifies whether responses should be cached and returned for requests.default ObjectSpecifies whether data trace logging is enabled for this method, which affects the log entries pushed to Amazon CloudWatch Logs.default StringThe HTTP method.default StringSpecifies the logging level for this method, which affects the log entries pushed to Amazon CloudWatch Logs.default ObjectSpecifies whether Amazon CloudWatch metrics are enabled for this method.default StringThe resource path for this method.default NumberSpecifies the throttling burst limit.default NumberSpecifies the throttling rate limit.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCacheDataEncrypted
Specifies whether the cached responses are encrypted.Returns union: either
BooleanorIResolvable- See Also:
-
getCacheTtlInSeconds
Specifies the time to live (TTL), in seconds, for cached responses.The higher the TTL, the longer the response will be cached.
- See Also:
-
getCachingEnabled
Specifies whether responses should be cached and returned for requests.A cache cluster must be enabled on the stage for responses to be cached.
Returns union: either
BooleanorIResolvable- See Also:
-
getDataTraceEnabled
Specifies whether data trace logging is enabled for this method, which affects the log entries pushed to Amazon CloudWatch Logs.This can be useful to troubleshoot APIs, but can result in logging sensitive data. We recommend that you don't enable this option for production APIs.
Returns union: either
BooleanorIResolvable- See Also:
-
getHttpMethod
The HTTP method.- See Also:
-
getLoggingLevel
Specifies the logging level for this method, which affects the log entries pushed to Amazon CloudWatch Logs.Valid values are
OFF,ERROR, andINFO. ChooseERRORto write only error-level entries to CloudWatch Logs, or chooseINFOto include allERRORevents as well as extra informational events.- See Also:
-
getMetricsEnabled
Specifies whether Amazon CloudWatch metrics are enabled for this method.Returns union: either
BooleanorIResolvable- See Also:
-
getResourcePath
The resource path for this method.Forward slashes (
/) are encoded as~1and the initial slash must include a forward slash. For example, the path value/resource/subresourcemust be encoded as/~1resource~1subresource. To specify the root path, use only a slash (/).- See Also:
-
getThrottlingBurstLimit
Specifies the throttling burst limit.- See Also:
-
getThrottlingRateLimit
Specifies the throttling rate limit.- See Also:
-
builder
-