interface CachingConfig
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppSync.CachingConfig |
Java | software.amazon.awscdk.services.appsync.CachingConfig |
Python | aws_cdk.aws_appsync.CachingConfig |
TypeScript (source) | @aws-cdk/aws-appsync » CachingConfig |
CachingConfig for AppSync resolvers.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appsync from '@aws-cdk/aws-appsync';
import * as cdk from '@aws-cdk/core';
const cachingConfig: appsync.CachingConfig = {
ttl: cdk.Duration.minutes(30),
// the properties below are optional
cachingKeys: ['cachingKeys'],
};
Properties
Name | Type | Description |
---|---|---|
ttl | Duration | The TTL in seconds for a resolver that has caching enabled. |
caching | string[] | The caching keys for a resolver that has caching enabled. |
ttl
Type:
Duration
The TTL in seconds for a resolver that has caching enabled.
Valid values are between 1 and 3600 seconds.
cachingKeys?
Type:
string[]
(optional, default: No caching keys)
The caching keys for a resolver that has caching enabled.
Valid values are entries from the $context.arguments, $context.source, and $context.identity maps.