agent-claw: automated task changes
This commit is contained in:
19
cdk/node_modules/aws-cdk-lib/aws-appsync/lib/caching-config.d.ts
generated
vendored
Normal file
19
cdk/node_modules/aws-cdk-lib/aws-appsync/lib/caching-config.d.ts
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import type { Duration } from '../../core';
|
||||
/**
|
||||
* CachingConfig for AppSync resolvers
|
||||
*/
|
||||
export interface CachingConfig {
|
||||
/**
|
||||
* The caching keys for a resolver that has caching enabled.
|
||||
* Valid values are entries from the $context.arguments, $context.source, and $context.identity maps.
|
||||
*
|
||||
* @default - No caching keys
|
||||
*/
|
||||
readonly cachingKeys?: string[];
|
||||
/**
|
||||
* The TTL in seconds for a resolver that has caching enabled.
|
||||
* Valid values are between 1 and 3600 seconds.
|
||||
*
|
||||
*/
|
||||
readonly ttl: Duration;
|
||||
}
|
||||
Reference in New Issue
Block a user