Class: Aws::AppSync::Types::CachingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::CachingConfig
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
The caching configuration for a resolver that has caching activated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#caching_keys ⇒ Array<String>
The caching keys for a resolver that has caching activated.
-
#ttl ⇒ Integer
The TTL in seconds for a resolver that has caching activated.
Instance Attribute Details
#caching_keys ⇒ Array<String>
The caching keys for a resolver that has caching activated.
Valid values are entries from the $context.arguments
,
$context.source
, and $context.identity
maps.
690 691 692 693 694 695 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 690 class CachingConfig < Struct.new( :ttl, :caching_keys) SENSITIVE = [] include Aws::Structure end |
#ttl ⇒ Integer
The TTL in seconds for a resolver that has caching activated.
Valid values are 1–3,600 seconds.
690 691 692 693 694 695 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 690 class CachingConfig < Struct.new( :ttl, :caching_keys) SENSITIVE = [] include Aws::Structure end |