@aws-sdk/client-serverlessapplicationrepository 3.379.1 → 3.385.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.
@@ -6,10 +6,12 @@ import { ServerlessApplicationRepositoryServiceException as __BaseException } fr
6
6
  */
7
7
  export interface ApplicationDependencySummary {
8
8
  /**
9
+ * @public
9
10
  * <p>The Amazon Resource Name (ARN) of the nested application.</p>
10
11
  */
11
12
  ApplicationId: string | undefined;
12
13
  /**
14
+ * @public
13
15
  * <p>The semantic version of the nested application.</p>
14
16
  */
15
17
  SemanticVersion: string | undefined;
@@ -20,19 +22,23 @@ export interface ApplicationDependencySummary {
20
22
  */
21
23
  export interface ApplicationPolicyStatement {
22
24
  /**
25
+ * @public
23
26
  * <p>For the list of actions supported for this operation, see <a href="https://docs.aws.amazon.com/serverlessrepo/latest/devguide/access-control-resource-based.html#application-permissions">Application
24
27
  * Permissions</a>.</p>
25
28
  */
26
29
  Actions: string[] | undefined;
27
30
  /**
31
+ * @public
28
32
  * <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>
29
33
  */
30
34
  PrincipalOrgIDs?: string[];
31
35
  /**
36
+ * @public
32
37
  * <p>An array of AWS account IDs, or * to make the application public.</p>
33
38
  */
34
39
  Principals: string[] | undefined;
35
40
  /**
41
+ * @public
36
42
  * <p>A unique ID for the statement.</p>
37
43
  */
38
44
  StatementId?: string;
@@ -43,34 +49,42 @@ export interface ApplicationPolicyStatement {
43
49
  */
44
50
  export interface ApplicationSummary {
45
51
  /**
52
+ * @public
46
53
  * <p>The application Amazon Resource Name (ARN).</p>
47
54
  */
48
55
  ApplicationId: string | undefined;
49
56
  /**
57
+ * @public
50
58
  * <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>
51
59
  */
52
60
  Author: string | undefined;
53
61
  /**
62
+ * @public
54
63
  * <p>The date and time this resource was created.</p>
55
64
  */
56
65
  CreationTime?: string;
57
66
  /**
67
+ * @public
58
68
  * <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
59
69
  */
60
70
  Description: string | undefined;
61
71
  /**
72
+ * @public
62
73
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
63
74
  */
64
75
  HomePageUrl?: string;
65
76
  /**
77
+ * @public
66
78
  * <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>
67
79
  */
68
80
  Labels?: string[];
69
81
  /**
82
+ * @public
70
83
  * <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
71
84
  */
72
85
  Name: string | undefined;
73
86
  /**
87
+ * @public
74
88
  * <p>A valid identifier from <a href="https://spdx.org/licenses/">https://spdx.org/licenses/</a>.</p>
75
89
  */
76
90
  SpdxLicenseId?: string;
@@ -95,14 +109,17 @@ export type Capability = (typeof Capability)[keyof typeof Capability];
95
109
  */
96
110
  export interface ParameterDefinition {
97
111
  /**
112
+ * @public
98
113
  * <p>A regular expression that represents the patterns to allow for String types.</p>
99
114
  */
100
115
  AllowedPattern?: string;
101
116
  /**
117
+ * @public
102
118
  * <p>An array containing the list of values allowed for the parameter.</p>
103
119
  */
104
120
  AllowedValues?: string[];
105
121
  /**
122
+ * @public
106
123
  * <p>A string that explains a constraint when the constraint is violated. For example, without a constraint description,
107
124
  * a parameter that has an allowed pattern of [A-Za-z0-9]+ displays the following error message when the user
108
125
  * specifies an invalid value:</p><p>
@@ -114,44 +131,54 @@ export interface ParameterDefinition {
114
131
  */
115
132
  ConstraintDescription?: string;
116
133
  /**
134
+ * @public
117
135
  * <p>A value of the appropriate type for the template to use if no value is specified when a stack is created.
118
136
  * If you define constraints for the parameter, you must specify a value that adheres to those constraints.</p>
119
137
  */
120
138
  DefaultValue?: string;
121
139
  /**
140
+ * @public
122
141
  * <p>A string of up to 4,000 characters that describes the parameter.</p>
123
142
  */
124
143
  Description?: string;
125
144
  /**
145
+ * @public
126
146
  * <p>An integer value that determines the largest number of characters that you want to allow for String types.</p>
127
147
  */
128
148
  MaxLength?: number;
129
149
  /**
150
+ * @public
130
151
  * <p>A numeric value that determines the largest numeric value that you want to allow for Number types.</p>
131
152
  */
132
153
  MaxValue?: number;
133
154
  /**
155
+ * @public
134
156
  * <p>An integer value that determines the smallest number of characters that you want to allow for String types.</p>
135
157
  */
136
158
  MinLength?: number;
137
159
  /**
160
+ * @public
138
161
  * <p>A numeric value that determines the smallest numeric value that you want to allow for Number types.</p>
139
162
  */
140
163
  MinValue?: number;
141
164
  /**
165
+ * @public
142
166
  * <p>The name of the parameter.</p>
143
167
  */
144
168
  Name: string | undefined;
145
169
  /**
170
+ * @public
146
171
  * <p>Whether to mask the parameter value whenever anyone makes a call that describes the stack. If you set the
147
172
  * value to true, the parameter value is masked with asterisks (*****).</p>
148
173
  */
149
174
  NoEcho?: boolean;
150
175
  /**
176
+ * @public
151
177
  * <p>A list of AWS SAM resources that use this parameter.</p>
152
178
  */
153
179
  ReferencedByResources: string[] | undefined;
154
180
  /**
181
+ * @public
155
182
  * <p>The type of the parameter.</p><p>Valid values: String | Number | List&lt;Number> | CommaDelimitedList
156
183
  * </p><p>
157
184
  * String: A literal string.</p><p>For example, users can specify "MyUserName".</p><p>
@@ -170,11 +197,13 @@ export interface ParameterDefinition {
170
197
  */
171
198
  export interface ParameterValue {
172
199
  /**
200
+ * @public
173
201
  * <p>The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation
174
202
  * uses the default value that is specified in your template.</p>
175
203
  */
176
204
  Name: string | undefined;
177
205
  /**
206
+ * @public
178
207
  * <p>The input value associated with the parameter.</p>
179
208
  */
180
209
  Value: string | undefined;
@@ -186,11 +215,13 @@ export interface ParameterValue {
186
215
  */
187
216
  export interface RollbackTrigger {
188
217
  /**
218
+ * @public
189
219
  * <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/RollbackTrigger">RollbackTrigger</a>
190
220
  * </i> Data Type.</p>
191
221
  */
192
222
  Arn: string | undefined;
193
223
  /**
224
+ * @public
194
225
  * <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/RollbackTrigger">RollbackTrigger</a>
195
226
  * </i> Data Type.</p>
196
227
  */
@@ -203,11 +234,13 @@ export interface RollbackTrigger {
203
234
  */
204
235
  export interface Tag {
205
236
  /**
237
+ * @public
206
238
  * <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/Tag">Tag</a>
207
239
  * </i> Data Type.</p>
208
240
  */
209
241
  Key: string | undefined;
210
242
  /**
243
+ * @public
211
244
  * <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/Tag">
212
245
  * Tag</a>
213
246
  * </i>
@@ -221,20 +254,24 @@ export interface Tag {
221
254
  */
222
255
  export interface VersionSummary {
223
256
  /**
257
+ * @public
224
258
  * <p>The application Amazon Resource Name (ARN).</p>
225
259
  */
226
260
  ApplicationId: string | undefined;
227
261
  /**
262
+ * @public
228
263
  * <p>The date and time this resource was created.</p>
229
264
  */
230
265
  CreationTime: string | undefined;
231
266
  /**
267
+ * @public
232
268
  * <p>The semantic version of the application:</p><p>
233
269
  * <a href="https://semver.org/">https://semver.org/</a>
234
270
  * </p>
235
271
  */
236
272
  SemanticVersion: string | undefined;
237
273
  /**
274
+ * @public
238
275
  * <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
239
276
  */
240
277
  SourceCodeUrl?: string;
@@ -247,10 +284,12 @@ export declare class BadRequestException extends __BaseException {
247
284
  readonly name: "BadRequestException";
248
285
  readonly $fault: "client";
249
286
  /**
287
+ * @public
250
288
  * <p>400</p>
251
289
  */
252
290
  ErrorCode?: string;
253
291
  /**
292
+ * @public
254
293
  * <p>One of the parameters in the request is invalid.</p>
255
294
  */
256
295
  Message?: string;
@@ -267,10 +306,12 @@ export declare class ConflictException extends __BaseException {
267
306
  readonly name: "ConflictException";
268
307
  readonly $fault: "client";
269
308
  /**
309
+ * @public
270
310
  * <p>409</p>
271
311
  */
272
312
  ErrorCode?: string;
273
313
  /**
314
+ * @public
274
315
  * <p>The resource already exists.</p>
275
316
  */
276
317
  Message?: string;
@@ -284,67 +325,82 @@ export declare class ConflictException extends __BaseException {
284
325
  */
285
326
  export interface CreateApplicationRequest {
286
327
  /**
328
+ * @public
287
329
  * <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>
288
330
  */
289
331
  Author: string | undefined;
290
332
  /**
333
+ * @public
291
334
  * <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
292
335
  */
293
336
  Description: string | undefined;
294
337
  /**
338
+ * @public
295
339
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
296
340
  */
297
341
  HomePageUrl?: string;
298
342
  /**
343
+ * @public
299
344
  * <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>
300
345
  */
301
346
  Labels?: string[];
302
347
  /**
348
+ * @public
303
349
  * <p>A local text file that contains the license of the app that matches the spdxLicenseID value of your application.
304
350
  * 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>
305
351
  */
306
352
  LicenseBody?: string;
307
353
  /**
354
+ * @public
308
355
  * <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>
309
356
  */
310
357
  LicenseUrl?: string;
311
358
  /**
359
+ * @public
312
360
  * <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>
313
361
  */
314
362
  Name: string | undefined;
315
363
  /**
364
+ * @public
316
365
  * <p>A local text readme file in Markdown language that contains a more detailed description of the application and how it works.
317
366
  * 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>
318
367
  */
319
368
  ReadmeBody?: string;
320
369
  /**
370
+ * @public
321
371
  * <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>
322
372
  */
323
373
  ReadmeUrl?: string;
324
374
  /**
375
+ * @public
325
376
  * <p>The semantic version of the application:</p><p>
326
377
  * <a href="https://semver.org/">https://semver.org/</a>
327
378
  * </p>
328
379
  */
329
380
  SemanticVersion?: string;
330
381
  /**
382
+ * @public
331
383
  * <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>
332
384
  */
333
385
  SourceCodeArchiveUrl?: string;
334
386
  /**
387
+ * @public
335
388
  * <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
336
389
  */
337
390
  SourceCodeUrl?: string;
338
391
  /**
392
+ * @public
339
393
  * <p>A valid identifier from <a href="https://spdx.org/licenses/">https://spdx.org/licenses/</a>.</p>
340
394
  */
341
395
  SpdxLicenseId?: string;
342
396
  /**
397
+ * @public
343
398
  * <p>The local raw packaged AWS SAM template file of your application.
344
399
  * 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>
345
400
  */
346
401
  TemplateBody?: string;
347
402
  /**
403
+ * @public
348
404
  * <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>
349
405
  */
350
406
  TemplateUrl?: string;
@@ -355,18 +411,22 @@ export interface CreateApplicationRequest {
355
411
  */
356
412
  export interface Version {
357
413
  /**
414
+ * @public
358
415
  * <p>The application Amazon Resource Name (ARN).</p>
359
416
  */
360
417
  ApplicationId: string | undefined;
361
418
  /**
419
+ * @public
362
420
  * <p>The date and time this resource was created.</p>
363
421
  */
364
422
  CreationTime: string | undefined;
365
423
  /**
424
+ * @public
366
425
  * <p>An array of parameter types supported by the application.</p>
367
426
  */
368
427
  ParameterDefinitions: ParameterDefinition[] | undefined;
369
428
  /**
429
+ * @public
370
430
  * <p>A list of values that you must specify before you can deploy certain applications.
371
431
  * Some applications might include resources that can affect permissions in your AWS
372
432
  * account, for example, by creating new AWS Identity and Access Management (IAM) users.
@@ -393,25 +453,30 @@ export interface Version {
393
453
  */
394
454
  RequiredCapabilities: (Capability | string)[] | undefined;
395
455
  /**
456
+ * @public
396
457
  * <p>Whether all of the AWS resources contained in this application are supported in the region
397
458
  * in which it is being retrieved.</p>
398
459
  */
399
460
  ResourcesSupported: boolean | undefined;
400
461
  /**
462
+ * @public
401
463
  * <p>The semantic version of the application:</p><p>
402
464
  * <a href="https://semver.org/">https://semver.org/</a>
403
465
  * </p>
404
466
  */
405
467
  SemanticVersion: string | undefined;
406
468
  /**
469
+ * @public
407
470
  * <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>
408
471
  */
409
472
  SourceCodeArchiveUrl?: string;
410
473
  /**
474
+ * @public
411
475
  * <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
412
476
  */
413
477
  SourceCodeUrl?: string;
414
478
  /**
479
+ * @public
415
480
  * <p>A link to the packaged AWS SAM template of your application.</p>
416
481
  */
417
482
  TemplateUrl: string | undefined;
@@ -421,54 +486,67 @@ export interface Version {
421
486
  */
422
487
  export interface CreateApplicationResponse {
423
488
  /**
489
+ * @public
424
490
  * <p>The application Amazon Resource Name (ARN).</p>
425
491
  */
426
492
  ApplicationId?: string;
427
493
  /**
494
+ * @public
428
495
  * <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>
429
496
  */
430
497
  Author?: string;
431
498
  /**
499
+ * @public
432
500
  * <p>The date and time this resource was created.</p>
433
501
  */
434
502
  CreationTime?: string;
435
503
  /**
504
+ * @public
436
505
  * <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
437
506
  */
438
507
  Description?: string;
439
508
  /**
509
+ * @public
440
510
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
441
511
  */
442
512
  HomePageUrl?: string;
443
513
  /**
514
+ * @public
444
515
  * <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>
445
516
  */
446
517
  IsVerifiedAuthor?: boolean;
447
518
  /**
519
+ * @public
448
520
  * <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>
449
521
  */
450
522
  Labels?: string[];
451
523
  /**
524
+ * @public
452
525
  * <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>
453
526
  */
454
527
  LicenseUrl?: string;
455
528
  /**
529
+ * @public
456
530
  * <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
457
531
  */
458
532
  Name?: string;
459
533
  /**
534
+ * @public
460
535
  * <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>
461
536
  */
462
537
  ReadmeUrl?: string;
463
538
  /**
539
+ * @public
464
540
  * <p>A valid identifier from https://spdx.org/licenses/.</p>
465
541
  */
466
542
  SpdxLicenseId?: string;
467
543
  /**
544
+ * @public
468
545
  * <p>The URL to the public profile of a verified author. This URL is submitted by the author.</p>
469
546
  */
470
547
  VerifiedAuthorUrl?: string;
471
548
  /**
549
+ * @public
472
550
  * <p>Version information about the application.</p>
473
551
  */
474
552
  Version?: Version;
@@ -481,10 +559,12 @@ export declare class ForbiddenException extends __BaseException {
481
559
  readonly name: "ForbiddenException";
482
560
  readonly $fault: "client";
483
561
  /**
562
+ * @public
484
563
  * <p>403</p>
485
564
  */
486
565
  ErrorCode?: string;
487
566
  /**
567
+ * @public
488
568
  * <p>The client is not authenticated.</p>
489
569
  */
490
570
  Message?: string;
@@ -501,10 +581,12 @@ export declare class InternalServerErrorException extends __BaseException {
501
581
  readonly name: "InternalServerErrorException";
502
582
  readonly $fault: "server";
503
583
  /**
584
+ * @public
504
585
  * <p>500</p>
505
586
  */
506
587
  ErrorCode?: string;
507
588
  /**
589
+ * @public
508
590
  * <p>The AWS Serverless Application Repository service encountered an internal error.</p>
509
591
  */
510
592
  Message?: string;
@@ -521,10 +603,12 @@ export declare class TooManyRequestsException extends __BaseException {
521
603
  readonly name: "TooManyRequestsException";
522
604
  readonly $fault: "client";
523
605
  /**
606
+ * @public
524
607
  * <p>429</p>
525
608
  */
526
609
  ErrorCode?: string;
527
610
  /**
611
+ * @public
528
612
  * <p>The client is sending more than the allowed number of requests per unit of time.</p>
529
613
  */
530
614
  Message?: string;
@@ -538,26 +622,32 @@ export declare class TooManyRequestsException extends __BaseException {
538
622
  */
539
623
  export interface CreateApplicationVersionRequest {
540
624
  /**
625
+ * @public
541
626
  * <p>The Amazon Resource Name (ARN) of the application.</p>
542
627
  */
543
628
  ApplicationId: string | undefined;
544
629
  /**
630
+ * @public
545
631
  * <p>The semantic version of the new version.</p>
546
632
  */
547
633
  SemanticVersion: string | undefined;
548
634
  /**
635
+ * @public
549
636
  * <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>
550
637
  */
551
638
  SourceCodeArchiveUrl?: string;
552
639
  /**
640
+ * @public
553
641
  * <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
554
642
  */
555
643
  SourceCodeUrl?: string;
556
644
  /**
645
+ * @public
557
646
  * <p>The raw packaged AWS SAM template of your application.</p>
558
647
  */
559
648
  TemplateBody?: string;
560
649
  /**
650
+ * @public
561
651
  * <p>A link to the packaged AWS SAM template of your application.</p>
562
652
  */
563
653
  TemplateUrl?: string;
@@ -567,18 +657,22 @@ export interface CreateApplicationVersionRequest {
567
657
  */
568
658
  export interface CreateApplicationVersionResponse {
569
659
  /**
660
+ * @public
570
661
  * <p>The application Amazon Resource Name (ARN).</p>
571
662
  */
572
663
  ApplicationId?: string;
573
664
  /**
665
+ * @public
574
666
  * <p>The date and time this resource was created.</p>
575
667
  */
576
668
  CreationTime?: string;
577
669
  /**
670
+ * @public
578
671
  * <p>An array of parameter types supported by the application.</p>
579
672
  */
580
673
  ParameterDefinitions?: ParameterDefinition[];
581
674
  /**
675
+ * @public
582
676
  * <p>A list of values that you must specify before you can deploy certain applications.
583
677
  * Some applications might include resources that can affect permissions in your AWS
584
678
  * account, for example, by creating new AWS Identity and Access Management (IAM) users.
@@ -605,25 +699,30 @@ export interface CreateApplicationVersionResponse {
605
699
  */
606
700
  RequiredCapabilities?: (Capability | string)[];
607
701
  /**
702
+ * @public
608
703
  * <p>Whether all of the AWS resources contained in this application are supported in the region
609
704
  * in which it is being retrieved.</p>
610
705
  */
611
706
  ResourcesSupported?: boolean;
612
707
  /**
708
+ * @public
613
709
  * <p>The semantic version of the application:</p><p>
614
710
  * <a href="https://semver.org/">https://semver.org/</a>
615
711
  * </p>
616
712
  */
617
713
  SemanticVersion?: string;
618
714
  /**
715
+ * @public
619
716
  * <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>
620
717
  */
621
718
  SourceCodeArchiveUrl?: string;
622
719
  /**
720
+ * @public
623
721
  * <p>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.</p>
624
722
  */
625
723
  SourceCodeUrl?: string;
626
724
  /**
725
+ * @public
627
726
  * <p>A link to the packaged AWS SAM template of your application.</p>
628
727
  */
629
728
  TemplateUrl?: string;
@@ -635,11 +734,13 @@ export interface CreateApplicationVersionResponse {
635
734
  */
636
735
  export interface RollbackConfiguration {
637
736
  /**
737
+ * @public
638
738
  * <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>
639
739
  * </i> Data Type.</p>
640
740
  */
641
741
  MonitoringTimeInMinutes?: number;
642
742
  /**
743
+ * @public
643
744
  * <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>
644
745
  * </i> Data Type.</p>
645
746
  */
@@ -650,10 +751,12 @@ export interface RollbackConfiguration {
650
751
  */
651
752
  export interface CreateCloudFormationChangeSetRequest {
652
753
  /**
754
+ * @public
653
755
  * <p>The Amazon Resource Name (ARN) of the application.</p>
654
756
  */
655
757
  ApplicationId: string | undefined;
656
758
  /**
759
+ * @public
657
760
  * <p>A list of values that you must specify before you can deploy certain applications.
658
761
  * Some applications might include resources that can affect permissions in your AWS
659
762
  * account, for example, by creating new AWS Identity and Access Management (IAM) users.
@@ -680,56 +783,67 @@ export interface CreateCloudFormationChangeSetRequest {
680
783
  */
681
784
  Capabilities?: string[];
682
785
  /**
786
+ * @public
683
787
  * <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>
684
788
  * </i> API.</p>
685
789
  */
686
790
  ChangeSetName?: string;
687
791
  /**
792
+ * @public
688
793
  * <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>
689
794
  * </i> API.</p>
690
795
  */
691
796
  ClientToken?: string;
692
797
  /**
798
+ * @public
693
799
  * <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>
694
800
  * </i> API.</p>
695
801
  */
696
802
  Description?: string;
697
803
  /**
804
+ * @public
698
805
  * <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>
699
806
  * </i> API.</p>
700
807
  */
701
808
  NotificationArns?: string[];
702
809
  /**
810
+ * @public
703
811
  * <p>A list of parameter values for the parameters of the application.</p>
704
812
  */
705
813
  ParameterOverrides?: ParameterValue[];
706
814
  /**
815
+ * @public
707
816
  * <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>
708
817
  * </i> API.</p>
709
818
  */
710
819
  ResourceTypes?: string[];
711
820
  /**
821
+ * @public
712
822
  * <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>
713
823
  * </i> API.</p>
714
824
  */
715
825
  RollbackConfiguration?: RollbackConfiguration;
716
826
  /**
827
+ * @public
717
828
  * <p>The semantic version of the application:</p><p>
718
829
  * <a href="https://semver.org/">https://semver.org/</a>
719
830
  * </p>
720
831
  */
721
832
  SemanticVersion?: string;
722
833
  /**
834
+ * @public
723
835
  * <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>
724
836
  * </i> API.</p>
725
837
  */
726
838
  StackName: string | undefined;
727
839
  /**
840
+ * @public
728
841
  * <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>
729
842
  * </i> API.</p>
730
843
  */
731
844
  Tags?: Tag[];
732
845
  /**
846
+ * @public
733
847
  * <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>
734
848
  */
735
849
  TemplateId?: string;
@@ -739,20 +853,24 @@ export interface CreateCloudFormationChangeSetRequest {
739
853
  */
740
854
  export interface CreateCloudFormationChangeSetResponse {
741
855
  /**
856
+ * @public
742
857
  * <p>The application Amazon Resource Name (ARN).</p>
743
858
  */
744
859
  ApplicationId?: string;
745
860
  /**
861
+ * @public
746
862
  * <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>
747
863
  */
748
864
  ChangeSetId?: string;
749
865
  /**
866
+ * @public
750
867
  * <p>The semantic version of the application:</p><p>
751
868
  * <a href="https://semver.org/">https://semver.org/</a>
752
869
  * </p>
753
870
  */
754
871
  SemanticVersion?: string;
755
872
  /**
873
+ * @public
756
874
  * <p>The unique ID of the stack.</p>
757
875
  */
758
876
  StackId?: string;
@@ -762,10 +880,12 @@ export interface CreateCloudFormationChangeSetResponse {
762
880
  */
763
881
  export interface CreateCloudFormationTemplateRequest {
764
882
  /**
883
+ * @public
765
884
  * <p>The Amazon Resource Name (ARN) of the application.</p>
766
885
  */
767
886
  ApplicationId: string | undefined;
768
887
  /**
888
+ * @public
769
889
  * <p>The semantic version of the application:</p><p>
770
890
  * <a href="https://semver.org/">https://semver.org/</a>
771
891
  * </p>
@@ -790,34 +910,41 @@ export type Status = (typeof Status)[keyof typeof Status];
790
910
  */
791
911
  export interface CreateCloudFormationTemplateResponse {
792
912
  /**
913
+ * @public
793
914
  * <p>The application Amazon Resource Name (ARN).</p>
794
915
  */
795
916
  ApplicationId?: string;
796
917
  /**
918
+ * @public
797
919
  * <p>The date and time this resource was created.</p>
798
920
  */
799
921
  CreationTime?: string;
800
922
  /**
923
+ * @public
801
924
  * <p>The date and time this template expires. Templates
802
925
  * expire 1 hour after creation.</p>
803
926
  */
804
927
  ExpirationTime?: string;
805
928
  /**
929
+ * @public
806
930
  * <p>The semantic version of the application:</p><p>
807
931
  * <a href="https://semver.org/">https://semver.org/</a>
808
932
  * </p>
809
933
  */
810
934
  SemanticVersion?: string;
811
935
  /**
936
+ * @public
812
937
  * <p>Status of the template creation workflow.</p><p>Possible values: PREPARING | ACTIVE | EXPIRED
813
938
  * </p>
814
939
  */
815
940
  Status?: Status | string;
816
941
  /**
942
+ * @public
817
943
  * <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>
818
944
  */
819
945
  TemplateId?: string;
820
946
  /**
947
+ * @public
821
948
  * <p>A link to the template that can be used to deploy the application using
822
949
  * AWS CloudFormation.</p>
823
950
  */
@@ -831,10 +958,12 @@ export declare class NotFoundException extends __BaseException {
831
958
  readonly name: "NotFoundException";
832
959
  readonly $fault: "client";
833
960
  /**
961
+ * @public
834
962
  * <p>404</p>
835
963
  */
836
964
  ErrorCode?: string;
837
965
  /**
966
+ * @public
838
967
  * <p>The resource (for example, an access policy statement) specified in the request doesn't exist.</p>
839
968
  */
840
969
  Message?: string;
@@ -848,6 +977,7 @@ export declare class NotFoundException extends __BaseException {
848
977
  */
849
978
  export interface DeleteApplicationRequest {
850
979
  /**
980
+ * @public
851
981
  * <p>The Amazon Resource Name (ARN) of the application.</p>
852
982
  */
853
983
  ApplicationId: string | undefined;
@@ -857,10 +987,12 @@ export interface DeleteApplicationRequest {
857
987
  */
858
988
  export interface GetApplicationRequest {
859
989
  /**
990
+ * @public
860
991
  * <p>The Amazon Resource Name (ARN) of the application.</p>
861
992
  */
862
993
  ApplicationId: string | undefined;
863
994
  /**
995
+ * @public
864
996
  * <p>The semantic version of the application to get.</p>
865
997
  */
866
998
  SemanticVersion?: string;
@@ -870,54 +1002,67 @@ export interface GetApplicationRequest {
870
1002
  */
871
1003
  export interface GetApplicationResponse {
872
1004
  /**
1005
+ * @public
873
1006
  * <p>The application Amazon Resource Name (ARN).</p>
874
1007
  */
875
1008
  ApplicationId?: string;
876
1009
  /**
1010
+ * @public
877
1011
  * <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>
878
1012
  */
879
1013
  Author?: string;
880
1014
  /**
1015
+ * @public
881
1016
  * <p>The date and time this resource was created.</p>
882
1017
  */
883
1018
  CreationTime?: string;
884
1019
  /**
1020
+ * @public
885
1021
  * <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
886
1022
  */
887
1023
  Description?: string;
888
1024
  /**
1025
+ * @public
889
1026
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
890
1027
  */
891
1028
  HomePageUrl?: string;
892
1029
  /**
1030
+ * @public
893
1031
  * <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>
894
1032
  */
895
1033
  IsVerifiedAuthor?: boolean;
896
1034
  /**
1035
+ * @public
897
1036
  * <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>
898
1037
  */
899
1038
  Labels?: string[];
900
1039
  /**
1040
+ * @public
901
1041
  * <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>
902
1042
  */
903
1043
  LicenseUrl?: string;
904
1044
  /**
1045
+ * @public
905
1046
  * <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
906
1047
  */
907
1048
  Name?: string;
908
1049
  /**
1050
+ * @public
909
1051
  * <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>
910
1052
  */
911
1053
  ReadmeUrl?: string;
912
1054
  /**
1055
+ * @public
913
1056
  * <p>A valid identifier from https://spdx.org/licenses/.</p>
914
1057
  */
915
1058
  SpdxLicenseId?: string;
916
1059
  /**
1060
+ * @public
917
1061
  * <p>The URL to the public profile of a verified author. This URL is submitted by the author.</p>
918
1062
  */
919
1063
  VerifiedAuthorUrl?: string;
920
1064
  /**
1065
+ * @public
921
1066
  * <p>Version information about the application.</p>
922
1067
  */
923
1068
  Version?: Version;
@@ -927,6 +1072,7 @@ export interface GetApplicationResponse {
927
1072
  */
928
1073
  export interface GetApplicationPolicyRequest {
929
1074
  /**
1075
+ * @public
930
1076
  * <p>The Amazon Resource Name (ARN) of the application.</p>
931
1077
  */
932
1078
  ApplicationId: string | undefined;
@@ -936,6 +1082,7 @@ export interface GetApplicationPolicyRequest {
936
1082
  */
937
1083
  export interface GetApplicationPolicyResponse {
938
1084
  /**
1085
+ * @public
939
1086
  * <p>An array of policy statements applied to the application.</p>
940
1087
  */
941
1088
  Statements?: ApplicationPolicyStatement[];
@@ -945,10 +1092,12 @@ export interface GetApplicationPolicyResponse {
945
1092
  */
946
1093
  export interface GetCloudFormationTemplateRequest {
947
1094
  /**
1095
+ * @public
948
1096
  * <p>The Amazon Resource Name (ARN) of the application.</p>
949
1097
  */
950
1098
  ApplicationId: string | undefined;
951
1099
  /**
1100
+ * @public
952
1101
  * <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>
953
1102
  */
954
1103
  TemplateId: string | undefined;
@@ -958,34 +1107,41 @@ export interface GetCloudFormationTemplateRequest {
958
1107
  */
959
1108
  export interface GetCloudFormationTemplateResponse {
960
1109
  /**
1110
+ * @public
961
1111
  * <p>The application Amazon Resource Name (ARN).</p>
962
1112
  */
963
1113
  ApplicationId?: string;
964
1114
  /**
1115
+ * @public
965
1116
  * <p>The date and time this resource was created.</p>
966
1117
  */
967
1118
  CreationTime?: string;
968
1119
  /**
1120
+ * @public
969
1121
  * <p>The date and time this template expires. Templates
970
1122
  * expire 1 hour after creation.</p>
971
1123
  */
972
1124
  ExpirationTime?: string;
973
1125
  /**
1126
+ * @public
974
1127
  * <p>The semantic version of the application:</p><p>
975
1128
  * <a href="https://semver.org/">https://semver.org/</a>
976
1129
  * </p>
977
1130
  */
978
1131
  SemanticVersion?: string;
979
1132
  /**
1133
+ * @public
980
1134
  * <p>Status of the template creation workflow.</p><p>Possible values: PREPARING | ACTIVE | EXPIRED
981
1135
  * </p>
982
1136
  */
983
1137
  Status?: Status | string;
984
1138
  /**
1139
+ * @public
985
1140
  * <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>
986
1141
  */
987
1142
  TemplateId?: string;
988
1143
  /**
1144
+ * @public
989
1145
  * <p>A link to the template that can be used to deploy the application using
990
1146
  * AWS CloudFormation.</p>
991
1147
  */
@@ -996,18 +1152,22 @@ export interface GetCloudFormationTemplateResponse {
996
1152
  */
997
1153
  export interface ListApplicationDependenciesRequest {
998
1154
  /**
1155
+ * @public
999
1156
  * <p>The Amazon Resource Name (ARN) of the application.</p>
1000
1157
  */
1001
1158
  ApplicationId: string | undefined;
1002
1159
  /**
1160
+ * @public
1003
1161
  * <p>The total number of items to return.</p>
1004
1162
  */
1005
1163
  MaxItems?: number;
1006
1164
  /**
1165
+ * @public
1007
1166
  * <p>A token to specify where to start paginating.</p>
1008
1167
  */
1009
1168
  NextToken?: string;
1010
1169
  /**
1170
+ * @public
1011
1171
  * <p>The semantic version of the application to get.</p>
1012
1172
  */
1013
1173
  SemanticVersion?: string;
@@ -1017,10 +1177,12 @@ export interface ListApplicationDependenciesRequest {
1017
1177
  */
1018
1178
  export interface ListApplicationDependenciesResponse {
1019
1179
  /**
1180
+ * @public
1020
1181
  * <p>An array of application summaries nested in the application.</p>
1021
1182
  */
1022
1183
  Dependencies?: ApplicationDependencySummary[];
1023
1184
  /**
1185
+ * @public
1024
1186
  * <p>The token to request the next page of results.</p>
1025
1187
  */
1026
1188
  NextToken?: string;
@@ -1030,10 +1192,12 @@ export interface ListApplicationDependenciesResponse {
1030
1192
  */
1031
1193
  export interface ListApplicationsRequest {
1032
1194
  /**
1195
+ * @public
1033
1196
  * <p>The total number of items to return.</p>
1034
1197
  */
1035
1198
  MaxItems?: number;
1036
1199
  /**
1200
+ * @public
1037
1201
  * <p>A token to specify where to start paginating.</p>
1038
1202
  */
1039
1203
  NextToken?: string;
@@ -1043,10 +1207,12 @@ export interface ListApplicationsRequest {
1043
1207
  */
1044
1208
  export interface ListApplicationsResponse {
1045
1209
  /**
1210
+ * @public
1046
1211
  * <p>An array of application summaries.</p>
1047
1212
  */
1048
1213
  Applications?: ApplicationSummary[];
1049
1214
  /**
1215
+ * @public
1050
1216
  * <p>The token to request the next page of results.</p>
1051
1217
  */
1052
1218
  NextToken?: string;
@@ -1056,14 +1222,17 @@ export interface ListApplicationsResponse {
1056
1222
  */
1057
1223
  export interface ListApplicationVersionsRequest {
1058
1224
  /**
1225
+ * @public
1059
1226
  * <p>The Amazon Resource Name (ARN) of the application.</p>
1060
1227
  */
1061
1228
  ApplicationId: string | undefined;
1062
1229
  /**
1230
+ * @public
1063
1231
  * <p>The total number of items to return.</p>
1064
1232
  */
1065
1233
  MaxItems?: number;
1066
1234
  /**
1235
+ * @public
1067
1236
  * <p>A token to specify where to start paginating.</p>
1068
1237
  */
1069
1238
  NextToken?: string;
@@ -1073,10 +1242,12 @@ export interface ListApplicationVersionsRequest {
1073
1242
  */
1074
1243
  export interface ListApplicationVersionsResponse {
1075
1244
  /**
1245
+ * @public
1076
1246
  * <p>The token to request the next page of results.</p>
1077
1247
  */
1078
1248
  NextToken?: string;
1079
1249
  /**
1250
+ * @public
1080
1251
  * <p>An array of version summaries for the application.</p>
1081
1252
  */
1082
1253
  Versions?: VersionSummary[];
@@ -1086,10 +1257,12 @@ export interface ListApplicationVersionsResponse {
1086
1257
  */
1087
1258
  export interface PutApplicationPolicyRequest {
1088
1259
  /**
1260
+ * @public
1089
1261
  * <p>The Amazon Resource Name (ARN) of the application.</p>
1090
1262
  */
1091
1263
  ApplicationId: string | undefined;
1092
1264
  /**
1265
+ * @public
1093
1266
  * <p>An array of policy statements applied to the application.</p>
1094
1267
  */
1095
1268
  Statements: ApplicationPolicyStatement[] | undefined;
@@ -1099,6 +1272,7 @@ export interface PutApplicationPolicyRequest {
1099
1272
  */
1100
1273
  export interface PutApplicationPolicyResponse {
1101
1274
  /**
1275
+ * @public
1102
1276
  * <p>An array of policy statements applied to the application.</p>
1103
1277
  */
1104
1278
  Statements?: ApplicationPolicyStatement[];
@@ -1108,10 +1282,12 @@ export interface PutApplicationPolicyResponse {
1108
1282
  */
1109
1283
  export interface UnshareApplicationRequest {
1110
1284
  /**
1285
+ * @public
1111
1286
  * <p>The Amazon Resource Name (ARN) of the application.</p>
1112
1287
  */
1113
1288
  ApplicationId: string | undefined;
1114
1289
  /**
1290
+ * @public
1115
1291
  * <p>The AWS Organization ID to unshare the application from.</p>
1116
1292
  */
1117
1293
  OrganizationId: string | undefined;
@@ -1121,30 +1297,37 @@ export interface UnshareApplicationRequest {
1121
1297
  */
1122
1298
  export interface UpdateApplicationRequest {
1123
1299
  /**
1300
+ * @public
1124
1301
  * <p>The Amazon Resource Name (ARN) of the application.</p>
1125
1302
  */
1126
1303
  ApplicationId: string | undefined;
1127
1304
  /**
1305
+ * @public
1128
1306
  * <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>
1129
1307
  */
1130
1308
  Author?: string;
1131
1309
  /**
1310
+ * @public
1132
1311
  * <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
1133
1312
  */
1134
1313
  Description?: string;
1135
1314
  /**
1315
+ * @public
1136
1316
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
1137
1317
  */
1138
1318
  HomePageUrl?: string;
1139
1319
  /**
1320
+ * @public
1140
1321
  * <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>
1141
1322
  */
1142
1323
  Labels?: string[];
1143
1324
  /**
1325
+ * @public
1144
1326
  * <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>
1145
1327
  */
1146
1328
  ReadmeBody?: string;
1147
1329
  /**
1330
+ * @public
1148
1331
  * <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>
1149
1332
  */
1150
1333
  ReadmeUrl?: string;
@@ -1154,54 +1337,67 @@ export interface UpdateApplicationRequest {
1154
1337
  */
1155
1338
  export interface UpdateApplicationResponse {
1156
1339
  /**
1340
+ * @public
1157
1341
  * <p>The application Amazon Resource Name (ARN).</p>
1158
1342
  */
1159
1343
  ApplicationId?: string;
1160
1344
  /**
1345
+ * @public
1161
1346
  * <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>
1162
1347
  */
1163
1348
  Author?: string;
1164
1349
  /**
1350
+ * @public
1165
1351
  * <p>The date and time this resource was created.</p>
1166
1352
  */
1167
1353
  CreationTime?: string;
1168
1354
  /**
1355
+ * @public
1169
1356
  * <p>The description of the application.</p><p>Minimum length=1. Maximum length=256</p>
1170
1357
  */
1171
1358
  Description?: string;
1172
1359
  /**
1360
+ * @public
1173
1361
  * <p>A URL with more information about the application, for example the location of your GitHub repository for the application.</p>
1174
1362
  */
1175
1363
  HomePageUrl?: string;
1176
1364
  /**
1365
+ * @public
1177
1366
  * <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>
1178
1367
  */
1179
1368
  IsVerifiedAuthor?: boolean;
1180
1369
  /**
1370
+ * @public
1181
1371
  * <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>
1182
1372
  */
1183
1373
  Labels?: string[];
1184
1374
  /**
1375
+ * @public
1185
1376
  * <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>
1186
1377
  */
1187
1378
  LicenseUrl?: string;
1188
1379
  /**
1380
+ * @public
1189
1381
  * <p>The name of the application.</p><p>Minimum length=1. Maximum length=140</p><p>Pattern: "[a-zA-Z0-9\\-]+";</p>
1190
1382
  */
1191
1383
  Name?: string;
1192
1384
  /**
1385
+ * @public
1193
1386
  * <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>
1194
1387
  */
1195
1388
  ReadmeUrl?: string;
1196
1389
  /**
1390
+ * @public
1197
1391
  * <p>A valid identifier from https://spdx.org/licenses/.</p>
1198
1392
  */
1199
1393
  SpdxLicenseId?: string;
1200
1394
  /**
1395
+ * @public
1201
1396
  * <p>The URL to the public profile of a verified author. This URL is submitted by the author.</p>
1202
1397
  */
1203
1398
  VerifiedAuthorUrl?: string;
1204
1399
  /**
1400
+ * @public
1205
1401
  * <p>Version information about the application.</p>
1206
1402
  */
1207
1403
  Version?: Version;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-serverlessapplicationrepository",
3
3
  "description": "AWS SDK for JavaScript Serverlessapplicationrepository Client for Node.js, Browser and React Native",
4
- "version": "3.379.1",
4
+ "version": "3.385.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.385.0",
25
+ "@aws-sdk/credential-provider-node": "3.385.0",
26
26
  "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
29
  "@aws-sdk/middleware-signing": "3.379.1",
30
- "@aws-sdk/middleware-user-agent": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",