File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -370,6 +370,7 @@ export interface AWS {
370370 bootstrapServers : string [ ] ;
371371 startingPosition ?: "LATEST" | "TRIM_HORIZON" ;
372372 topic : string ;
373+ consumerGroupId ?: string ;
373374 } ;
374375 }
375376 | {
@@ -402,6 +403,7 @@ export interface AWS {
402403 startingPosition ?: "LATEST" | "TRIM_HORIZON" ;
403404 topic : string ;
404405 saslScram512 ?: AwsArnString ;
406+ consumerGroupId ?: string ;
405407 } ;
406408 }
407409 | {
@@ -561,6 +563,22 @@ export interface AWS {
561563 TrustedSigners ?: string [ ] ;
562564 ViewerProtocolPolicy ?: "allow-all" | "redirect-to-https" | "https-only" ;
563565 TrustedKeyGroups ?: ( string | AwsCfRef ) [ ] ;
566+ MaxTTL ?: number ;
567+ MinTTL ?: number ;
568+ DefaultTTL ?: number ;
569+ ForwardedValues ?: {
570+ Cookies ?:
571+ | {
572+ Forward : "all" | "none" ;
573+ }
574+ | {
575+ Forward : "whitelist" ;
576+ WhitelistedNames : string [ ] ;
577+ } ;
578+ Headers ?: string [ ] ;
579+ QueryString : boolean ;
580+ QueryStringCacheKeys ?: string [ ] ;
581+ } ;
564582 } ;
565583 cachePolicy ?:
566584 | {
Original file line number Diff line number Diff line change 11{
22 "name" : " @serverless/typescript" ,
3- "version" : " 3.22 .0" ,
3+ "version" : " 3.23 .0" ,
44 "description" : " Serverless typescript definitions" ,
55 "main" : " index.d.ts" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments