Method: Aws::APIGateway::Types::MethodSetting#cache_data_encrypted
- Defined in:
- lib/aws-sdk-apigateway/types.rb
#cache_data_encrypted ⇒ Boolean
Specifies whether the cached responses are encrypted. The PATCH path for this setting is ‘/method_setting_key/caching/dataEncrypted`, and the value is a Boolean.
4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 |
# File 'lib/aws-sdk-apigateway/types.rb', line 4921 class MethodSetting < Struct.new( :metrics_enabled, :logging_level, :data_trace_enabled, :throttling_burst_limit, :throttling_rate_limit, :caching_enabled, :cache_ttl_in_seconds, :cache_data_encrypted, :require_authorization_for_cache_control, :unauthorized_cache_control_header_strategy) include Aws::Structure end |