@aws-sdk/client-amplify 3.686.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -36,34 +36,34 @@ export interface AutoBranchCreationConfig {
36
36
  * <p>Describes the current stage for the autocreated branch. </p>
37
37
  * @public
38
38
  */
39
- stage?: Stage;
39
+ stage?: Stage | undefined;
40
40
  /**
41
41
  * <p>The framework for the autocreated branch. </p>
42
42
  * @public
43
43
  */
44
- framework?: string;
44
+ framework?: string | undefined;
45
45
  /**
46
46
  * <p>Enables auto building for the autocreated branch. </p>
47
47
  * @public
48
48
  */
49
- enableAutoBuild?: boolean;
49
+ enableAutoBuild?: boolean | undefined;
50
50
  /**
51
51
  * <p>The environment variables for the autocreated branch. </p>
52
52
  * @public
53
53
  */
54
- environmentVariables?: Record<string, string>;
54
+ environmentVariables?: Record<string, string> | undefined;
55
55
  /**
56
56
  * <p>The basic authorization credentials for the autocreated branch. You must base64-encode
57
57
  * the authorization credentials and provide them in the format
58
58
  * <code>user:password</code>.</p>
59
59
  * @public
60
60
  */
61
- basicAuthCredentials?: string;
61
+ basicAuthCredentials?: string | undefined;
62
62
  /**
63
63
  * <p>Enables basic authorization for the autocreated branch. </p>
64
64
  * @public
65
65
  */
66
- enableBasicAuth?: boolean;
66
+ enableBasicAuth?: boolean | undefined;
67
67
  /**
68
68
  * <p>Enables performance mode for the branch.</p>
69
69
  * <p>Performance mode optimizes for faster hosting performance by keeping content cached at
@@ -71,22 +71,22 @@ export interface AutoBranchCreationConfig {
71
71
  * or code changes can take up to 10 minutes to roll out. </p>
72
72
  * @public
73
73
  */
74
- enablePerformanceMode?: boolean;
74
+ enablePerformanceMode?: boolean | undefined;
75
75
  /**
76
76
  * <p>The build specification (build spec) for the autocreated branch. </p>
77
77
  * @public
78
78
  */
79
- buildSpec?: string;
79
+ buildSpec?: string | undefined;
80
80
  /**
81
81
  * <p>Enables pull request previews for the autocreated branch. </p>
82
82
  * @public
83
83
  */
84
- enablePullRequestPreview?: boolean;
84
+ enablePullRequestPreview?: boolean | undefined;
85
85
  /**
86
86
  * <p>The Amplify environment name for the pull request. </p>
87
87
  * @public
88
88
  */
89
- pullRequestEnvironmentName?: string;
89
+ pullRequestEnvironmentName?: string | undefined;
90
90
  }
91
91
  /**
92
92
  * @public
@@ -161,12 +161,12 @@ export interface CustomRule {
161
161
  * </dl>
162
162
  * @public
163
163
  */
164
- status?: string;
164
+ status?: string | undefined;
165
165
  /**
166
166
  * <p>The condition for a URL rewrite or redirect rule, such as a country code. </p>
167
167
  * @public
168
168
  */
169
- condition?: string;
169
+ condition?: string | undefined;
170
170
  }
171
171
  /**
172
172
  * @public
@@ -195,12 +195,12 @@ export interface CreateAppRequest {
195
195
  * <p>The description of the Amplify app. </p>
196
196
  * @public
197
197
  */
198
- description?: string;
198
+ description?: string | undefined;
199
199
  /**
200
200
  * <p>The Git repository for the Amplify app. </p>
201
201
  * @public
202
202
  */
203
- repository?: string;
203
+ repository?: string | undefined;
204
204
  /**
205
205
  * <p>The platform for the Amplify app. For a static app, set the platform type to
206
206
  * <code>WEB</code>. For a dynamic server-side rendered (SSR) app, set the platform
@@ -213,12 +213,12 @@ export interface CreateAppRequest {
213
213
  * settings for a Next.js 14 SSG application</a> in the <i>Amplify Hosting User Guide</i>.</p>
214
214
  * @public
215
215
  */
216
- platform?: Platform;
216
+ platform?: Platform | undefined;
217
217
  /**
218
218
  * <p>The AWS Identity and Access Management (IAM) service role for an Amplify app. </p>
219
219
  * @public
220
220
  */
221
- iamServiceRoleArn?: string;
221
+ iamServiceRoleArn?: string | undefined;
222
222
  /**
223
223
  * <p>The OAuth token for a third-party source control system for an Amplify app. The OAuth
224
224
  * token is used to create a webhook and a read-only deploy key using SSH cloning. The
@@ -234,7 +234,7 @@ export interface CreateAppRequest {
234
234
  * <i>Amplify User Guide</i> .</p>
235
235
  * @public
236
236
  */
237
- oauthToken?: string;
237
+ oauthToken?: string | undefined;
238
238
  /**
239
239
  * <p>The personal access token for a GitHub repository for an Amplify app. The personal
240
240
  * access token is used to authorize access to a GitHub repository using the Amplify GitHub
@@ -249,7 +249,7 @@ export interface CreateAppRequest {
249
249
  * <i>Amplify User Guide</i> .</p>
250
250
  * @public
251
251
  */
252
- accessToken?: string;
252
+ accessToken?: string | undefined;
253
253
  /**
254
254
  * <p>The environment variables map for an Amplify app. </p>
255
255
  * <p>For a list of the environment variables that are accessible to Amplify by default, see
@@ -258,71 +258,71 @@ export interface CreateAppRequest {
258
258
  * Guide</i>.</p>
259
259
  * @public
260
260
  */
261
- environmentVariables?: Record<string, string>;
261
+ environmentVariables?: Record<string, string> | undefined;
262
262
  /**
263
263
  * <p>Enables the auto building of branches for an Amplify app. </p>
264
264
  * @public
265
265
  */
266
- enableBranchAutoBuild?: boolean;
266
+ enableBranchAutoBuild?: boolean | undefined;
267
267
  /**
268
268
  * <p>Automatically disconnects a branch in the Amplify console when you delete a branch
269
269
  * from your Git repository. </p>
270
270
  * @public
271
271
  */
272
- enableBranchAutoDeletion?: boolean;
272
+ enableBranchAutoDeletion?: boolean | undefined;
273
273
  /**
274
274
  * <p>Enables basic authorization for an Amplify app. This will apply to all branches that
275
275
  * are part of this app. </p>
276
276
  * @public
277
277
  */
278
- enableBasicAuth?: boolean;
278
+ enableBasicAuth?: boolean | undefined;
279
279
  /**
280
280
  * <p>The credentials for basic authorization for an Amplify app. You must base64-encode the
281
281
  * authorization credentials and provide them in the format
282
282
  * <code>user:password</code>.</p>
283
283
  * @public
284
284
  */
285
- basicAuthCredentials?: string;
285
+ basicAuthCredentials?: string | undefined;
286
286
  /**
287
287
  * <p>The custom rewrite and redirect rules for an Amplify app. </p>
288
288
  * @public
289
289
  */
290
- customRules?: CustomRule[];
290
+ customRules?: CustomRule[] | undefined;
291
291
  /**
292
292
  * <p>The tag for an Amplify app. </p>
293
293
  * @public
294
294
  */
295
- tags?: Record<string, string>;
295
+ tags?: Record<string, string> | undefined;
296
296
  /**
297
297
  * <p>The build specification (build spec) for an Amplify app. </p>
298
298
  * @public
299
299
  */
300
- buildSpec?: string;
300
+ buildSpec?: string | undefined;
301
301
  /**
302
302
  * <p>The custom HTTP headers for an Amplify app.</p>
303
303
  * @public
304
304
  */
305
- customHeaders?: string;
305
+ customHeaders?: string | undefined;
306
306
  /**
307
307
  * <p>Enables automated branch creation for an Amplify app. </p>
308
308
  * @public
309
309
  */
310
- enableAutoBranchCreation?: boolean;
310
+ enableAutoBranchCreation?: boolean | undefined;
311
311
  /**
312
312
  * <p>The automated branch creation glob patterns for an Amplify app. </p>
313
313
  * @public
314
314
  */
315
- autoBranchCreationPatterns?: string[];
315
+ autoBranchCreationPatterns?: string[] | undefined;
316
316
  /**
317
317
  * <p>The automated branch creation configuration for an Amplify app. </p>
318
318
  * @public
319
319
  */
320
- autoBranchCreationConfig?: AutoBranchCreationConfig;
320
+ autoBranchCreationConfig?: AutoBranchCreationConfig | undefined;
321
321
  /**
322
322
  * <p>The cache configuration for the Amplify app.</p>
323
323
  * @public
324
324
  */
325
- cacheConfig?: CacheConfig;
325
+ cacheConfig?: CacheConfig | undefined;
326
326
  }
327
327
  /**
328
328
  * <p>Describes the information about a production branch for an Amplify app. </p>
@@ -333,22 +333,22 @@ export interface ProductionBranch {
333
333
  * <p>The last deploy time of the production branch. </p>
334
334
  * @public
335
335
  */
336
- lastDeployTime?: Date;
336
+ lastDeployTime?: Date | undefined;
337
337
  /**
338
338
  * <p>The status of the production branch. </p>
339
339
  * @public
340
340
  */
341
- status?: string;
341
+ status?: string | undefined;
342
342
  /**
343
343
  * <p>The thumbnail URL for the production branch. </p>
344
344
  * @public
345
345
  */
346
- thumbnailUrl?: string;
346
+ thumbnailUrl?: string | undefined;
347
347
  /**
348
348
  * <p>The branch name for the production branch. </p>
349
349
  * @public
350
350
  */
351
- branchName?: string;
351
+ branchName?: string | undefined;
352
352
  }
353
353
  /**
354
354
  * @public
@@ -388,7 +388,7 @@ export interface App {
388
388
  * <p>The tag for the Amplify app. </p>
389
389
  * @public
390
390
  */
391
- tags?: Record<string, string>;
391
+ tags?: Record<string, string> | undefined;
392
392
  /**
393
393
  * <p>The description for the Amplify app. </p>
394
394
  * @public
@@ -424,7 +424,7 @@ export interface App {
424
424
  * (ARN) of the Amplify app. </p>
425
425
  * @public
426
426
  */
427
- iamServiceRoleArn?: string;
427
+ iamServiceRoleArn?: string | undefined;
428
428
  /**
429
429
  * <p>The environment variables for the Amplify app. </p>
430
430
  * <p>For a list of the environment variables that are accessible to Amplify by default, see
@@ -449,7 +449,7 @@ export interface App {
449
449
  * your Git repository.</p>
450
450
  * @public
451
451
  */
452
- enableBranchAutoDeletion?: boolean;
452
+ enableBranchAutoDeletion?: boolean | undefined;
453
453
  /**
454
454
  * <p>Enables basic authorization for the Amplify app's branches. </p>
455
455
  * @public
@@ -461,43 +461,43 @@ export interface App {
461
461
  * <code>user:password</code>.</p>
462
462
  * @public
463
463
  */
464
- basicAuthCredentials?: string;
464
+ basicAuthCredentials?: string | undefined;
465
465
  /**
466
466
  * <p>Describes the custom redirect and rewrite rules for the Amplify app. </p>
467
467
  * @public
468
468
  */
469
- customRules?: CustomRule[];
469
+ customRules?: CustomRule[] | undefined;
470
470
  /**
471
471
  * <p>Describes the information about a production branch of the Amplify app. </p>
472
472
  * @public
473
473
  */
474
- productionBranch?: ProductionBranch;
474
+ productionBranch?: ProductionBranch | undefined;
475
475
  /**
476
476
  * <p>Describes the content of the build specification (build spec) for the Amplify app.
477
477
  * </p>
478
478
  * @public
479
479
  */
480
- buildSpec?: string;
480
+ buildSpec?: string | undefined;
481
481
  /**
482
482
  * <p>Describes the custom HTTP headers for the Amplify app.</p>
483
483
  * @public
484
484
  */
485
- customHeaders?: string;
485
+ customHeaders?: string | undefined;
486
486
  /**
487
487
  * <p>Enables automated branch creation for the Amplify app. </p>
488
488
  * @public
489
489
  */
490
- enableAutoBranchCreation?: boolean;
490
+ enableAutoBranchCreation?: boolean | undefined;
491
491
  /**
492
492
  * <p>Describes the automated branch creation glob patterns for the Amplify app. </p>
493
493
  * @public
494
494
  */
495
- autoBranchCreationPatterns?: string[];
495
+ autoBranchCreationPatterns?: string[] | undefined;
496
496
  /**
497
497
  * <p>Describes the automated branch creation configuration for the Amplify app. </p>
498
498
  * @public
499
499
  */
500
- autoBranchCreationConfig?: AutoBranchCreationConfig;
500
+ autoBranchCreationConfig?: AutoBranchCreationConfig | undefined;
501
501
  /**
502
502
  * <note>
503
503
  * <p>This is for internal use.</p>
@@ -508,14 +508,14 @@ export interface App {
508
508
  * repository, and <code>SSH</code> for GitLab and Bitbucket repositories.</p>
509
509
  * @public
510
510
  */
511
- repositoryCloneMethod?: RepositoryCloneMethod;
511
+ repositoryCloneMethod?: RepositoryCloneMethod | undefined;
512
512
  /**
513
513
  * <p>The cache configuration for the Amplify app. If you don't specify the
514
514
  * cache configuration <code>type</code>, Amplify uses the default
515
515
  * <code>AMPLIFY_MANAGED</code> setting.</p>
516
516
  * @public
517
517
  */
518
- cacheConfig?: CacheConfig;
518
+ cacheConfig?: CacheConfig | undefined;
519
519
  }
520
520
  /**
521
521
  * @public
@@ -595,12 +595,12 @@ export interface CreateBackendEnvironmentRequest {
595
595
  * <p>The AWS CloudFormation stack name of a backend environment. </p>
596
596
  * @public
597
597
  */
598
- stackName?: string;
598
+ stackName?: string | undefined;
599
599
  /**
600
600
  * <p>The name of deployment artifacts. </p>
601
601
  * @public
602
602
  */
603
- deploymentArtifacts?: string;
603
+ deploymentArtifacts?: string | undefined;
604
604
  }
605
605
  /**
606
606
  * <p>Describes the backend environment associated with a <code>Branch</code> of a Gen 1
@@ -625,12 +625,12 @@ export interface BackendEnvironment {
625
625
  * <p>The AWS CloudFormation stack name of a backend environment. </p>
626
626
  * @public
627
627
  */
628
- stackName?: string;
628
+ stackName?: string | undefined;
629
629
  /**
630
630
  * <p>The name of deployment artifacts. </p>
631
631
  * @public
632
632
  */
633
- deploymentArtifacts?: string;
633
+ deploymentArtifacts?: string | undefined;
634
634
  /**
635
635
  * <p>The creation date and time for a backend environment that is part of an Amplify app.
636
636
  * </p>
@@ -680,7 +680,7 @@ export interface Backend {
680
680
  * <p>The Amazon Resource Name (ARN) for the CloudFormation stack.</p>
681
681
  * @public
682
682
  */
683
- stackArn?: string;
683
+ stackArn?: string | undefined;
684
684
  }
685
685
  /**
686
686
  * <p> The request structure for the create branch request. </p>
@@ -701,44 +701,44 @@ export interface CreateBranchRequest {
701
701
  * <p>The description for the branch. </p>
702
702
  * @public
703
703
  */
704
- description?: string;
704
+ description?: string | undefined;
705
705
  /**
706
706
  * <p>Describes the current stage for the branch. </p>
707
707
  * @public
708
708
  */
709
- stage?: Stage;
709
+ stage?: Stage | undefined;
710
710
  /**
711
711
  * <p> The framework for the branch. </p>
712
712
  * @public
713
713
  */
714
- framework?: string;
714
+ framework?: string | undefined;
715
715
  /**
716
716
  * <p> Enables notifications for the branch. </p>
717
717
  * @public
718
718
  */
719
- enableNotification?: boolean;
719
+ enableNotification?: boolean | undefined;
720
720
  /**
721
721
  * <p> Enables auto building for the branch. </p>
722
722
  * @public
723
723
  */
724
- enableAutoBuild?: boolean;
724
+ enableAutoBuild?: boolean | undefined;
725
725
  /**
726
726
  * <p> The environment variables for the branch. </p>
727
727
  * @public
728
728
  */
729
- environmentVariables?: Record<string, string>;
729
+ environmentVariables?: Record<string, string> | undefined;
730
730
  /**
731
731
  * <p> The basic authorization credentials for the branch. You must base64-encode the
732
732
  * authorization credentials and provide them in the format
733
733
  * <code>user:password</code>.</p>
734
734
  * @public
735
735
  */
736
- basicAuthCredentials?: string;
736
+ basicAuthCredentials?: string | undefined;
737
737
  /**
738
738
  * <p> Enables basic authorization for the branch. </p>
739
739
  * @public
740
740
  */
741
- enableBasicAuth?: boolean;
741
+ enableBasicAuth?: boolean | undefined;
742
742
  /**
743
743
  * <p>Enables performance mode for the branch.</p>
744
744
  * <p>Performance mode optimizes for faster hosting performance by keeping content cached at
@@ -746,37 +746,37 @@ export interface CreateBranchRequest {
746
746
  * or code changes can take up to 10 minutes to roll out. </p>
747
747
  * @public
748
748
  */
749
- enablePerformanceMode?: boolean;
749
+ enablePerformanceMode?: boolean | undefined;
750
750
  /**
751
751
  * <p> The tag for the branch. </p>
752
752
  * @public
753
753
  */
754
- tags?: Record<string, string>;
754
+ tags?: Record<string, string> | undefined;
755
755
  /**
756
756
  * <p> The build specification (build spec) for the branch. </p>
757
757
  * @public
758
758
  */
759
- buildSpec?: string;
759
+ buildSpec?: string | undefined;
760
760
  /**
761
761
  * <p> The content Time To Live (TTL) for the website in seconds. </p>
762
762
  * @public
763
763
  */
764
- ttl?: string;
764
+ ttl?: string | undefined;
765
765
  /**
766
766
  * <p> The display name for a branch. This is used as the default domain prefix. </p>
767
767
  * @public
768
768
  */
769
- displayName?: string;
769
+ displayName?: string | undefined;
770
770
  /**
771
771
  * <p> Enables pull request previews for this branch. </p>
772
772
  * @public
773
773
  */
774
- enablePullRequestPreview?: boolean;
774
+ enablePullRequestPreview?: boolean | undefined;
775
775
  /**
776
776
  * <p> The Amplify environment name for the pull request. </p>
777
777
  * @public
778
778
  */
779
- pullRequestEnvironmentName?: string;
779
+ pullRequestEnvironmentName?: string | undefined;
780
780
  /**
781
781
  * <p>The Amazon Resource Name (ARN) for a backend environment that is part of a Gen 1 Amplify
782
782
  * app. </p>
@@ -785,7 +785,7 @@ export interface CreateBranchRequest {
785
785
  * command line interface (CLI).</p>
786
786
  * @public
787
787
  */
788
- backendEnvironmentArn?: string;
788
+ backendEnvironmentArn?: string | undefined;
789
789
  /**
790
790
  * <p>The backend for a <code>Branch</code> of an Amplify app. Use for a
791
791
  * backend created from an CloudFormation stack.</p>
@@ -794,7 +794,7 @@ export interface CreateBranchRequest {
794
794
  * code.</p>
795
795
  * @public
796
796
  */
797
- backend?: Backend;
797
+ backend?: Backend | undefined;
798
798
  }
799
799
  /**
800
800
  * <p> The branch for an Amplify app, which maps to a third-party repository branch. </p>
@@ -820,7 +820,7 @@ export interface Branch {
820
820
  * <p> The tag for the branch of an Amplify app. </p>
821
821
  * @public
822
822
  */
823
- tags?: Record<string, string>;
823
+ tags?: Record<string, string> | undefined;
824
824
  /**
825
825
  * <p> The current stage for the branch that is part of an Amplify app. </p>
826
826
  * @public
@@ -888,25 +888,25 @@ export interface Branch {
888
888
  * or code changes can take up to 10 minutes to roll out. </p>
889
889
  * @public
890
890
  */
891
- enablePerformanceMode?: boolean;
891
+ enablePerformanceMode?: boolean | undefined;
892
892
  /**
893
893
  * <p> The thumbnail URL for the branch of an Amplify app. </p>
894
894
  * @public
895
895
  */
896
- thumbnailUrl?: string;
896
+ thumbnailUrl?: string | undefined;
897
897
  /**
898
898
  * <p> The basic authorization credentials for a branch of an Amplify app. You must
899
899
  * base64-encode the authorization credentials and provide them in the format
900
900
  * <code>user:password</code>.</p>
901
901
  * @public
902
902
  */
903
- basicAuthCredentials?: string;
903
+ basicAuthCredentials?: string | undefined;
904
904
  /**
905
905
  * <p> The build specification (build spec) content for the branch of an Amplify app.
906
906
  * </p>
907
907
  * @public
908
908
  */
909
- buildSpec?: string;
909
+ buildSpec?: string | undefined;
910
910
  /**
911
911
  * <p> The content Time to Live (TTL) for the website in seconds. </p>
912
912
  * @public
@@ -916,7 +916,7 @@ export interface Branch {
916
916
  * <p> A list of custom resources that are linked to this branch. </p>
917
917
  * @public
918
918
  */
919
- associatedResources?: string[];
919
+ associatedResources?: string[] | undefined;
920
920
  /**
921
921
  * <p> Enables pull request previews for the branch. </p>
922
922
  * @public
@@ -926,17 +926,17 @@ export interface Branch {
926
926
  * <p> The Amplify environment name for the pull request. </p>
927
927
  * @public
928
928
  */
929
- pullRequestEnvironmentName?: string;
929
+ pullRequestEnvironmentName?: string | undefined;
930
930
  /**
931
931
  * <p> The destination branch if the branch is a pull request branch. </p>
932
932
  * @public
933
933
  */
934
- destinationBranch?: string;
934
+ destinationBranch?: string | undefined;
935
935
  /**
936
936
  * <p> The source branch if the branch is a pull request branch. </p>
937
937
  * @public
938
938
  */
939
- sourceBranch?: string;
939
+ sourceBranch?: string | undefined;
940
940
  /**
941
941
  * <p> The Amazon Resource Name (ARN) for a backend environment that is part of an Amplify app. </p>
942
942
  * <p>This property is available to Amplify Gen 1 apps only. When you deploy an application with
@@ -944,7 +944,7 @@ export interface Branch {
944
944
  * code.</p>
945
945
  * @public
946
946
  */
947
- backendEnvironmentArn?: string;
947
+ backendEnvironmentArn?: string | undefined;
948
948
  /**
949
949
  * <p>Describes the backend associated with an Amplify
950
950
  * <code>Branch</code>.</p>
@@ -953,7 +953,7 @@ export interface Branch {
953
953
  * code.</p>
954
954
  * @public
955
955
  */
956
- backend?: Backend;
956
+ backend?: Backend | undefined;
957
957
  }
958
958
  /**
959
959
  * <p> The result structure for create branch request. </p>
@@ -989,7 +989,7 @@ export interface CreateDeploymentRequest {
989
989
  * the zipped files. </p>
990
990
  * @public
991
991
  */
992
- fileMap?: Record<string, string>;
992
+ fileMap?: Record<string, string> | undefined;
993
993
  }
994
994
  /**
995
995
  * <p> The result structure for the create a new deployment request. </p>
@@ -1000,7 +1000,7 @@ export interface CreateDeploymentResult {
1000
1000
  * <p> The job ID for this deployment. will supply to start deployment api. </p>
1001
1001
  * @public
1002
1002
  */
1003
- jobId?: string;
1003
+ jobId?: string | undefined;
1004
1004
  /**
1005
1005
  * <p> When the <code>fileMap</code> argument is provided in the request,
1006
1006
  * <code>fileUploadUrls</code> will contain a map of file names to upload URLs. </p>
@@ -1052,7 +1052,7 @@ export interface CertificateSettings {
1052
1052
  * <p>This field is required only when the certificate type is <code>CUSTOM</code>.</p>
1053
1053
  * @public
1054
1054
  */
1055
- customCertificateArn?: string;
1055
+ customCertificateArn?: string | undefined;
1056
1056
  }
1057
1057
  /**
1058
1058
  * <p> Describes the settings for the subdomain. </p>
@@ -1089,7 +1089,7 @@ export interface CreateDomainAssociationRequest {
1089
1089
  * <p> Enables the automated creation of subdomains for branches. </p>
1090
1090
  * @public
1091
1091
  */
1092
- enableAutoSubDomain?: boolean;
1092
+ enableAutoSubDomain?: boolean | undefined;
1093
1093
  /**
1094
1094
  * <p> The setting for the subdomain. </p>
1095
1095
  * @public
@@ -1099,20 +1099,20 @@ export interface CreateDomainAssociationRequest {
1099
1099
  * <p> Sets the branch patterns for automatic subdomain creation. </p>
1100
1100
  * @public
1101
1101
  */
1102
- autoSubDomainCreationPatterns?: string[];
1102
+ autoSubDomainCreationPatterns?: string[] | undefined;
1103
1103
  /**
1104
1104
  * <p> The required AWS Identity and Access Management (IAM) service role for the Amazon
1105
1105
  * Resource Name (ARN) for automatically creating subdomains. </p>
1106
1106
  * @public
1107
1107
  */
1108
- autoSubDomainIAMRole?: string;
1108
+ autoSubDomainIAMRole?: string | undefined;
1109
1109
  /**
1110
1110
  * <p>The type of SSL/TLS certificate to use for your custom domain. If you don't specify a
1111
1111
  * certificate type, Amplify uses the default certificate that it provisions and manages
1112
1112
  * for you.</p>
1113
1113
  * @public
1114
1114
  */
1115
- certificateSettings?: CertificateSettings;
1115
+ certificateSettings?: CertificateSettings | undefined;
1116
1116
  }
1117
1117
  /**
1118
1118
  * <p>Describes the current SSL/TLS certificate that is in use for the domain. If you are
@@ -1140,12 +1140,12 @@ export interface Certificate {
1140
1140
  * <p>This field is required only when the certificate type is <code>CUSTOM</code>.</p>
1141
1141
  * @public
1142
1142
  */
1143
- customCertificateArn?: string;
1143
+ customCertificateArn?: string | undefined;
1144
1144
  /**
1145
1145
  * <p>The DNS record for certificate verification.</p>
1146
1146
  * @public
1147
1147
  */
1148
- certificateVerificationDNSRecord?: string;
1148
+ certificateVerificationDNSRecord?: string | undefined;
1149
1149
  }
1150
1150
  /**
1151
1151
  * @public
@@ -1229,13 +1229,13 @@ export interface DomainAssociation {
1229
1229
  * <p> Sets branch patterns for automatic subdomain creation. </p>
1230
1230
  * @public
1231
1231
  */
1232
- autoSubDomainCreationPatterns?: string[];
1232
+ autoSubDomainCreationPatterns?: string[] | undefined;
1233
1233
  /**
1234
1234
  * <p> The required AWS Identity and Access Management (IAM) service role for the Amazon
1235
1235
  * Resource Name (ARN) for automatically creating subdomains. </p>
1236
1236
  * @public
1237
1237
  */
1238
- autoSubDomainIAMRole?: string;
1238
+ autoSubDomainIAMRole?: string | undefined;
1239
1239
  /**
1240
1240
  * <p> The current status of the domain association. </p>
1241
1241
  * @public
@@ -1289,7 +1289,7 @@ export interface DomainAssociation {
1289
1289
  * </dl>
1290
1290
  * @public
1291
1291
  */
1292
- updateStatus?: UpdateStatus;
1292
+ updateStatus?: UpdateStatus | undefined;
1293
1293
  /**
1294
1294
  * <p> Additional information that describes why the domain association is in the current
1295
1295
  * state.</p>
@@ -1300,7 +1300,7 @@ export interface DomainAssociation {
1300
1300
  * <p> The DNS record for certificate verification. </p>
1301
1301
  * @public
1302
1302
  */
1303
- certificateVerificationDNSRecord?: string;
1303
+ certificateVerificationDNSRecord?: string | undefined;
1304
1304
  /**
1305
1305
  * <p> The subdomains for the domain association. </p>
1306
1306
  * @public
@@ -1316,7 +1316,7 @@ export interface DomainAssociation {
1316
1316
  * current active certificate.</p>
1317
1317
  * @public
1318
1318
  */
1319
- certificate?: Certificate;
1319
+ certificate?: Certificate | undefined;
1320
1320
  }
1321
1321
  /**
1322
1322
  * <p> The result structure for the create domain association request. </p>
@@ -1349,7 +1349,7 @@ export interface CreateWebhookRequest {
1349
1349
  * <p>The description for a webhook. </p>
1350
1350
  * @public
1351
1351
  */
1352
- description?: string;
1352
+ description?: string | undefined;
1353
1353
  }
1354
1354
  /**
1355
1355
  * <p>Describes a webhook that connects repository events to an Amplify app. </p>
@@ -1614,7 +1614,7 @@ export interface JobSummary {
1614
1614
  * <p> The end date and time for the job. </p>
1615
1615
  * @public
1616
1616
  */
1617
- endTime?: Date;
1617
+ endTime?: Date | undefined;
1618
1618
  /**
1619
1619
  * <p> The type for the job. If the value is <code>RELEASE</code>, the job was manually
1620
1620
  * released from its source by using the <code>StartJob</code> API. This value is available only for apps
@@ -1630,7 +1630,7 @@ export interface JobSummary {
1630
1630
  * downloads a single .zip file, or an Amazon S3 bucket and prefix.</p>
1631
1631
  * @public
1632
1632
  */
1633
- sourceUrl?: string;
1633
+ sourceUrl?: string | undefined;
1634
1634
  /**
1635
1635
  * <p>The type of source specified by the <code>sourceURL</code>.
1636
1636
  * If the value is <code>ZIP</code>, the source is a .zip file.
@@ -1638,7 +1638,7 @@ export interface JobSummary {
1638
1638
  * prefix. If no value is specified, the default is <code>ZIP</code>.</p>
1639
1639
  * @public
1640
1640
  */
1641
- sourceUrlType?: SourceUrlType;
1641
+ sourceUrlType?: SourceUrlType | undefined;
1642
1642
  }
1643
1643
  /**
1644
1644
  * <p> The result structure for the delete job request. </p>
@@ -1683,13 +1683,13 @@ export interface GenerateAccessLogsRequest {
1683
1683
  * start time. </p>
1684
1684
  * @public
1685
1685
  */
1686
- startTime?: Date;
1686
+ startTime?: Date | undefined;
1687
1687
  /**
1688
1688
  * <p>The time at which the logs should end. The time range specified is inclusive of the
1689
1689
  * end time. </p>
1690
1690
  * @public
1691
1691
  */
1692
- endTime?: Date;
1692
+ endTime?: Date | undefined;
1693
1693
  /**
1694
1694
  * <p>The name of the domain. </p>
1695
1695
  * @public
@@ -1710,7 +1710,7 @@ export interface GenerateAccessLogsResult {
1710
1710
  * <p>The pre-signed URL for the requested access logs. </p>
1711
1711
  * @public
1712
1712
  */
1713
- logUrl?: string;
1713
+ logUrl?: string | undefined;
1714
1714
  }
1715
1715
  /**
1716
1716
  * <p>The request structure for the get app request. </p>
@@ -1892,38 +1892,38 @@ export interface Step {
1892
1892
  * <p> The URL to the logs for the execution step. </p>
1893
1893
  * @public
1894
1894
  */
1895
- logUrl?: string;
1895
+ logUrl?: string | undefined;
1896
1896
  /**
1897
1897
  * <p> The URL to the artifact for the execution step. </p>
1898
1898
  * @public
1899
1899
  */
1900
- artifactsUrl?: string;
1900
+ artifactsUrl?: string | undefined;
1901
1901
  /**
1902
1902
  * <p> The URL to the test artifact for the execution step. </p>
1903
1903
  * @public
1904
1904
  */
1905
- testArtifactsUrl?: string;
1905
+ testArtifactsUrl?: string | undefined;
1906
1906
  /**
1907
1907
  * <p> The URL to the test configuration for the execution step. </p>
1908
1908
  * @public
1909
1909
  */
1910
- testConfigUrl?: string;
1910
+ testConfigUrl?: string | undefined;
1911
1911
  /**
1912
1912
  * <p> The list of screenshot URLs for the execution step, if relevant. </p>
1913
1913
  * @public
1914
1914
  */
1915
- screenshots?: Record<string, string>;
1915
+ screenshots?: Record<string, string> | undefined;
1916
1916
  /**
1917
1917
  * <p> The reason for the current step status. </p>
1918
1918
  * @public
1919
1919
  */
1920
- statusReason?: string;
1920
+ statusReason?: string | undefined;
1921
1921
  /**
1922
1922
  * <p> The context for the current step. Includes a build image if the step is build.
1923
1923
  * </p>
1924
1924
  * @public
1925
1925
  */
1926
- context?: string;
1926
+ context?: string | undefined;
1927
1927
  }
1928
1928
  /**
1929
1929
  * <p> Describes an execution job for an Amplify app. </p>
@@ -1983,12 +1983,12 @@ export interface ListAppsRequest {
1983
1983
  * its value in another request to retrieve more entries. </p>
1984
1984
  * @public
1985
1985
  */
1986
- nextToken?: string;
1986
+ nextToken?: string | undefined;
1987
1987
  /**
1988
1988
  * <p>The maximum number of records to list in a single response. </p>
1989
1989
  * @public
1990
1990
  */
1991
- maxResults?: number;
1991
+ maxResults?: number | undefined;
1992
1992
  }
1993
1993
  /**
1994
1994
  * <p>The result structure for an Amplify app list request. </p>
@@ -2006,7 +2006,7 @@ export interface ListAppsResult {
2006
2006
  * </p>
2007
2007
  * @public
2008
2008
  */
2009
- nextToken?: string;
2009
+ nextToken?: string | undefined;
2010
2010
  }
2011
2011
  /**
2012
2012
  * <p>Describes the request structure for the list artifacts request. </p>
@@ -2034,12 +2034,12 @@ export interface ListArtifactsRequest {
2034
2034
  * </p>
2035
2035
  * @public
2036
2036
  */
2037
- nextToken?: string;
2037
+ nextToken?: string | undefined;
2038
2038
  /**
2039
2039
  * <p>The maximum number of records to list in a single response. </p>
2040
2040
  * @public
2041
2041
  */
2042
- maxResults?: number;
2042
+ maxResults?: number | undefined;
2043
2043
  }
2044
2044
  /**
2045
2045
  * <p>Describes an artifact. </p>
@@ -2072,7 +2072,7 @@ export interface ListArtifactsResult {
2072
2072
  * value in another request to retrieve more entries. </p>
2073
2073
  * @public
2074
2074
  */
2075
- nextToken?: string;
2075
+ nextToken?: string | undefined;
2076
2076
  }
2077
2077
  /**
2078
2078
  * <p>The request structure for the list backend environments request. </p>
@@ -2088,19 +2088,19 @@ export interface ListBackendEnvironmentsRequest {
2088
2088
  * <p>The name of the backend environment </p>
2089
2089
  * @public
2090
2090
  */
2091
- environmentName?: string;
2091
+ environmentName?: string | undefined;
2092
2092
  /**
2093
2093
  * <p>A pagination token. Set to null to start listing backend environments from the start.
2094
2094
  * If a non-null pagination token is returned in a result, pass its value in here to list
2095
2095
  * more backend environments. </p>
2096
2096
  * @public
2097
2097
  */
2098
- nextToken?: string;
2098
+ nextToken?: string | undefined;
2099
2099
  /**
2100
2100
  * <p>The maximum number of records to list in a single response. </p>
2101
2101
  * @public
2102
2102
  */
2103
- maxResults?: number;
2103
+ maxResults?: number | undefined;
2104
2104
  }
2105
2105
  /**
2106
2106
  * <p>The result structure for the list backend environments result. </p>
@@ -2117,7 +2117,7 @@ export interface ListBackendEnvironmentsResult {
2117
2117
  * value in another request to retrieve more entries. </p>
2118
2118
  * @public
2119
2119
  */
2120
- nextToken?: string;
2120
+ nextToken?: string | undefined;
2121
2121
  }
2122
2122
  /**
2123
2123
  * <p>The request structure for the list branches request. </p>
@@ -2135,12 +2135,12 @@ export interface ListBranchesRequest {
2135
2135
  * branches. </p>
2136
2136
  * @public
2137
2137
  */
2138
- nextToken?: string;
2138
+ nextToken?: string | undefined;
2139
2139
  /**
2140
2140
  * <p> The maximum number of records to list in a single response. </p>
2141
2141
  * @public
2142
2142
  */
2143
- maxResults?: number;
2143
+ maxResults?: number | undefined;
2144
2144
  }
2145
2145
  /**
2146
2146
  * <p> The result structure for the list branches request. </p>
@@ -2157,7 +2157,7 @@ export interface ListBranchesResult {
2157
2157
  * value in another request to retrieve more entries. </p>
2158
2158
  * @public
2159
2159
  */
2160
- nextToken?: string;
2160
+ nextToken?: string | undefined;
2161
2161
  }
2162
2162
  /**
2163
2163
  * <p> The request structure for the list domain associations request. </p>
@@ -2175,12 +2175,12 @@ export interface ListDomainAssociationsRequest {
2175
2175
  * </p>
2176
2176
  * @public
2177
2177
  */
2178
- nextToken?: string;
2178
+ nextToken?: string | undefined;
2179
2179
  /**
2180
2180
  * <p> The maximum number of records to list in a single response. </p>
2181
2181
  * @public
2182
2182
  */
2183
- maxResults?: number;
2183
+ maxResults?: number | undefined;
2184
2184
  }
2185
2185
  /**
2186
2186
  * <p> The result structure for the list domain association request. </p>
@@ -2197,7 +2197,7 @@ export interface ListDomainAssociationsResult {
2197
2197
  * value in another request to retrieve more entries. </p>
2198
2198
  * @public
2199
2199
  */
2200
- nextToken?: string;
2200
+ nextToken?: string | undefined;
2201
2201
  }
2202
2202
  /**
2203
2203
  * <p> The request structure for the list jobs request. </p>
@@ -2220,12 +2220,12 @@ export interface ListJobsRequest {
2220
2220
  * </p>
2221
2221
  * @public
2222
2222
  */
2223
- nextToken?: string;
2223
+ nextToken?: string | undefined;
2224
2224
  /**
2225
2225
  * <p>The maximum number of records to list in a single response. </p>
2226
2226
  * @public
2227
2227
  */
2228
- maxResults?: number;
2228
+ maxResults?: number | undefined;
2229
2229
  }
2230
2230
  /**
2231
2231
  * <p>The maximum number of records to list in a single response. </p>
@@ -2242,7 +2242,7 @@ export interface ListJobsResult {
2242
2242
  * value in another request to retrieve more entries. </p>
2243
2243
  * @public
2244
2244
  */
2245
- nextToken?: string;
2245
+ nextToken?: string | undefined;
2246
2246
  }
2247
2247
  /**
2248
2248
  * <p>The request structure to use to list tags for a resource. </p>
@@ -2264,7 +2264,7 @@ export interface ListTagsForResourceResponse {
2264
2264
  * <p>A list of tags for the specified The Amazon Resource Name (ARN). </p>
2265
2265
  * @public
2266
2266
  */
2267
- tags?: Record<string, string>;
2267
+ tags?: Record<string, string> | undefined;
2268
2268
  }
2269
2269
  /**
2270
2270
  * <p>An operation failed due to a non-existent resource. </p>
@@ -2295,12 +2295,12 @@ export interface ListWebhooksRequest {
2295
2295
  * more webhooks. </p>
2296
2296
  * @public
2297
2297
  */
2298
- nextToken?: string;
2298
+ nextToken?: string | undefined;
2299
2299
  /**
2300
2300
  * <p>The maximum number of records to list in a single response. </p>
2301
2301
  * @public
2302
2302
  */
2303
- maxResults?: number;
2303
+ maxResults?: number | undefined;
2304
2304
  }
2305
2305
  /**
2306
2306
  * <p>The result structure for the list webhooks request. </p>
@@ -2317,7 +2317,7 @@ export interface ListWebhooksResult {
2317
2317
  * its value in another request to retrieve more entries. </p>
2318
2318
  * @public
2319
2319
  */
2320
- nextToken?: string;
2320
+ nextToken?: string | undefined;
2321
2321
  }
2322
2322
  /**
2323
2323
  * <p>The request structure for the start a deployment request. </p>
@@ -2338,13 +2338,13 @@ export interface StartDeploymentRequest {
2338
2338
  * <p>The job ID for this deployment that is generated by the <code>CreateDeployment</code> request. </p>
2339
2339
  * @public
2340
2340
  */
2341
- jobId?: string;
2341
+ jobId?: string | undefined;
2342
2342
  /**
2343
2343
  * <p>The source URL for the deployment that is used when calling <code>StartDeployment</code> without <code>CreateDeployment</code>. The source URL can be either an HTTP GET URL that is publicly accessible and
2344
2344
  * downloads a single .zip file, or an Amazon S3 bucket and prefix.</p>
2345
2345
  * @public
2346
2346
  */
2347
- sourceUrl?: string;
2347
+ sourceUrl?: string | undefined;
2348
2348
  /**
2349
2349
  * <p>The type of source specified by the <code>sourceURL</code>.
2350
2350
  * If the value is <code>ZIP</code>, the source is a .zip file.
@@ -2352,7 +2352,7 @@ export interface StartDeploymentRequest {
2352
2352
  * prefix. If no value is specified, the default is <code>ZIP</code>.</p>
2353
2353
  * @public
2354
2354
  */
2355
- sourceUrlType?: SourceUrlType;
2355
+ sourceUrlType?: SourceUrlType | undefined;
2356
2356
  }
2357
2357
  /**
2358
2358
  * <p>The result structure for the start a deployment request. </p>
@@ -2385,7 +2385,7 @@ export interface StartJobRequest {
2385
2385
  * <code>jobType</code> is <code>RETRY</code>. </p>
2386
2386
  * @public
2387
2387
  */
2388
- jobId?: string;
2388
+ jobId?: string | undefined;
2389
2389
  /**
2390
2390
  * <p>Describes the type for the job. The job type <code>RELEASE</code> starts a new job
2391
2391
  * with the latest change from the specified branch. This value is available only for apps
@@ -2399,22 +2399,22 @@ export interface StartJobRequest {
2399
2399
  * <p>A descriptive reason for starting the job.</p>
2400
2400
  * @public
2401
2401
  */
2402
- jobReason?: string;
2402
+ jobReason?: string | undefined;
2403
2403
  /**
2404
2404
  * <p> The commit ID from a third-party repository provider for the job. </p>
2405
2405
  * @public
2406
2406
  */
2407
- commitId?: string;
2407
+ commitId?: string | undefined;
2408
2408
  /**
2409
2409
  * <p> The commit message from a third-party repository provider for the job. </p>
2410
2410
  * @public
2411
2411
  */
2412
- commitMessage?: string;
2412
+ commitMessage?: string | undefined;
2413
2413
  /**
2414
2414
  * <p> The commit date and time for the job. </p>
2415
2415
  * @public
2416
2416
  */
2417
- commitTime?: Date;
2417
+ commitTime?: Date | undefined;
2418
2418
  }
2419
2419
  /**
2420
2420
  * <p> The result structure for the run job request. </p>
@@ -2517,12 +2517,12 @@ export interface UpdateAppRequest {
2517
2517
  * <p>The name for an Amplify app. </p>
2518
2518
  * @public
2519
2519
  */
2520
- name?: string;
2520
+ name?: string | undefined;
2521
2521
  /**
2522
2522
  * <p>The description for an Amplify app. </p>
2523
2523
  * @public
2524
2524
  */
2525
- description?: string;
2525
+ description?: string | undefined;
2526
2526
  /**
2527
2527
  * <p>The platform for the Amplify app. For a static app, set the platform type to
2528
2528
  * <code>WEB</code>. For a dynamic server-side rendered (SSR) app, set the platform
@@ -2532,75 +2532,75 @@ export interface UpdateAppRequest {
2532
2532
  * the platform type to <code>WEB_COMPUTE</code>.</p>
2533
2533
  * @public
2534
2534
  */
2535
- platform?: Platform;
2535
+ platform?: Platform | undefined;
2536
2536
  /**
2537
2537
  * <p>The AWS Identity and Access Management (IAM) service role for an Amplify app. </p>
2538
2538
  * @public
2539
2539
  */
2540
- iamServiceRoleArn?: string;
2540
+ iamServiceRoleArn?: string | undefined;
2541
2541
  /**
2542
2542
  * <p>The environment variables for an Amplify app. </p>
2543
2543
  * @public
2544
2544
  */
2545
- environmentVariables?: Record<string, string>;
2545
+ environmentVariables?: Record<string, string> | undefined;
2546
2546
  /**
2547
2547
  * <p>Enables branch auto-building for an Amplify app. </p>
2548
2548
  * @public
2549
2549
  */
2550
- enableBranchAutoBuild?: boolean;
2550
+ enableBranchAutoBuild?: boolean | undefined;
2551
2551
  /**
2552
2552
  * <p>Automatically disconnects a branch in the Amplify console when you delete a branch
2553
2553
  * from your Git repository. </p>
2554
2554
  * @public
2555
2555
  */
2556
- enableBranchAutoDeletion?: boolean;
2556
+ enableBranchAutoDeletion?: boolean | undefined;
2557
2557
  /**
2558
2558
  * <p>Enables basic authorization for an Amplify app. </p>
2559
2559
  * @public
2560
2560
  */
2561
- enableBasicAuth?: boolean;
2561
+ enableBasicAuth?: boolean | undefined;
2562
2562
  /**
2563
2563
  * <p>The basic authorization credentials for an Amplify app. You must base64-encode the
2564
2564
  * authorization credentials and provide them in the format
2565
2565
  * <code>user:password</code>.</p>
2566
2566
  * @public
2567
2567
  */
2568
- basicAuthCredentials?: string;
2568
+ basicAuthCredentials?: string | undefined;
2569
2569
  /**
2570
2570
  * <p>The custom redirect and rewrite rules for an Amplify app. </p>
2571
2571
  * @public
2572
2572
  */
2573
- customRules?: CustomRule[];
2573
+ customRules?: CustomRule[] | undefined;
2574
2574
  /**
2575
2575
  * <p>The build specification (build spec) for an Amplify app. </p>
2576
2576
  * @public
2577
2577
  */
2578
- buildSpec?: string;
2578
+ buildSpec?: string | undefined;
2579
2579
  /**
2580
2580
  * <p>The custom HTTP headers for an Amplify app.</p>
2581
2581
  * @public
2582
2582
  */
2583
- customHeaders?: string;
2583
+ customHeaders?: string | undefined;
2584
2584
  /**
2585
2585
  * <p>Enables automated branch creation for an Amplify app. </p>
2586
2586
  * @public
2587
2587
  */
2588
- enableAutoBranchCreation?: boolean;
2588
+ enableAutoBranchCreation?: boolean | undefined;
2589
2589
  /**
2590
2590
  * <p>Describes the automated branch creation glob patterns for an Amplify app. </p>
2591
2591
  * @public
2592
2592
  */
2593
- autoBranchCreationPatterns?: string[];
2593
+ autoBranchCreationPatterns?: string[] | undefined;
2594
2594
  /**
2595
2595
  * <p>The automated branch creation configuration for an Amplify app. </p>
2596
2596
  * @public
2597
2597
  */
2598
- autoBranchCreationConfig?: AutoBranchCreationConfig;
2598
+ autoBranchCreationConfig?: AutoBranchCreationConfig | undefined;
2599
2599
  /**
2600
2600
  * <p>The name of the Git repository for an Amplify app.</p>
2601
2601
  * @public
2602
2602
  */
2603
- repository?: string;
2603
+ repository?: string | undefined;
2604
2604
  /**
2605
2605
  * <p>The OAuth token for a third-party source control system for an Amplify app. The OAuth
2606
2606
  * token is used to create a webhook and a read-only deploy key using SSH cloning. The
@@ -2617,7 +2617,7 @@ export interface UpdateAppRequest {
2617
2617
  * <i>Amplify User Guide</i> .</p>
2618
2618
  * @public
2619
2619
  */
2620
- oauthToken?: string;
2620
+ oauthToken?: string | undefined;
2621
2621
  /**
2622
2622
  * <p>The personal access token for a GitHub repository for an Amplify app. The personal
2623
2623
  * access token is used to authorize access to a GitHub repository using the Amplify GitHub
@@ -2632,12 +2632,12 @@ export interface UpdateAppRequest {
2632
2632
  * <i>Amplify User Guide</i> .</p>
2633
2633
  * @public
2634
2634
  */
2635
- accessToken?: string;
2635
+ accessToken?: string | undefined;
2636
2636
  /**
2637
2637
  * <p>The cache configuration for the Amplify app.</p>
2638
2638
  * @public
2639
2639
  */
2640
- cacheConfig?: CacheConfig;
2640
+ cacheConfig?: CacheConfig | undefined;
2641
2641
  }
2642
2642
  /**
2643
2643
  * <p>The result structure for an Amplify app update request. </p>
@@ -2669,44 +2669,44 @@ export interface UpdateBranchRequest {
2669
2669
  * <p> The description for the branch. </p>
2670
2670
  * @public
2671
2671
  */
2672
- description?: string;
2672
+ description?: string | undefined;
2673
2673
  /**
2674
2674
  * <p> The framework for the branch. </p>
2675
2675
  * @public
2676
2676
  */
2677
- framework?: string;
2677
+ framework?: string | undefined;
2678
2678
  /**
2679
2679
  * <p> Describes the current stage for the branch. </p>
2680
2680
  * @public
2681
2681
  */
2682
- stage?: Stage;
2682
+ stage?: Stage | undefined;
2683
2683
  /**
2684
2684
  * <p> Enables notifications for the branch. </p>
2685
2685
  * @public
2686
2686
  */
2687
- enableNotification?: boolean;
2687
+ enableNotification?: boolean | undefined;
2688
2688
  /**
2689
2689
  * <p> Enables auto building for the branch. </p>
2690
2690
  * @public
2691
2691
  */
2692
- enableAutoBuild?: boolean;
2692
+ enableAutoBuild?: boolean | undefined;
2693
2693
  /**
2694
2694
  * <p> The environment variables for the branch. </p>
2695
2695
  * @public
2696
2696
  */
2697
- environmentVariables?: Record<string, string>;
2697
+ environmentVariables?: Record<string, string> | undefined;
2698
2698
  /**
2699
2699
  * <p> The basic authorization credentials for the branch. You must base64-encode the
2700
2700
  * authorization credentials and provide them in the format
2701
2701
  * <code>user:password</code>.</p>
2702
2702
  * @public
2703
2703
  */
2704
- basicAuthCredentials?: string;
2704
+ basicAuthCredentials?: string | undefined;
2705
2705
  /**
2706
2706
  * <p> Enables basic authorization for the branch. </p>
2707
2707
  * @public
2708
2708
  */
2709
- enableBasicAuth?: boolean;
2709
+ enableBasicAuth?: boolean | undefined;
2710
2710
  /**
2711
2711
  * <p>Enables performance mode for the branch.</p>
2712
2712
  * <p>Performance mode optimizes for faster hosting performance by keeping content cached at
@@ -2714,32 +2714,32 @@ export interface UpdateBranchRequest {
2714
2714
  * or code changes can take up to 10 minutes to roll out. </p>
2715
2715
  * @public
2716
2716
  */
2717
- enablePerformanceMode?: boolean;
2717
+ enablePerformanceMode?: boolean | undefined;
2718
2718
  /**
2719
2719
  * <p> The build specification (build spec) for the branch. </p>
2720
2720
  * @public
2721
2721
  */
2722
- buildSpec?: string;
2722
+ buildSpec?: string | undefined;
2723
2723
  /**
2724
2724
  * <p> The content Time to Live (TTL) for the website in seconds. </p>
2725
2725
  * @public
2726
2726
  */
2727
- ttl?: string;
2727
+ ttl?: string | undefined;
2728
2728
  /**
2729
2729
  * <p> The display name for a branch. This is used as the default domain prefix. </p>
2730
2730
  * @public
2731
2731
  */
2732
- displayName?: string;
2732
+ displayName?: string | undefined;
2733
2733
  /**
2734
2734
  * <p> Enables pull request previews for this branch. </p>
2735
2735
  * @public
2736
2736
  */
2737
- enablePullRequestPreview?: boolean;
2737
+ enablePullRequestPreview?: boolean | undefined;
2738
2738
  /**
2739
2739
  * <p> The Amplify environment name for the pull request. </p>
2740
2740
  * @public
2741
2741
  */
2742
- pullRequestEnvironmentName?: string;
2742
+ pullRequestEnvironmentName?: string | undefined;
2743
2743
  /**
2744
2744
  * <p>The Amazon Resource Name (ARN) for a backend environment that is part of a Gen 1 Amplify
2745
2745
  * app. </p>
@@ -2748,7 +2748,7 @@ export interface UpdateBranchRequest {
2748
2748
  * command line interface (CLI).</p>
2749
2749
  * @public
2750
2750
  */
2751
- backendEnvironmentArn?: string;
2751
+ backendEnvironmentArn?: string | undefined;
2752
2752
  /**
2753
2753
  * <p>The backend for a <code>Branch</code> of an Amplify app. Use for a
2754
2754
  * backend created from an CloudFormation stack.</p>
@@ -2757,7 +2757,7 @@ export interface UpdateBranchRequest {
2757
2757
  * code.</p>
2758
2758
  * @public
2759
2759
  */
2760
- backend?: Backend;
2760
+ backend?: Backend | undefined;
2761
2761
  }
2762
2762
  /**
2763
2763
  * <p> The result structure for the update branch request. </p>
@@ -2789,28 +2789,28 @@ export interface UpdateDomainAssociationRequest {
2789
2789
  * <p> Enables the automated creation of subdomains for branches. </p>
2790
2790
  * @public
2791
2791
  */
2792
- enableAutoSubDomain?: boolean;
2792
+ enableAutoSubDomain?: boolean | undefined;
2793
2793
  /**
2794
2794
  * <p> Describes the settings for the subdomain. </p>
2795
2795
  * @public
2796
2796
  */
2797
- subDomainSettings?: SubDomainSetting[];
2797
+ subDomainSettings?: SubDomainSetting[] | undefined;
2798
2798
  /**
2799
2799
  * <p> Sets the branch patterns for automatic subdomain creation. </p>
2800
2800
  * @public
2801
2801
  */
2802
- autoSubDomainCreationPatterns?: string[];
2802
+ autoSubDomainCreationPatterns?: string[] | undefined;
2803
2803
  /**
2804
2804
  * <p> The required AWS Identity and Access Management (IAM) service role for the Amazon
2805
2805
  * Resource Name (ARN) for automatically creating subdomains. </p>
2806
2806
  * @public
2807
2807
  */
2808
- autoSubDomainIAMRole?: string;
2808
+ autoSubDomainIAMRole?: string | undefined;
2809
2809
  /**
2810
2810
  * <p>The type of SSL/TLS certificate to use for your custom domain.</p>
2811
2811
  * @public
2812
2812
  */
2813
- certificateSettings?: CertificateSettings;
2813
+ certificateSettings?: CertificateSettings | undefined;
2814
2814
  }
2815
2815
  /**
2816
2816
  * <p> The result structure for the update domain association request. </p>
@@ -2838,12 +2838,12 @@ export interface UpdateWebhookRequest {
2838
2838
  * <p>The name for a branch that is part of an Amplify app. </p>
2839
2839
  * @public
2840
2840
  */
2841
- branchName?: string;
2841
+ branchName?: string | undefined;
2842
2842
  /**
2843
2843
  * <p>The description for a webhook. </p>
2844
2844
  * @public
2845
2845
  */
2846
- description?: string;
2846
+ description?: string | undefined;
2847
2847
  }
2848
2848
  /**
2849
2849
  * <p>The result structure for the update webhook request. </p>