Commit 9a4b40d 1 parent 30f7530 commit 9a4b40d Copy full SHA for 9a4b40d
File tree 1 file changed +4
-4
lines changed
packages/@aws-cdk/aws-amplify/lib
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,14 @@ export interface DomainOptions {
27
27
*
28
28
* @default false
29
29
*/
30
- readonly domainEnableAutoSubDomain : boolean ;
30
+ readonly enableAutoSubdomain ? : boolean ;
31
31
32
32
/**
33
33
* Branches which should automatically create subdomains
34
34
*
35
35
* @default - all repository branches *, pr*
36
36
*/
37
- readonly domainAutoSubDomainCreationPatterns ?: string [ ] ;
37
+ readonly autoSubdomainCreationPatterns ?: string [ ] ;
38
38
}
39
39
40
40
/**
@@ -120,8 +120,8 @@ export class Domain extends Resource {
120
120
appId : props . app . appId ,
121
121
domainName,
122
122
subDomainSettings : Lazy . any ( { produce : ( ) => this . renderSubDomainSettings ( ) } , { omitEmptyArray : true } ) ,
123
- enableAutoSubDomain : ! ! props . domainEnableAutoSubDomain ,
124
- autoSubDomainCreationPatterns : props . domainAutoSubDomainCreationPatterns ,
123
+ enableAutoSubDomain : ! ! props . enableAutoSubdomain ,
124
+ autoSubDomainCreationPatterns : props . autoSubdomainCreationPatterns ,
125
125
} ) ;
126
126
127
127
this . arn = domain . attrArn ;
You can’t perform that action at this time.
0 commit comments