@aws-sdk/client-rolesanywhere 3.379.1 → 3.382.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.
@@ -18,10 +18,12 @@ export declare class AccessDeniedException extends __BaseException {
18
18
  */
19
19
  export interface Tag {
20
20
  /**
21
+ * @public
21
22
  * <p>The tag key.</p>
22
23
  */
23
24
  key: string | undefined;
24
25
  /**
26
+ * @public
25
27
  * <p>The tag value.</p>
26
28
  */
27
29
  value: string | undefined;
@@ -31,34 +33,42 @@ export interface Tag {
31
33
  */
32
34
  export interface CreateProfileRequest {
33
35
  /**
36
+ * @public
34
37
  * <p>The name of the profile.</p>
35
38
  */
36
39
  name: string | undefined;
37
40
  /**
41
+ * @public
38
42
  * <p>Specifies whether instance properties are required in temporary credential requests with this profile. </p>
39
43
  */
40
44
  requireInstanceProperties?: boolean;
41
45
  /**
46
+ * @public
42
47
  * <p>A session policy that applies to the trust boundary of the vended session credentials. </p>
43
48
  */
44
49
  sessionPolicy?: string;
45
50
  /**
51
+ * @public
46
52
  * <p>A list of IAM roles that this profile can assume in a temporary credential request.</p>
47
53
  */
48
54
  roleArns: string[] | undefined;
49
55
  /**
56
+ * @public
50
57
  * <p>A list of managed policy ARNs that apply to the vended session credentials. </p>
51
58
  */
52
59
  managedPolicyArns?: string[];
53
60
  /**
61
+ * @public
54
62
  * <p> The number of seconds the vended session credentials are valid for. </p>
55
63
  */
56
64
  durationSeconds?: number;
57
65
  /**
66
+ * @public
58
67
  * <p>Specifies whether the profile is enabled.</p>
59
68
  */
60
69
  enabled?: boolean;
61
70
  /**
71
+ * @public
62
72
  * <p>The tags to attach to the profile.</p>
63
73
  */
64
74
  tags?: Tag[];
@@ -69,50 +79,62 @@ export interface CreateProfileRequest {
69
79
  */
70
80
  export interface ProfileDetail {
71
81
  /**
82
+ * @public
72
83
  * <p>The unique identifier of the profile.</p>
73
84
  */
74
85
  profileId?: string;
75
86
  /**
87
+ * @public
76
88
  * <p>The ARN of the profile.</p>
77
89
  */
78
90
  profileArn?: string;
79
91
  /**
92
+ * @public
80
93
  * <p>The name of the profile.</p>
81
94
  */
82
95
  name?: string;
83
96
  /**
97
+ * @public
84
98
  * <p>Specifies whether instance properties are required in temporary credential requests with this profile. </p>
85
99
  */
86
100
  requireInstanceProperties?: boolean;
87
101
  /**
102
+ * @public
88
103
  * <p>Indicates whether the profile is enabled.</p>
89
104
  */
90
105
  enabled?: boolean;
91
106
  /**
107
+ * @public
92
108
  * <p>The Amazon Web Services account that created the profile.</p>
93
109
  */
94
110
  createdBy?: string;
95
111
  /**
112
+ * @public
96
113
  * <p>A session policy that applies to the trust boundary of the vended session credentials. </p>
97
114
  */
98
115
  sessionPolicy?: string;
99
116
  /**
117
+ * @public
100
118
  * <p>A list of IAM roles that this profile can assume in a temporary credential request.</p>
101
119
  */
102
120
  roleArns?: string[];
103
121
  /**
122
+ * @public
104
123
  * <p>A list of managed policy ARNs that apply to the vended session credentials. </p>
105
124
  */
106
125
  managedPolicyArns?: string[];
107
126
  /**
127
+ * @public
108
128
  * <p>The ISO-8601 timestamp when the profile was created. </p>
109
129
  */
110
130
  createdAt?: Date;
111
131
  /**
132
+ * @public
112
133
  * <p>The ISO-8601 timestamp when the profile was last updated. </p>
113
134
  */
114
135
  updatedAt?: Date;
115
136
  /**
137
+ * @public
116
138
  * <p> The number of seconds the vended session credentials are valid for. </p>
117
139
  */
118
140
  durationSeconds?: number;
@@ -122,6 +144,7 @@ export interface ProfileDetail {
122
144
  */
123
145
  export interface ProfileDetailResponse {
124
146
  /**
147
+ * @public
125
148
  * <p>The state of the profile after a read or write operation.</p>
126
149
  */
127
150
  profile?: ProfileDetail;
@@ -170,18 +193,22 @@ export type NotificationEvent = (typeof NotificationEvent)[keyof typeof Notifica
170
193
  */
171
194
  export interface NotificationSetting {
172
195
  /**
196
+ * @public
173
197
  * <p>Indicates whether the notification setting is enabled.</p>
174
198
  */
175
199
  enabled: boolean | undefined;
176
200
  /**
201
+ * @public
177
202
  * <p>The event to which this notification setting is applied.</p>
178
203
  */
179
204
  event: NotificationEvent | string | undefined;
180
205
  /**
206
+ * @public
181
207
  * <p>The number of days before a notification event. This value is required for a notification setting that is enabled.</p>
182
208
  */
183
209
  threshold?: number;
184
210
  /**
211
+ * @public
185
212
  * <p>The specified channel of notification.
186
213
  * IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health Dashboard to notify for an event.</p>
187
214
  * <note>
@@ -200,6 +227,7 @@ export type SourceData = SourceData.AcmPcaArnMember | SourceData.X509Certificate
200
227
  */
201
228
  export declare namespace SourceData {
202
229
  /**
230
+ * @public
203
231
  * <p>The PEM-encoded data for the certificate anchor. Included for trust anchors of type <code>CERTIFICATE_BUNDLE</code>. </p>
204
232
  */
205
233
  interface X509CertificateDataMember {
@@ -208,6 +236,7 @@ export declare namespace SourceData {
208
236
  $unknown?: never;
209
237
  }
210
238
  /**
239
+ * @public
211
240
  * <p>
212
241
  * The root certificate of the Private Certificate Authority specified by this ARN is used in trust
213
242
  * validation for temporary credential requests. Included for trust anchors of type <code>AWS_ACM_PCA</code>.
@@ -218,6 +247,9 @@ export declare namespace SourceData {
218
247
  acmPcaArn: string;
219
248
  $unknown?: never;
220
249
  }
250
+ /**
251
+ * @public
252
+ */
221
253
  interface $UnknownMember {
222
254
  x509CertificateData?: never;
223
255
  acmPcaArn?: never;
@@ -249,10 +281,12 @@ export type TrustAnchorType = (typeof TrustAnchorType)[keyof typeof TrustAnchorT
249
281
  */
250
282
  export interface Source {
251
283
  /**
284
+ * @public
252
285
  * <p>The type of the trust anchor. </p>
253
286
  */
254
287
  sourceType?: TrustAnchorType | string;
255
288
  /**
289
+ * @public
256
290
  * <p>The data field of the trust anchor depending on its type. </p>
257
291
  */
258
292
  sourceData?: SourceData;
@@ -262,22 +296,27 @@ export interface Source {
262
296
  */
263
297
  export interface CreateTrustAnchorRequest {
264
298
  /**
299
+ * @public
265
300
  * <p>The name of the trust anchor.</p>
266
301
  */
267
302
  name: string | undefined;
268
303
  /**
304
+ * @public
269
305
  * <p>The trust anchor type and its related certificate data.</p>
270
306
  */
271
307
  source: Source | undefined;
272
308
  /**
309
+ * @public
273
310
  * <p>Specifies whether the trust anchor is enabled.</p>
274
311
  */
275
312
  enabled?: boolean;
276
313
  /**
314
+ * @public
277
315
  * <p>The tags to attach to the trust anchor.</p>
278
316
  */
279
317
  tags?: Tag[];
280
318
  /**
319
+ * @public
281
320
  * <p>A list of notification settings to be associated to the trust anchor.</p>
282
321
  */
283
322
  notificationSettings?: NotificationSetting[];
@@ -290,18 +329,22 @@ export interface CreateTrustAnchorRequest {
290
329
  */
291
330
  export interface NotificationSettingDetail {
292
331
  /**
332
+ * @public
293
333
  * <p>Indicates whether the notification setting is enabled.</p>
294
334
  */
295
335
  enabled: boolean | undefined;
296
336
  /**
337
+ * @public
297
338
  * <p>The event to which this notification setting is applied.</p>
298
339
  */
299
340
  event: NotificationEvent | string | undefined;
300
341
  /**
342
+ * @public
301
343
  * <p>The number of days before a notification event.</p>
302
344
  */
303
345
  threshold?: number;
304
346
  /**
347
+ * @public
305
348
  * <p>The specified channel of notification.
306
349
  * IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health Dashboard to notify for an event.</p>
307
350
  * <note>
@@ -310,6 +353,7 @@ export interface NotificationSettingDetail {
310
353
  */
311
354
  channel?: NotificationChannel | string;
312
355
  /**
356
+ * @public
313
357
  * <p>The principal that configured the notification setting.
314
358
  * For default settings configured by IAM Roles Anywhere,
315
359
  * the value is <code>rolesanywhere.amazonaws.com</code>, and
@@ -324,34 +368,42 @@ export interface NotificationSettingDetail {
324
368
  */
325
369
  export interface TrustAnchorDetail {
326
370
  /**
371
+ * @public
327
372
  * <p>The unique identifier of the trust anchor.</p>
328
373
  */
329
374
  trustAnchorId?: string;
330
375
  /**
376
+ * @public
331
377
  * <p>The ARN of the trust anchor.</p>
332
378
  */
333
379
  trustAnchorArn?: string;
334
380
  /**
381
+ * @public
335
382
  * <p>The name of the trust anchor.</p>
336
383
  */
337
384
  name?: string;
338
385
  /**
386
+ * @public
339
387
  * <p>The trust anchor type and its related certificate data.</p>
340
388
  */
341
389
  source?: Source;
342
390
  /**
391
+ * @public
343
392
  * <p>Indicates whether the trust anchor is enabled.</p>
344
393
  */
345
394
  enabled?: boolean;
346
395
  /**
396
+ * @public
347
397
  * <p>The ISO-8601 timestamp when the trust anchor was created. </p>
348
398
  */
349
399
  createdAt?: Date;
350
400
  /**
401
+ * @public
351
402
  * <p>The ISO-8601 timestamp when the trust anchor was last updated. </p>
352
403
  */
353
404
  updatedAt?: Date;
354
405
  /**
406
+ * @public
355
407
  * <p>A list of notification settings to be associated to the trust anchor.</p>
356
408
  */
357
409
  notificationSettings?: NotificationSettingDetail[];
@@ -361,6 +413,7 @@ export interface TrustAnchorDetail {
361
413
  */
362
414
  export interface TrustAnchorDetailResponse {
363
415
  /**
416
+ * @public
364
417
  * <p>The state of the trust anchor after a read or write operation. </p>
365
418
  */
366
419
  trustAnchor: TrustAnchorDetail | undefined;
@@ -371,26 +424,32 @@ export interface TrustAnchorDetailResponse {
371
424
  */
372
425
  export interface CredentialSummary {
373
426
  /**
427
+ * @public
374
428
  * <p>The ISO-8601 time stamp of when the certificate was last used in a temporary credential request.</p>
375
429
  */
376
430
  seenAt?: Date;
377
431
  /**
432
+ * @public
378
433
  * <p>The serial number of the certificate.</p>
379
434
  */
380
435
  serialNumber?: string;
381
436
  /**
437
+ * @public
382
438
  * <p>The fully qualified domain name of the issuing certificate for the presented end-entity certificate.</p>
383
439
  */
384
440
  issuer?: string;
385
441
  /**
442
+ * @public
386
443
  * <p>Indicates whether the credential is enabled.</p>
387
444
  */
388
445
  enabled?: boolean;
389
446
  /**
447
+ * @public
390
448
  * <p>The PEM-encoded data of the certificate.</p>
391
449
  */
392
450
  x509CertificateData?: string;
393
451
  /**
452
+ * @public
394
453
  * <p>Indicates whether the temporary credential request was successful. </p>
395
454
  */
396
455
  failed?: boolean;
@@ -401,34 +460,42 @@ export interface CredentialSummary {
401
460
  */
402
461
  export interface CrlDetail {
403
462
  /**
463
+ * @public
404
464
  * <p>The unique identifier of the certificate revocation list (CRL).</p>
405
465
  */
406
466
  crlId?: string;
407
467
  /**
468
+ * @public
408
469
  * <p>The ARN of the certificate revocation list (CRL).</p>
409
470
  */
410
471
  crlArn?: string;
411
472
  /**
473
+ * @public
412
474
  * <p>The name of the certificate revocation list (CRL).</p>
413
475
  */
414
476
  name?: string;
415
477
  /**
478
+ * @public
416
479
  * <p>Indicates whether the certificate revocation list (CRL) is enabled.</p>
417
480
  */
418
481
  enabled?: boolean;
419
482
  /**
483
+ * @public
420
484
  * <p>The state of the certificate revocation list (CRL) after a read or write operation.</p>
421
485
  */
422
486
  crlData?: Uint8Array;
423
487
  /**
488
+ * @public
424
489
  * <p>The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for. </p>
425
490
  */
426
491
  trustAnchorArn?: string;
427
492
  /**
493
+ * @public
428
494
  * <p>The ISO-8601 timestamp when the certificate revocation list (CRL) was created. </p>
429
495
  */
430
496
  createdAt?: Date;
431
497
  /**
498
+ * @public
432
499
  * <p>The ISO-8601 timestamp when the certificate revocation list (CRL) was last updated. </p>
433
500
  */
434
501
  updatedAt?: Date;
@@ -438,6 +505,7 @@ export interface CrlDetail {
438
505
  */
439
506
  export interface CrlDetailResponse {
440
507
  /**
508
+ * @public
441
509
  * <p>The state of the certificate revocation list (CRL) after a read or write operation.</p>
442
510
  */
443
511
  crl: CrlDetail | undefined;
@@ -459,6 +527,7 @@ export declare class ResourceNotFoundException extends __BaseException {
459
527
  */
460
528
  export interface ScalarCrlRequest {
461
529
  /**
530
+ * @public
462
531
  * <p>The unique identifier of the certificate revocation list (CRL).</p>
463
532
  */
464
533
  crlId: string | undefined;
@@ -468,22 +537,27 @@ export interface ScalarCrlRequest {
468
537
  */
469
538
  export interface ImportCrlRequest {
470
539
  /**
540
+ * @public
471
541
  * <p>The name of the certificate revocation list (CRL).</p>
472
542
  */
473
543
  name: string | undefined;
474
544
  /**
545
+ * @public
475
546
  * <p>The x509 v3 specified certificate revocation list (CRL).</p>
476
547
  */
477
548
  crlData: Uint8Array | undefined;
478
549
  /**
550
+ * @public
479
551
  * <p>Specifies whether the certificate revocation list (CRL) is enabled.</p>
480
552
  */
481
553
  enabled?: boolean;
482
554
  /**
555
+ * @public
483
556
  * <p>A list of tags to attach to the certificate revocation list (CRL).</p>
484
557
  */
485
558
  tags?: Tag[];
486
559
  /**
560
+ * @public
487
561
  * <p>The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.</p>
488
562
  */
489
563
  trustAnchorArn: string | undefined;
@@ -493,10 +567,12 @@ export interface ImportCrlRequest {
493
567
  */
494
568
  export interface ListCrlsResponse {
495
569
  /**
570
+ * @public
496
571
  * <p>A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.</p>
497
572
  */
498
573
  nextToken?: string;
499
574
  /**
575
+ * @public
500
576
  * <p>A list of certificate revocation lists (CRL). </p>
501
577
  */
502
578
  crls?: CrlDetail[];
@@ -506,10 +582,12 @@ export interface ListCrlsResponse {
506
582
  */
507
583
  export interface ListRequest {
508
584
  /**
585
+ * @public
509
586
  * <p>A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.</p>
510
587
  */
511
588
  nextToken?: string;
512
589
  /**
590
+ * @public
513
591
  * <p>The number of resources in the paginated list. </p>
514
592
  */
515
593
  pageSize?: number;
@@ -519,14 +597,17 @@ export interface ListRequest {
519
597
  */
520
598
  export interface UpdateCrlRequest {
521
599
  /**
600
+ * @public
522
601
  * <p>The unique identifier of the certificate revocation list (CRL).</p>
523
602
  */
524
603
  crlId: string | undefined;
525
604
  /**
605
+ * @public
526
606
  * <p>The name of the Crl.</p>
527
607
  */
528
608
  name?: string;
529
609
  /**
610
+ * @public
530
611
  * <p>The x509 v3 specified certificate revocation list (CRL).</p>
531
612
  */
532
613
  crlData?: Uint8Array;
@@ -536,6 +617,7 @@ export interface UpdateCrlRequest {
536
617
  */
537
618
  export interface ScalarProfileRequest {
538
619
  /**
620
+ * @public
539
621
  * <p>The unique identifier of the profile.</p>
540
622
  */
541
623
  profileId: string | undefined;
@@ -545,6 +627,7 @@ export interface ScalarProfileRequest {
545
627
  */
546
628
  export interface ScalarTrustAnchorRequest {
547
629
  /**
630
+ * @public
548
631
  * <p>The unique identifier of the trust anchor.</p>
549
632
  */
550
633
  trustAnchorId: string | undefined;
@@ -554,6 +637,7 @@ export interface ScalarTrustAnchorRequest {
554
637
  */
555
638
  export interface ScalarSubjectRequest {
556
639
  /**
640
+ * @public
557
641
  * <p>The unique identifier of the subject. </p>
558
642
  */
559
643
  subjectId: string | undefined;
@@ -564,14 +648,17 @@ export interface ScalarSubjectRequest {
564
648
  */
565
649
  export interface InstanceProperty {
566
650
  /**
651
+ * @public
567
652
  * <p>The ISO-8601 time stamp of when the certificate was last used in a temporary credential request.</p>
568
653
  */
569
654
  seenAt?: Date;
570
655
  /**
656
+ * @public
571
657
  * <p>A list of instanceProperty objects. </p>
572
658
  */
573
659
  properties?: Record<string, string>;
574
660
  /**
661
+ * @public
575
662
  * <p>Indicates whether the temporary credential request was successful. </p>
576
663
  */
577
664
  failed?: boolean;
@@ -582,38 +669,47 @@ export interface InstanceProperty {
582
669
  */
583
670
  export interface SubjectDetail {
584
671
  /**
672
+ * @public
585
673
  * <p>The ARN of the resource.</p>
586
674
  */
587
675
  subjectArn?: string;
588
676
  /**
677
+ * @public
589
678
  * <p>The id of the resource</p>
590
679
  */
591
680
  subjectId?: string;
592
681
  /**
682
+ * @public
593
683
  * <p>The enabled status of the subject.</p>
594
684
  */
595
685
  enabled?: boolean;
596
686
  /**
687
+ * @public
597
688
  * <p>The x509 principal identifier of the authenticating certificate.</p>
598
689
  */
599
690
  x509Subject?: string;
600
691
  /**
692
+ * @public
601
693
  * <p>The ISO-8601 timestamp of the last time this subject requested temporary session credentials.</p>
602
694
  */
603
695
  lastSeenAt?: Date;
604
696
  /**
697
+ * @public
605
698
  * <p>The ISO-8601 timestamp when the subject was created. </p>
606
699
  */
607
700
  createdAt?: Date;
608
701
  /**
702
+ * @public
609
703
  * <p>The ISO-8601 timestamp when the subject was last updated.</p>
610
704
  */
611
705
  updatedAt?: Date;
612
706
  /**
707
+ * @public
613
708
  * <p>The temporary session credentials vended at the last authenticating call with this subject.</p>
614
709
  */
615
710
  credentials?: CredentialSummary[];
616
711
  /**
712
+ * @public
617
713
  * <p>The specified instance properties associated with the request.</p>
618
714
  */
619
715
  instanceProperties?: InstanceProperty[];
@@ -623,6 +719,7 @@ export interface SubjectDetail {
623
719
  */
624
720
  export interface SubjectDetailResponse {
625
721
  /**
722
+ * @public
626
723
  * <p>The state of the subject after a read or write operation.</p>
627
724
  */
628
725
  subject?: SubjectDetail;
@@ -632,10 +729,12 @@ export interface SubjectDetailResponse {
632
729
  */
633
730
  export interface ListProfilesResponse {
634
731
  /**
732
+ * @public
635
733
  * <p>A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.</p>
636
734
  */
637
735
  nextToken?: string;
638
736
  /**
737
+ * @public
639
738
  * <p>A list of profiles.</p>
640
739
  */
641
740
  profiles?: ProfileDetail[];
@@ -646,30 +745,37 @@ export interface ListProfilesResponse {
646
745
  */
647
746
  export interface SubjectSummary {
648
747
  /**
748
+ * @public
649
749
  * <p>The ARN of the resource.</p>
650
750
  */
651
751
  subjectArn?: string;
652
752
  /**
753
+ * @public
653
754
  * <p>The id of the resource.</p>
654
755
  */
655
756
  subjectId?: string;
656
757
  /**
758
+ * @public
657
759
  * <p>The enabled status of the subject. </p>
658
760
  */
659
761
  enabled?: boolean;
660
762
  /**
763
+ * @public
661
764
  * <p>The x509 principal identifier of the authenticating certificate.</p>
662
765
  */
663
766
  x509Subject?: string;
664
767
  /**
768
+ * @public
665
769
  * <p>The ISO-8601 time stamp of when the certificate was last used in a temporary credential request.</p>
666
770
  */
667
771
  lastSeenAt?: Date;
668
772
  /**
773
+ * @public
669
774
  * <p>The ISO-8601 time stamp of when the certificate was first used in a temporary credential request.</p>
670
775
  */
671
776
  createdAt?: Date;
672
777
  /**
778
+ * @public
673
779
  * <p>The ISO-8601 timestamp when the subject was last updated. </p>
674
780
  */
675
781
  updatedAt?: Date;
@@ -679,10 +785,12 @@ export interface SubjectSummary {
679
785
  */
680
786
  export interface ListSubjectsResponse {
681
787
  /**
788
+ * @public
682
789
  * <p>A list of subjects.</p>
683
790
  */
684
791
  subjects?: SubjectSummary[];
685
792
  /**
793
+ * @public
686
794
  * <p>A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.</p>
687
795
  */
688
796
  nextToken?: string;
@@ -692,6 +800,7 @@ export interface ListSubjectsResponse {
692
800
  */
693
801
  export interface ListTagsForResourceRequest {
694
802
  /**
803
+ * @public
695
804
  * <p>The ARN of the resource.</p>
696
805
  */
697
806
  resourceArn: string | undefined;
@@ -701,6 +810,7 @@ export interface ListTagsForResourceRequest {
701
810
  */
702
811
  export interface ListTagsForResourceResponse {
703
812
  /**
813
+ * @public
704
814
  * <p>A list of tags attached to the resource.</p>
705
815
  */
706
816
  tags?: Tag[];
@@ -710,10 +820,12 @@ export interface ListTagsForResourceResponse {
710
820
  */
711
821
  export interface ListTrustAnchorsResponse {
712
822
  /**
823
+ * @public
713
824
  * <p>A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value.</p>
714
825
  */
715
826
  nextToken?: string;
716
827
  /**
828
+ * @public
717
829
  * <p>A list of trust anchors.</p>
718
830
  */
719
831
  trustAnchors?: TrustAnchorDetail[];
@@ -726,10 +838,12 @@ export interface ListTrustAnchorsResponse {
726
838
  */
727
839
  export interface NotificationSettingKey {
728
840
  /**
841
+ * @public
729
842
  * <p>The notification setting event to reset.</p>
730
843
  */
731
844
  event: NotificationEvent | string | undefined;
732
845
  /**
846
+ * @public
733
847
  * <p>The specified channel of notification.</p>
734
848
  */
735
849
  channel?: NotificationChannel | string;
@@ -739,26 +853,32 @@ export interface NotificationSettingKey {
739
853
  */
740
854
  export interface UpdateProfileRequest {
741
855
  /**
856
+ * @public
742
857
  * <p>The unique identifier of the profile.</p>
743
858
  */
744
859
  profileId: string | undefined;
745
860
  /**
861
+ * @public
746
862
  * <p>The name of the profile.</p>
747
863
  */
748
864
  name?: string;
749
865
  /**
866
+ * @public
750
867
  * <p>A session policy that applies to the trust boundary of the vended session credentials. </p>
751
868
  */
752
869
  sessionPolicy?: string;
753
870
  /**
871
+ * @public
754
872
  * <p>A list of IAM roles that this profile can assume in a temporary credential request.</p>
755
873
  */
756
874
  roleArns?: string[];
757
875
  /**
876
+ * @public
758
877
  * <p>A list of managed policy ARNs that apply to the vended session credentials. </p>
759
878
  */
760
879
  managedPolicyArns?: string[];
761
880
  /**
881
+ * @public
762
882
  * <p> The number of seconds the vended session credentials are valid for. </p>
763
883
  */
764
884
  durationSeconds?: number;
@@ -768,10 +888,12 @@ export interface UpdateProfileRequest {
768
888
  */
769
889
  export interface PutNotificationSettingsRequest {
770
890
  /**
891
+ * @public
771
892
  * <p>The unique identifier of the trust anchor.</p>
772
893
  */
773
894
  trustAnchorId: string | undefined;
774
895
  /**
896
+ * @public
775
897
  * <p>A list of notification settings to be associated to the trust anchor.</p>
776
898
  */
777
899
  notificationSettings: NotificationSetting[] | undefined;
@@ -781,6 +903,7 @@ export interface PutNotificationSettingsRequest {
781
903
  */
782
904
  export interface PutNotificationSettingsResponse {
783
905
  /**
906
+ * @public
784
907
  * <p>The state of the trust anchor after a read or write operation. </p>
785
908
  */
786
909
  trustAnchor: TrustAnchorDetail | undefined;
@@ -790,10 +913,12 @@ export interface PutNotificationSettingsResponse {
790
913
  */
791
914
  export interface ResetNotificationSettingsRequest {
792
915
  /**
916
+ * @public
793
917
  * <p>The unique identifier of the trust anchor.</p>
794
918
  */
795
919
  trustAnchorId: string | undefined;
796
920
  /**
921
+ * @public
797
922
  * <p>A list of notification setting keys to reset.
798
923
  * A notification setting key includes the event and the channel.
799
924
  * </p>
@@ -805,6 +930,7 @@ export interface ResetNotificationSettingsRequest {
805
930
  */
806
931
  export interface ResetNotificationSettingsResponse {
807
932
  /**
933
+ * @public
808
934
  * <p>The state of the trust anchor after a read or write operation. </p>
809
935
  */
810
936
  trustAnchor: TrustAnchorDetail | undefined;
@@ -814,10 +940,12 @@ export interface ResetNotificationSettingsResponse {
814
940
  */
815
941
  export interface TagResourceRequest {
816
942
  /**
943
+ * @public
817
944
  * <p>The ARN of the resource.</p>
818
945
  */
819
946
  resourceArn: string | undefined;
820
947
  /**
948
+ * @public
821
949
  * <p>The tags to attach to the resource.</p>
822
950
  */
823
951
  tags: Tag[] | undefined;
@@ -844,14 +972,17 @@ export declare class TooManyTagsException extends __BaseException {
844
972
  */
845
973
  export interface UpdateTrustAnchorRequest {
846
974
  /**
975
+ * @public
847
976
  * <p>The unique identifier of the trust anchor.</p>
848
977
  */
849
978
  trustAnchorId: string | undefined;
850
979
  /**
980
+ * @public
851
981
  * <p>The name of the trust anchor.</p>
852
982
  */
853
983
  name?: string;
854
984
  /**
985
+ * @public
855
986
  * <p>The trust anchor type and its related certificate data.</p>
856
987
  */
857
988
  source?: Source;
@@ -861,10 +992,12 @@ export interface UpdateTrustAnchorRequest {
861
992
  */
862
993
  export interface UntagResourceRequest {
863
994
  /**
995
+ * @public
864
996
  * <p>The ARN of the resource.</p>
865
997
  */
866
998
  resourceArn: string | undefined;
867
999
  /**
1000
+ * @public
868
1001
  * <p>A list of keys. Tag keys are the unique identifiers of tags. </p>
869
1002
  */
870
1003
  tagKeys: string[] | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rolesanywhere",
3
3
  "description": "AWS SDK for JavaScript Rolesanywhere Client for Node.js, Browser and React Native",
4
- "version": "3.379.1",
4
+ "version": "3.382.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.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.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",