@@ -380,7 +380,7 @@ export class SummarizationAppsyncStepfn extends BaseClass {
380
380
381
381
const apiName = props . summaryApiName || generatePhysicalNameV2 ( this ,
382
382
'summaryApi' + this . stage ,
383
- { maxLength : 32 , lower : true } ) ;
383
+ { maxLength : 63 , lower : true } ) ;
384
384
385
385
// graphql api for summary. client invoke this api with given schema and cognito user pool auth.
386
386
const summarizationGraphqlApi = new appsync . GraphqlApi ( this , apiName ,
@@ -679,7 +679,7 @@ export class SummarizationAppsyncStepfn extends BaseClass {
679
679
680
680
const functionName = generatePhysicalNameV2 ( this ,
681
681
'summary_generator' + this . stage ,
682
- { maxLength : 32 , lower : true } ) ;
682
+ { maxLength : 63 , lower : true } ) ;
683
683
const construct_generate_summary_lambda_props = {
684
684
functionName : functionName ,
685
685
description : 'Lambda function to generate the summary' ,
@@ -754,7 +754,7 @@ export class SummarizationAppsyncStepfn extends BaseClass {
754
754
const dlq : sqs . Queue = new sqs . Queue ( this , 'dlq' , {
755
755
queueName : generatePhysicalNameV2 ( this ,
756
756
'summarydlq' + this . stage ,
757
- { maxLength : 32 , lower : true } ) ,
757
+ { maxLength : 63 , lower : true } ) ,
758
758
retentionPeriod : Duration . days ( 7 ) ,
759
759
enforceSSL : true ,
760
760
} ) ;
0 commit comments