@aws-sdk/client-serverlessapplicationrepository 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.
@@ -31,7 +31,7 @@ export interface ApplicationPolicyStatement {
31
31
  * <p>An array of PrinciplalOrgIDs, which corresponds to AWS IAM <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_condition-keys.html#principal-org-id">aws:PrincipalOrgID</a> global condition key.</p>
32
32
  * @public
33
33
  */
34
- PrincipalOrgIDs?: string[];
34
+ PrincipalOrgIDs?: string[] | undefined;
35
35
  /**
36
36
  * <p>An array of AWS account IDs, or * to make the application public.</p>
37
37
  * @public
@@ -41,7 +41,7 @@ export interface ApplicationPolicyStatement {
41
41
  * <p>A unique ID for the statement.</p>
42
42
  * @public
43
43
  */
44
- StatementId?: string;
44
+ StatementId?: string | undefined;
45
45
  }
46
46
  /**
47
47
  * <p>Summary of details about the application.</p>
@@ -62,7 +62,7 @@ export interface ApplicationSummary {
62
62
  * <p>The date and time this resource was created.</p>
63
63
  * @public
64
64
  */
65
- CreationTime?: string;
65
+ CreationTime?: string | undefined;
66
66
  /**
67
67
  * <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
68
68
  * @public
@@ -72,12 +72,12 @@ export interface ApplicationSummary {
72
72
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
73
73
  * @public
74
74
  */
75
- HomePageUrl?: string;
75
+ HomePageUrl?: string | undefined;
76
76
  /**
77
77
  * <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
78
78
  * @public
79
79
  */
80
- Labels?: string[];
80
+ Labels?: string[] | undefined;
81
81
  /**
82
82
  * <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
83
83
  * @public
@@ -87,7 +87,7 @@ export interface ApplicationSummary {
87
87
  * <p>A valid identifier from <a href="https://spdx.org/licenses/">https://spdx.org/licenses/</a>.</p>
88
88
  * @public
89
89
  */
90
- SpdxLicenseId?: string;
90
+ SpdxLicenseId?: string | undefined;
91
91
  }
92
92
  /**
93
93
  * @public
@@ -112,12 +112,12 @@ export interface ParameterDefinition {
112
112
  * <p>A regular expression that represents the patterns to allow for String types.</p>
113
113
  * @public
114
114
  */
115
- AllowedPattern?: string;
115
+ AllowedPattern?: string | undefined;
116
116
  /**
117
117
  * <p>An array containing the list of values allowed for the parameter.</p>
118
118
  * @public
119
119
  */
120
- AllowedValues?: string[];
120
+ AllowedValues?: string[] | undefined;
121
121
  /**
122
122
  * <p>A string that explains a constraint when the constraint is violated. For example, without a constraint description,
123
123
  * a parameter that has an allowed pattern of [A-Za-z0-9]+ displays the following error message when the user
@@ -129,38 +129,38 @@ export interface ParameterDefinition {
129
129
  * </p>
130
130
  * @public
131
131
  */
132
- ConstraintDescription?: string;
132
+ ConstraintDescription?: string | undefined;
133
133
  /**
134
134
  * <p>A value of the appropriate type for the template to use if no value is specified when a stack is created.
135
135
  * If you define constraints for the parameter, you must specify a value that adheres to those constraints.</p>
136
136
  * @public
137
137
  */
138
- DefaultValue?: string;
138
+ DefaultValue?: string | undefined;
139
139
  /**
140
140
  * <p>A string of up to 4,000 characters that describes the parameter.</p>
141
141
  * @public
142
142
  */
143
- Description?: string;
143
+ Description?: string | undefined;
144
144
  /**
145
145
  * <p>An integer value that determines the largest number of characters that you want to allow for String types.</p>
146
146
  * @public
147
147
  */
148
- MaxLength?: number;
148
+ MaxLength?: number | undefined;
149
149
  /**
150
150
  * <p>A numeric value that determines the largest numeric value that you want to allow for Number types.</p>
151
151
  * @public
152
152
  */
153
- MaxValue?: number;
153
+ MaxValue?: number | undefined;
154
154
  /**
155
155
  * <p>An integer value that determines the smallest number of characters that you want to allow for String types.</p>
156
156
  * @public
157
157
  */
158
- MinLength?: number;
158
+ MinLength?: number | undefined;
159
159
  /**
160
160
  * <p>A numeric value that determines the smallest numeric value that you want to allow for Number types.</p>
161
161
  * @public
162
162
  */
163
- MinValue?: number;
163
+ MinValue?: number | undefined;
164
164
  /**
165
165
  * <p>The name of the parameter.</p>
166
166
  * @public
@@ -171,7 +171,7 @@ export interface ParameterDefinition {
171
171
  * value to true, the parameter value is masked with asterisks (*****).</p>
172
172
  * @public
173
173
  */
174
- NoEcho?: boolean;
174
+ NoEcho?: boolean | undefined;
175
175
  /**
176
176
  * <p>A list of AWS SAM resources that use this parameter.</p>
177
177
  * @public
@@ -189,7 +189,7 @@ export interface ParameterDefinition {
189
189
  * Also, each member string is space-trimmed.</p><p>For example, users might specify "test,dev,prod", and then Ref results in ["test","dev","prod"].</p>
190
190
  * @public
191
191
  */
192
- Type?: string;
192
+ Type?: string | undefined;
193
193
  }
194
194
  /**
195
195
  * <p>Parameter value of the application.</p>
@@ -274,7 +274,7 @@ export interface VersionSummary {
274
274
  * <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
275
275
  * @public
276
276
  */
277
- SourceCodeUrl?: string;
277
+ SourceCodeUrl?: string | undefined;
278
278
  }
279
279
  /**
280
280
  * <p>One of the parameters in the request is invalid.</p>
@@ -287,12 +287,12 @@ export declare class BadRequestException extends __BaseException {
287
287
  * <p>400</p>
288
288
  * @public
289
289
  */
290
- ErrorCode?: string;
290
+ ErrorCode?: string | undefined;
291
291
  /**
292
292
  * <p>One of the parameters in the request is invalid.</p>
293
293
  * @public
294
294
  */
295
- Message?: string;
295
+ Message?: string | undefined;
296
296
  /**
297
297
  * @internal
298
298
  */
@@ -309,12 +309,12 @@ export declare class ConflictException extends __BaseException {
309
309
  * <p>409</p>
310
310
  * @public
311
311
  */
312
- ErrorCode?: string;
312
+ ErrorCode?: string | undefined;
313
313
  /**
314
314
  * <p>The resource already exists.</p>
315
315
  * @public
316
316
  */
317
- Message?: string;
317
+ Message?: string | undefined;
318
318
  /**
319
319
  * @internal
320
320
  */
@@ -338,23 +338,23 @@ export interface CreateApplicationRequest {
338
338
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
339
339
  * @public
340
340
  */
341
- HomePageUrl?: string;
341
+ HomePageUrl?: string | undefined;
342
342
  /**
343
343
  * <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
344
344
  * @public
345
345
  */
346
- Labels?: string[];
346
+ Labels?: string[] | undefined;
347
347
  /**
348
348
  * <p>A local text file that contains the license of the app that matches the spdxLicenseID value of your application.
349
349
  * The file has the format file://&lt;path>/&lt;filename>.</p><p>Maximum size 5 MB</p><p>You can specify only one of licenseBody and licenseUrl; otherwise, an error results.</p>
350
350
  * @public
351
351
  */
352
- LicenseBody?: string;
352
+ LicenseBody?: string | undefined;
353
353
  /**
354
354
  * <p>A link to the S3 object that contains the license of the app that matches the spdxLicenseID value of your application.</p><p>Maximum size 5 MB</p><p>You can specify only one of licenseBody and licenseUrl; otherwise, an error results.</p>
355
355
  * @public
356
356
  */
357
- LicenseUrl?: string;
357
+ LicenseUrl?: string | undefined;
358
358
  /**
359
359
  * <p>The name of the application that you want to publish.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
360
360
  * @public
@@ -365,45 +365,45 @@ export interface CreateApplicationRequest {
365
365
  * The file has the format file://&lt;path>/&lt;filename>.</p><p>Maximum size 5 MB</p><p>You can specify only one of readmeBody and readmeUrl; otherwise, an error results.</p>
366
366
  * @public
367
367
  */
368
- ReadmeBody?: string;
368
+ ReadmeBody?: string | undefined;
369
369
  /**
370
370
  * <p>A link to the S3 object in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p><p>You can specify only one of readmeBody and readmeUrl; otherwise, an error results.</p>
371
371
  * @public
372
372
  */
373
- ReadmeUrl?: string;
373
+ ReadmeUrl?: string | undefined;
374
374
  /**
375
375
  * <p>The semantic version of the application:</p><p>
376
376
  * <a href="https://semver.org/">https://semver.org/</a>
377
377
  * </p>
378
378
  * @public
379
379
  */
380
- SemanticVersion?: string;
380
+ SemanticVersion?: string | undefined;
381
381
  /**
382
382
  * <p>A link to the S3 object that contains the ZIP archive of the source code for this version of your application.</p><p>Maximum size 50 MB</p>
383
383
  * @public
384
384
  */
385
- SourceCodeArchiveUrl?: string;
385
+ SourceCodeArchiveUrl?: string | undefined;
386
386
  /**
387
387
  * <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
388
388
  * @public
389
389
  */
390
- SourceCodeUrl?: string;
390
+ SourceCodeUrl?: string | undefined;
391
391
  /**
392
392
  * <p>A valid identifier from <a href="https://spdx.org/licenses/">https://spdx.org/licenses/</a>.</p>
393
393
  * @public
394
394
  */
395
- SpdxLicenseId?: string;
395
+ SpdxLicenseId?: string | undefined;
396
396
  /**
397
397
  * <p>The local raw packaged AWS SAM template file of your application.
398
398
  * The file has the format file://&lt;path>/&lt;filename>.</p><p>You can specify only one of templateBody and templateUrl; otherwise an error results.</p>
399
399
  * @public
400
400
  */
401
- TemplateBody?: string;
401
+ TemplateBody?: string | undefined;
402
402
  /**
403
403
  * <p>A link to the S3 object containing the packaged AWS SAM template of your application.</p><p>You can specify only one of templateBody and templateUrl; otherwise an error results.</p>
404
404
  * @public
405
405
  */
406
- TemplateUrl?: string;
406
+ TemplateUrl?: string | undefined;
407
407
  }
408
408
  /**
409
409
  * <p>Application version details.</p>
@@ -469,12 +469,12 @@ export interface Version {
469
469
  * <p>A link to the S3 object that contains the ZIP archive of the source code for this version of your application.</p><p>Maximum size 50 MB</p>
470
470
  * @public
471
471
  */
472
- SourceCodeArchiveUrl?: string;
472
+ SourceCodeArchiveUrl?: string | undefined;
473
473
  /**
474
474
  * <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
475
475
  * @public
476
476
  */
477
- SourceCodeUrl?: string;
477
+ SourceCodeUrl?: string | undefined;
478
478
  /**
479
479
  * <p>A link to the packaged AWS SAM template of your application.</p>
480
480
  * @public
@@ -489,67 +489,67 @@ export interface CreateApplicationResponse {
489
489
  * <p>The application Amazon Resource Name (ARN).</p>
490
490
  * @public
491
491
  */
492
- ApplicationId?: string;
492
+ ApplicationId?: string | undefined;
493
493
  /**
494
494
  * <p>The name of the author publishing the app.</p><p>Minimum length=1. Maximum length=127.</p><p>Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";</p>
495
495
  * @public
496
496
  */
497
- Author?: string;
497
+ Author?: string | undefined;
498
498
  /**
499
499
  * <p>The date and time this resource was created.</p>
500
500
  * @public
501
501
  */
502
- CreationTime?: string;
502
+ CreationTime?: string | undefined;
503
503
  /**
504
504
  * <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
505
505
  * @public
506
506
  */
507
- Description?: string;
507
+ Description?: string | undefined;
508
508
  /**
509
509
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
510
510
  * @public
511
511
  */
512
- HomePageUrl?: string;
512
+ HomePageUrl?: string | undefined;
513
513
  /**
514
514
  * <p>Whether the author of this application has been verified. This means means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed.</p>
515
515
  * @public
516
516
  */
517
- IsVerifiedAuthor?: boolean;
517
+ IsVerifiedAuthor?: boolean | undefined;
518
518
  /**
519
519
  * <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
520
520
  * @public
521
521
  */
522
- Labels?: string[];
522
+ Labels?: string[] | undefined;
523
523
  /**
524
524
  * <p>A link to a license file of the app that matches the spdxLicenseID value of your application.</p><p>Maximum size 5 MB</p>
525
525
  * @public
526
526
  */
527
- LicenseUrl?: string;
527
+ LicenseUrl?: string | undefined;
528
528
  /**
529
529
  * <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
530
530
  * @public
531
531
  */
532
- Name?: string;
532
+ Name?: string | undefined;
533
533
  /**
534
534
  * <p>A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p>
535
535
  * @public
536
536
  */
537
- ReadmeUrl?: string;
537
+ ReadmeUrl?: string | undefined;
538
538
  /**
539
539
  * <p>A valid identifier from https://spdx.org/licenses/.</p>
540
540
  * @public
541
541
  */
542
- SpdxLicenseId?: string;
542
+ SpdxLicenseId?: string | undefined;
543
543
  /**
544
544
  * <p>The URL to the public profile of a verified author. This URL is submitted by the author.</p>
545
545
  * @public
546
546
  */
547
- VerifiedAuthorUrl?: string;
547
+ VerifiedAuthorUrl?: string | undefined;
548
548
  /**
549
549
  * <p>Version information about the application.</p>
550
550
  * @public
551
551
  */
552
- Version?: Version;
552
+ Version?: Version | undefined;
553
553
  }
554
554
  /**
555
555
  * <p>The client is not authenticated.</p>
@@ -562,12 +562,12 @@ export declare class ForbiddenException extends __BaseException {
562
562
  * <p>403</p>
563
563
  * @public
564
564
  */
565
- ErrorCode?: string;
565
+ ErrorCode?: string | undefined;
566
566
  /**
567
567
  * <p>The client is not authenticated.</p>
568
568
  * @public
569
569
  */
570
- Message?: string;
570
+ Message?: string | undefined;
571
571
  /**
572
572
  * @internal
573
573
  */
@@ -584,12 +584,12 @@ export declare class InternalServerErrorException extends __BaseException {
584
584
  * <p>500</p>
585
585
  * @public
586
586
  */
587
- ErrorCode?: string;
587
+ ErrorCode?: string | undefined;
588
588
  /**
589
589
  * <p>The AWS Serverless Application Repository service encountered an internal error.</p>
590
590
  * @public
591
591
  */
592
- Message?: string;
592
+ Message?: string | undefined;
593
593
  /**
594
594
  * @internal
595
595
  */
@@ -606,12 +606,12 @@ export declare class TooManyRequestsException extends __BaseException {
606
606
  * <p>429</p>
607
607
  * @public
608
608
  */
609
- ErrorCode?: string;
609
+ ErrorCode?: string | undefined;
610
610
  /**
611
611
  * <p>The client is sending more than the allowed number of requests per unit of time.</p>
612
612
  * @public
613
613
  */
614
- Message?: string;
614
+ Message?: string | undefined;
615
615
  /**
616
616
  * @internal
617
617
  */
@@ -635,22 +635,22 @@ export interface CreateApplicationVersionRequest {
635
635
  * <p>A link to the S3 object that contains the ZIP archive of the source code for this version of your application.</p><p>Maximum size 50 MB</p>
636
636
  * @public
637
637
  */
638
- SourceCodeArchiveUrl?: string;
638
+ SourceCodeArchiveUrl?: string | undefined;
639
639
  /**
640
640
  * <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
641
641
  * @public
642
642
  */
643
- SourceCodeUrl?: string;
643
+ SourceCodeUrl?: string | undefined;
644
644
  /**
645
645
  * <p>The raw packaged AWS SAM template of your application.</p>
646
646
  * @public
647
647
  */
648
- TemplateBody?: string;
648
+ TemplateBody?: string | undefined;
649
649
  /**
650
650
  * <p>A link to the packaged AWS SAM template of your application.</p>
651
651
  * @public
652
652
  */
653
- TemplateUrl?: string;
653
+ TemplateUrl?: string | undefined;
654
654
  }
655
655
  /**
656
656
  * @public
@@ -660,17 +660,17 @@ export interface CreateApplicationVersionResponse {
660
660
  * <p>The application Amazon Resource Name (ARN).</p>
661
661
  * @public
662
662
  */
663
- ApplicationId?: string;
663
+ ApplicationId?: string | undefined;
664
664
  /**
665
665
  * <p>The date and time this resource was created.</p>
666
666
  * @public
667
667
  */
668
- CreationTime?: string;
668
+ CreationTime?: string | undefined;
669
669
  /**
670
670
  * <p>An array of parameter types supported by the application.</p>
671
671
  * @public
672
672
  */
673
- ParameterDefinitions?: ParameterDefinition[];
673
+ ParameterDefinitions?: ParameterDefinition[] | undefined;
674
674
  /**
675
675
  * <p>A list of values that you must specify before you can deploy certain applications.
676
676
  * Some applications might include resources that can affect permissions in your AWS
@@ -697,35 +697,35 @@ export interface CreateApplicationVersionResponse {
697
697
  * this parameter for an application that requires capabilities, the call will fail.</p>
698
698
  * @public
699
699
  */
700
- RequiredCapabilities?: Capability[];
700
+ RequiredCapabilities?: Capability[] | undefined;
701
701
  /**
702
702
  * <p>Whether all of the AWS resources contained in this application are supported in the region
703
703
  * in which it is being retrieved.</p>
704
704
  * @public
705
705
  */
706
- ResourcesSupported?: boolean;
706
+ ResourcesSupported?: boolean | undefined;
707
707
  /**
708
708
  * <p>The semantic version of the application:</p><p>
709
709
  * <a href="https://semver.org/">https://semver.org/</a>
710
710
  * </p>
711
711
  * @public
712
712
  */
713
- SemanticVersion?: string;
713
+ SemanticVersion?: string | undefined;
714
714
  /**
715
715
  * <p>A link to the S3 object that contains the ZIP archive of the source code for this version of your application.</p><p>Maximum size 50 MB</p>
716
716
  * @public
717
717
  */
718
- SourceCodeArchiveUrl?: string;
718
+ SourceCodeArchiveUrl?: string | undefined;
719
719
  /**
720
720
  * <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
721
721
  * @public
722
722
  */
723
- SourceCodeUrl?: string;
723
+ SourceCodeUrl?: string | undefined;
724
724
  /**
725
725
  * <p>A link to the packaged AWS SAM template of your application.</p>
726
726
  * @public
727
727
  */
728
- TemplateUrl?: string;
728
+ TemplateUrl?: string | undefined;
729
729
  }
730
730
  /**
731
731
  * <p>This property corresponds to the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
@@ -738,13 +738,13 @@ export interface RollbackConfiguration {
738
738
  * </i> Data Type.</p>
739
739
  * @public
740
740
  */
741
- MonitoringTimeInMinutes?: number;
741
+ MonitoringTimeInMinutes?: number | undefined;
742
742
  /**
743
743
  * <p>This property corresponds to the content of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
744
744
  * </i> Data Type.</p>
745
745
  * @public
746
746
  */
747
- RollbackTriggers?: RollbackTrigger[];
747
+ RollbackTriggers?: RollbackTrigger[] | undefined;
748
748
  }
749
749
  /**
750
750
  * @public
@@ -781,55 +781,55 @@ export interface CreateCloudFormationChangeSetRequest {
781
781
  * this parameter for an application that requires capabilities, the call will fail.</p>
782
782
  * @public
783
783
  */
784
- Capabilities?: string[];
784
+ Capabilities?: string[] | undefined;
785
785
  /**
786
786
  * <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
787
787
  * </i> API.</p>
788
788
  * @public
789
789
  */
790
- ChangeSetName?: string;
790
+ ChangeSetName?: string | undefined;
791
791
  /**
792
792
  * <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
793
793
  * </i> API.</p>
794
794
  * @public
795
795
  */
796
- ClientToken?: string;
796
+ ClientToken?: string | undefined;
797
797
  /**
798
798
  * <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
799
799
  * </i> API.</p>
800
800
  * @public
801
801
  */
802
- Description?: string;
802
+ Description?: string | undefined;
803
803
  /**
804
804
  * <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
805
805
  * </i> API.</p>
806
806
  * @public
807
807
  */
808
- NotificationArns?: string[];
808
+ NotificationArns?: string[] | undefined;
809
809
  /**
810
810
  * <p>A list of parameter values for the parameters of the application.</p>
811
811
  * @public
812
812
  */
813
- ParameterOverrides?: ParameterValue[];
813
+ ParameterOverrides?: ParameterValue[] | undefined;
814
814
  /**
815
815
  * <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
816
816
  * </i> API.</p>
817
817
  * @public
818
818
  */
819
- ResourceTypes?: string[];
819
+ ResourceTypes?: string[] | undefined;
820
820
  /**
821
821
  * <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
822
822
  * </i> API.</p>
823
823
  * @public
824
824
  */
825
- RollbackConfiguration?: RollbackConfiguration;
825
+ RollbackConfiguration?: RollbackConfiguration | undefined;
826
826
  /**
827
827
  * <p>The semantic version of the application:</p><p>
828
828
  * <a href="https://semver.org/">https://semver.org/</a>
829
829
  * </p>
830
830
  * @public
831
831
  */
832
- SemanticVersion?: string;
832
+ SemanticVersion?: string | undefined;
833
833
  /**
834
834
  * <p>This property corresponds to the parameter of the same name for the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">CreateChangeSet</a>
835
835
  * </i> API.</p>
@@ -841,12 +841,12 @@ export interface CreateCloudFormationChangeSetRequest {
841
841
  * </i> API.</p>
842
842
  * @public
843
843
  */
844
- Tags?: Tag[];
844
+ Tags?: Tag[] | undefined;
845
845
  /**
846
846
  * <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]\{8\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{12\}</p>
847
847
  * @public
848
848
  */
849
- TemplateId?: string;
849
+ TemplateId?: string | undefined;
850
850
  }
851
851
  /**
852
852
  * @public
@@ -856,24 +856,24 @@ export interface CreateCloudFormationChangeSetResponse {
856
856
  * <p>The application Amazon Resource Name (ARN).</p>
857
857
  * @public
858
858
  */
859
- ApplicationId?: string;
859
+ ApplicationId?: string | undefined;
860
860
  /**
861
861
  * <p>The Amazon Resource Name (ARN) of the change set.</p><p>Length constraints: Minimum length of 1.</p><p>Pattern: ARN:[-a-zA-Z0-9:/]*</p>
862
862
  * @public
863
863
  */
864
- ChangeSetId?: string;
864
+ ChangeSetId?: string | undefined;
865
865
  /**
866
866
  * <p>The semantic version of the application:</p><p>
867
867
  * <a href="https://semver.org/">https://semver.org/</a>
868
868
  * </p>
869
869
  * @public
870
870
  */
871
- SemanticVersion?: string;
871
+ SemanticVersion?: string | undefined;
872
872
  /**
873
873
  * <p>The unique ID of the stack.</p>
874
874
  * @public
875
875
  */
876
- StackId?: string;
876
+ StackId?: string | undefined;
877
877
  }
878
878
  /**
879
879
  * @public
@@ -890,7 +890,7 @@ export interface CreateCloudFormationTemplateRequest {
890
890
  * </p>
891
891
  * @public
892
892
  */
893
- SemanticVersion?: string;
893
+ SemanticVersion?: string | undefined;
894
894
  }
895
895
  /**
896
896
  * @public
@@ -913,42 +913,42 @@ export interface CreateCloudFormationTemplateResponse {
913
913
  * <p>The application Amazon Resource Name (ARN).</p>
914
914
  * @public
915
915
  */
916
- ApplicationId?: string;
916
+ ApplicationId?: string | undefined;
917
917
  /**
918
918
  * <p>The date and time this resource was created.</p>
919
919
  * @public
920
920
  */
921
- CreationTime?: string;
921
+ CreationTime?: string | undefined;
922
922
  /**
923
923
  * <p>The date and time this template expires. Templates
924
924
  * expire 1 hour after creation.</p>
925
925
  * @public
926
926
  */
927
- ExpirationTime?: string;
927
+ ExpirationTime?: string | undefined;
928
928
  /**
929
929
  * <p>The semantic version of the application:</p><p>
930
930
  * <a href="https://semver.org/">https://semver.org/</a>
931
931
  * </p>
932
932
  * @public
933
933
  */
934
- SemanticVersion?: string;
934
+ SemanticVersion?: string | undefined;
935
935
  /**
936
936
  * <p>Status of the template creation workflow.</p><p>Possible values: PREPARING | ACTIVE | EXPIRED
937
937
  * </p>
938
938
  * @public
939
939
  */
940
- Status?: Status;
940
+ Status?: Status | undefined;
941
941
  /**
942
942
  * <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]\{8\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{12\}</p>
943
943
  * @public
944
944
  */
945
- TemplateId?: string;
945
+ TemplateId?: string | undefined;
946
946
  /**
947
947
  * <p>A link to the template that can be used to deploy the application using
948
948
  * AWS CloudFormation.</p>
949
949
  * @public
950
950
  */
951
- TemplateUrl?: string;
951
+ TemplateUrl?: string | undefined;
952
952
  }
953
953
  /**
954
954
  * <p>The resource (for example, an access policy statement) specified in the request doesn't exist.</p>
@@ -961,12 +961,12 @@ export declare class NotFoundException extends __BaseException {
961
961
  * <p>404</p>
962
962
  * @public
963
963
  */
964
- ErrorCode?: string;
964
+ ErrorCode?: string | undefined;
965
965
  /**
966
966
  * <p>The resource (for example, an access policy statement) specified in the request doesn't exist.</p>
967
967
  * @public
968
968
  */
969
- Message?: string;
969
+ Message?: string | undefined;
970
970
  /**
971
971
  * @internal
972
972
  */
@@ -995,7 +995,7 @@ export interface GetApplicationRequest {
995
995
  * <p>The semantic version of the application to get.</p>
996
996
  * @public
997
997
  */
998
- SemanticVersion?: string;
998
+ SemanticVersion?: string | undefined;
999
999
  }
1000
1000
  /**
1001
1001
  * @public
@@ -1005,67 +1005,67 @@ export interface GetApplicationResponse {
1005
1005
  * <p>The application Amazon Resource Name (ARN).</p>
1006
1006
  * @public
1007
1007
  */
1008
- ApplicationId?: string;
1008
+ ApplicationId?: string | undefined;
1009
1009
  /**
1010
1010
  * <p>The name of the author publishing the app.</p><p>Minimum length=1. Maximum length=127.</p><p>Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";</p>
1011
1011
  * @public
1012
1012
  */
1013
- Author?: string;
1013
+ Author?: string | undefined;
1014
1014
  /**
1015
1015
  * <p>The date and time this resource was created.</p>
1016
1016
  * @public
1017
1017
  */
1018
- CreationTime?: string;
1018
+ CreationTime?: string | undefined;
1019
1019
  /**
1020
1020
  * <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
1021
1021
  * @public
1022
1022
  */
1023
- Description?: string;
1023
+ Description?: string | undefined;
1024
1024
  /**
1025
1025
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
1026
1026
  * @public
1027
1027
  */
1028
- HomePageUrl?: string;
1028
+ HomePageUrl?: string | undefined;
1029
1029
  /**
1030
1030
  * <p>Whether the author of this application has been verified. This means means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed.</p>
1031
1031
  * @public
1032
1032
  */
1033
- IsVerifiedAuthor?: boolean;
1033
+ IsVerifiedAuthor?: boolean | undefined;
1034
1034
  /**
1035
1035
  * <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
1036
1036
  * @public
1037
1037
  */
1038
- Labels?: string[];
1038
+ Labels?: string[] | undefined;
1039
1039
  /**
1040
1040
  * <p>A link to a license file of the app that matches the spdxLicenseID value of your application.</p><p>Maximum size 5 MB</p>
1041
1041
  * @public
1042
1042
  */
1043
- LicenseUrl?: string;
1043
+ LicenseUrl?: string | undefined;
1044
1044
  /**
1045
1045
  * <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
1046
1046
  * @public
1047
1047
  */
1048
- Name?: string;
1048
+ Name?: string | undefined;
1049
1049
  /**
1050
1050
  * <p>A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p>
1051
1051
  * @public
1052
1052
  */
1053
- ReadmeUrl?: string;
1053
+ ReadmeUrl?: string | undefined;
1054
1054
  /**
1055
1055
  * <p>A valid identifier from https://spdx.org/licenses/.</p>
1056
1056
  * @public
1057
1057
  */
1058
- SpdxLicenseId?: string;
1058
+ SpdxLicenseId?: string | undefined;
1059
1059
  /**
1060
1060
  * <p>The URL to the public profile of a verified author. This URL is submitted by the author.</p>
1061
1061
  * @public
1062
1062
  */
1063
- VerifiedAuthorUrl?: string;
1063
+ VerifiedAuthorUrl?: string | undefined;
1064
1064
  /**
1065
1065
  * <p>Version information about the application.</p>
1066
1066
  * @public
1067
1067
  */
1068
- Version?: Version;
1068
+ Version?: Version | undefined;
1069
1069
  }
1070
1070
  /**
1071
1071
  * @public
@@ -1085,7 +1085,7 @@ export interface GetApplicationPolicyResponse {
1085
1085
  * <p>An array of policy statements applied to the application.</p>
1086
1086
  * @public
1087
1087
  */
1088
- Statements?: ApplicationPolicyStatement[];
1088
+ Statements?: ApplicationPolicyStatement[] | undefined;
1089
1089
  }
1090
1090
  /**
1091
1091
  * @public
@@ -1110,42 +1110,42 @@ export interface GetCloudFormationTemplateResponse {
1110
1110
  * <p>The application Amazon Resource Name (ARN).</p>
1111
1111
  * @public
1112
1112
  */
1113
- ApplicationId?: string;
1113
+ ApplicationId?: string | undefined;
1114
1114
  /**
1115
1115
  * <p>The date and time this resource was created.</p>
1116
1116
  * @public
1117
1117
  */
1118
- CreationTime?: string;
1118
+ CreationTime?: string | undefined;
1119
1119
  /**
1120
1120
  * <p>The date and time this template expires. Templates
1121
1121
  * expire 1 hour after creation.</p>
1122
1122
  * @public
1123
1123
  */
1124
- ExpirationTime?: string;
1124
+ ExpirationTime?: string | undefined;
1125
1125
  /**
1126
1126
  * <p>The semantic version of the application:</p><p>
1127
1127
  * <a href="https://semver.org/">https://semver.org/</a>
1128
1128
  * </p>
1129
1129
  * @public
1130
1130
  */
1131
- SemanticVersion?: string;
1131
+ SemanticVersion?: string | undefined;
1132
1132
  /**
1133
1133
  * <p>Status of the template creation workflow.</p><p>Possible values: PREPARING | ACTIVE | EXPIRED
1134
1134
  * </p>
1135
1135
  * @public
1136
1136
  */
1137
- Status?: Status;
1137
+ Status?: Status | undefined;
1138
1138
  /**
1139
1139
  * <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]\{8\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{12\}</p>
1140
1140
  * @public
1141
1141
  */
1142
- TemplateId?: string;
1142
+ TemplateId?: string | undefined;
1143
1143
  /**
1144
1144
  * <p>A link to the template that can be used to deploy the application using
1145
1145
  * AWS CloudFormation.</p>
1146
1146
  * @public
1147
1147
  */
1148
- TemplateUrl?: string;
1148
+ TemplateUrl?: string | undefined;
1149
1149
  }
1150
1150
  /**
1151
1151
  * @public
@@ -1160,17 +1160,17 @@ export interface ListApplicationDependenciesRequest {
1160
1160
  * <p>The total number of items to return.</p>
1161
1161
  * @public
1162
1162
  */
1163
- MaxItems?: number;
1163
+ MaxItems?: number | undefined;
1164
1164
  /**
1165
1165
  * <p>A token to specify where to start paginating.</p>
1166
1166
  * @public
1167
1167
  */
1168
- NextToken?: string;
1168
+ NextToken?: string | undefined;
1169
1169
  /**
1170
1170
  * <p>The semantic version of the application to get.</p>
1171
1171
  * @public
1172
1172
  */
1173
- SemanticVersion?: string;
1173
+ SemanticVersion?: string | undefined;
1174
1174
  }
1175
1175
  /**
1176
1176
  * @public
@@ -1180,12 +1180,12 @@ export interface ListApplicationDependenciesResponse {
1180
1180
  * <p>An array of application summaries nested in the application.</p>
1181
1181
  * @public
1182
1182
  */
1183
- Dependencies?: ApplicationDependencySummary[];
1183
+ Dependencies?: ApplicationDependencySummary[] | undefined;
1184
1184
  /**
1185
1185
  * <p>The token to request the next page of results.</p>
1186
1186
  * @public
1187
1187
  */
1188
- NextToken?: string;
1188
+ NextToken?: string | undefined;
1189
1189
  }
1190
1190
  /**
1191
1191
  * @public
@@ -1195,12 +1195,12 @@ export interface ListApplicationsRequest {
1195
1195
  * <p>The total number of items to return.</p>
1196
1196
  * @public
1197
1197
  */
1198
- MaxItems?: number;
1198
+ MaxItems?: number | undefined;
1199
1199
  /**
1200
1200
  * <p>A token to specify where to start paginating.</p>
1201
1201
  * @public
1202
1202
  */
1203
- NextToken?: string;
1203
+ NextToken?: string | undefined;
1204
1204
  }
1205
1205
  /**
1206
1206
  * @public
@@ -1210,12 +1210,12 @@ export interface ListApplicationsResponse {
1210
1210
  * <p>An array of application summaries.</p>
1211
1211
  * @public
1212
1212
  */
1213
- Applications?: ApplicationSummary[];
1213
+ Applications?: ApplicationSummary[] | undefined;
1214
1214
  /**
1215
1215
  * <p>The token to request the next page of results.</p>
1216
1216
  * @public
1217
1217
  */
1218
- NextToken?: string;
1218
+ NextToken?: string | undefined;
1219
1219
  }
1220
1220
  /**
1221
1221
  * @public
@@ -1230,12 +1230,12 @@ export interface ListApplicationVersionsRequest {
1230
1230
  * <p>The total number of items to return.</p>
1231
1231
  * @public
1232
1232
  */
1233
- MaxItems?: number;
1233
+ MaxItems?: number | undefined;
1234
1234
  /**
1235
1235
  * <p>A token to specify where to start paginating.</p>
1236
1236
  * @public
1237
1237
  */
1238
- NextToken?: string;
1238
+ NextToken?: string | undefined;
1239
1239
  }
1240
1240
  /**
1241
1241
  * @public
@@ -1245,12 +1245,12 @@ export interface ListApplicationVersionsResponse {
1245
1245
  * <p>The token to request the next page of results.</p>
1246
1246
  * @public
1247
1247
  */
1248
- NextToken?: string;
1248
+ NextToken?: string | undefined;
1249
1249
  /**
1250
1250
  * <p>An array of version summaries for the application.</p>
1251
1251
  * @public
1252
1252
  */
1253
- Versions?: VersionSummary[];
1253
+ Versions?: VersionSummary[] | undefined;
1254
1254
  }
1255
1255
  /**
1256
1256
  * @public
@@ -1275,7 +1275,7 @@ export interface PutApplicationPolicyResponse {
1275
1275
  * <p>An array of policy statements applied to the application.</p>
1276
1276
  * @public
1277
1277
  */
1278
- Statements?: ApplicationPolicyStatement[];
1278
+ Statements?: ApplicationPolicyStatement[] | undefined;
1279
1279
  }
1280
1280
  /**
1281
1281
  * @public
@@ -1305,32 +1305,32 @@ export interface UpdateApplicationRequest {
1305
1305
  * <p>The name of the author publishing the app.</p><p>Minimum length=1. Maximum length=127.</p><p>Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";</p>
1306
1306
  * @public
1307
1307
  */
1308
- Author?: string;
1308
+ Author?: string | undefined;
1309
1309
  /**
1310
1310
  * <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
1311
1311
  * @public
1312
1312
  */
1313
- Description?: string;
1313
+ Description?: string | undefined;
1314
1314
  /**
1315
1315
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
1316
1316
  * @public
1317
1317
  */
1318
- HomePageUrl?: string;
1318
+ HomePageUrl?: string | undefined;
1319
1319
  /**
1320
1320
  * <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
1321
1321
  * @public
1322
1322
  */
1323
- Labels?: string[];
1323
+ Labels?: string[] | undefined;
1324
1324
  /**
1325
1325
  * <p>A text readme file in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p>
1326
1326
  * @public
1327
1327
  */
1328
- ReadmeBody?: string;
1328
+ ReadmeBody?: string | undefined;
1329
1329
  /**
1330
1330
  * <p>A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p>
1331
1331
  * @public
1332
1332
  */
1333
- ReadmeUrl?: string;
1333
+ ReadmeUrl?: string | undefined;
1334
1334
  }
1335
1335
  /**
1336
1336
  * @public
@@ -1340,65 +1340,65 @@ export interface UpdateApplicationResponse {
1340
1340
  * <p>The application Amazon Resource Name (ARN).</p>
1341
1341
  * @public
1342
1342
  */
1343
- ApplicationId?: string;
1343
+ ApplicationId?: string | undefined;
1344
1344
  /**
1345
1345
  * <p>The name of the author publishing the app.</p><p>Minimum length=1. Maximum length=127.</p><p>Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";</p>
1346
1346
  * @public
1347
1347
  */
1348
- Author?: string;
1348
+ Author?: string | undefined;
1349
1349
  /**
1350
1350
  * <p>The date and time this resource was created.</p>
1351
1351
  * @public
1352
1352
  */
1353
- CreationTime?: string;
1353
+ CreationTime?: string | undefined;
1354
1354
  /**
1355
1355
  * <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
1356
1356
  * @public
1357
1357
  */
1358
- Description?: string;
1358
+ Description?: string | undefined;
1359
1359
  /**
1360
1360
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
1361
1361
  * @public
1362
1362
  */
1363
- HomePageUrl?: string;
1363
+ HomePageUrl?: string | undefined;
1364
1364
  /**
1365
1365
  * <p>Whether the author of this application has been verified. This means means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed.</p>
1366
1366
  * @public
1367
1367
  */
1368
- IsVerifiedAuthor?: boolean;
1368
+ IsVerifiedAuthor?: boolean | undefined;
1369
1369
  /**
1370
1370
  * <p>Labels to improve discovery of apps in search results.</p><p>Minimum length=1. Maximum length=127. Maximum number of labels: 10</p><p>Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";</p>
1371
1371
  * @public
1372
1372
  */
1373
- Labels?: string[];
1373
+ Labels?: string[] | undefined;
1374
1374
  /**
1375
1375
  * <p>A link to a license file of the app that matches the spdxLicenseID value of your application.</p><p>Maximum size 5 MB</p>
1376
1376
  * @public
1377
1377
  */
1378
- LicenseUrl?: string;
1378
+ LicenseUrl?: string | undefined;
1379
1379
  /**
1380
1380
  * <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
1381
1381
  * @public
1382
1382
  */
1383
- Name?: string;
1383
+ Name?: string | undefined;
1384
1384
  /**
1385
1385
  * <p>A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.</p><p>Maximum size 5 MB</p>
1386
1386
  * @public
1387
1387
  */
1388
- ReadmeUrl?: string;
1388
+ ReadmeUrl?: string | undefined;
1389
1389
  /**
1390
1390
  * <p>A valid identifier from https://spdx.org/licenses/.</p>
1391
1391
  * @public
1392
1392
  */
1393
- SpdxLicenseId?: string;
1393
+ SpdxLicenseId?: string | undefined;
1394
1394
  /**
1395
1395
  * <p>The URL to the public profile of a verified author. This URL is submitted by the author.</p>
1396
1396
  * @public
1397
1397
  */
1398
- VerifiedAuthorUrl?: string;
1398
+ VerifiedAuthorUrl?: string | undefined;
1399
1399
  /**
1400
1400
  * <p>Version information about the application.</p>
1401
1401
  * @public
1402
1402
  */
1403
- Version?: Version;
1403
+ Version?: Version | undefined;
1404
1404
  }