@aws-sdk/client-rolesanywhere 3.131.0 → 3.142.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.
Files changed (61) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/CreateProfileCommand.js +2 -2
  4. package/dist-cjs/commands/CreateTrustAnchorCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteCrlCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteProfileCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteTrustAnchorCommand.js +2 -2
  8. package/dist-cjs/commands/DisableCrlCommand.js +2 -2
  9. package/dist-cjs/commands/DisableProfileCommand.js +2 -2
  10. package/dist-cjs/commands/DisableTrustAnchorCommand.js +2 -2
  11. package/dist-cjs/commands/EnableCrlCommand.js +2 -2
  12. package/dist-cjs/commands/EnableProfileCommand.js +2 -2
  13. package/dist-cjs/commands/EnableTrustAnchorCommand.js +2 -2
  14. package/dist-cjs/commands/GetCrlCommand.js +2 -2
  15. package/dist-cjs/commands/GetProfileCommand.js +2 -2
  16. package/dist-cjs/commands/GetSubjectCommand.js +2 -2
  17. package/dist-cjs/commands/GetTrustAnchorCommand.js +2 -2
  18. package/dist-cjs/commands/ImportCrlCommand.js +2 -2
  19. package/dist-cjs/commands/ListCrlsCommand.js +2 -2
  20. package/dist-cjs/commands/ListProfilesCommand.js +2 -2
  21. package/dist-cjs/commands/ListSubjectsCommand.js +2 -2
  22. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  23. package/dist-cjs/commands/ListTrustAnchorsCommand.js +2 -2
  24. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  25. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  26. package/dist-cjs/commands/UpdateCrlCommand.js +2 -2
  27. package/dist-cjs/commands/UpdateProfileCommand.js +2 -2
  28. package/dist-cjs/commands/UpdateTrustAnchorCommand.js +2 -2
  29. package/dist-cjs/models/models_0.js +160 -229
  30. package/dist-cjs/protocols/Aws_restJson1.js +280 -541
  31. package/dist-es/commands/CreateProfileCommand.js +3 -3
  32. package/dist-es/commands/CreateTrustAnchorCommand.js +3 -3
  33. package/dist-es/commands/DeleteCrlCommand.js +3 -3
  34. package/dist-es/commands/DeleteProfileCommand.js +3 -3
  35. package/dist-es/commands/DeleteTrustAnchorCommand.js +3 -3
  36. package/dist-es/commands/DisableCrlCommand.js +3 -3
  37. package/dist-es/commands/DisableProfileCommand.js +3 -3
  38. package/dist-es/commands/DisableTrustAnchorCommand.js +3 -3
  39. package/dist-es/commands/EnableCrlCommand.js +3 -3
  40. package/dist-es/commands/EnableProfileCommand.js +3 -3
  41. package/dist-es/commands/EnableTrustAnchorCommand.js +3 -3
  42. package/dist-es/commands/GetCrlCommand.js +3 -3
  43. package/dist-es/commands/GetProfileCommand.js +3 -3
  44. package/dist-es/commands/GetSubjectCommand.js +3 -3
  45. package/dist-es/commands/GetTrustAnchorCommand.js +3 -3
  46. package/dist-es/commands/ImportCrlCommand.js +3 -3
  47. package/dist-es/commands/ListCrlsCommand.js +3 -3
  48. package/dist-es/commands/ListProfilesCommand.js +3 -3
  49. package/dist-es/commands/ListSubjectsCommand.js +3 -3
  50. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  51. package/dist-es/commands/ListTrustAnchorsCommand.js +3 -3
  52. package/dist-es/commands/TagResourceCommand.js +3 -3
  53. package/dist-es/commands/UntagResourceCommand.js +3 -3
  54. package/dist-es/commands/UpdateCrlCommand.js +3 -3
  55. package/dist-es/commands/UpdateProfileCommand.js +3 -3
  56. package/dist-es/commands/UpdateTrustAnchorCommand.js +3 -3
  57. package/dist-es/models/models_0.js +43 -147
  58. package/dist-es/protocols/Aws_restJson1.js +375 -544
  59. package/dist-types/models/models_0.d.ts +140 -208
  60. package/dist-types/ts3.4/models/models_0.d.ts +70 -138
  61. package/package.json +6 -6
@@ -24,12 +24,6 @@ export interface Tag {
24
24
  */
25
25
  value: string | undefined;
26
26
  }
27
- export declare namespace Tag {
28
- /**
29
- * @internal
30
- */
31
- const filterSensitiveLog: (obj: Tag) => any;
32
- }
33
27
  export interface CreateProfileRequest {
34
28
  /**
35
29
  * <p>The name of the profile.</p>
@@ -64,12 +58,6 @@ export interface CreateProfileRequest {
64
58
  */
65
59
  tags?: Tag[];
66
60
  }
67
- export declare namespace CreateProfileRequest {
68
- /**
69
- * @internal
70
- */
71
- const filterSensitiveLog: (obj: CreateProfileRequest) => any;
72
- }
73
61
  /**
74
62
  * <p>The state of the profile after a read or write operation.</p>
75
63
  */
@@ -123,24 +111,12 @@ export interface ProfileDetail {
123
111
  */
124
112
  durationSeconds?: number;
125
113
  }
126
- export declare namespace ProfileDetail {
127
- /**
128
- * @internal
129
- */
130
- const filterSensitiveLog: (obj: ProfileDetail) => any;
131
- }
132
114
  export interface ProfileDetailResponse {
133
115
  /**
134
116
  * <p>The state of the profile after a read or write operation.</p>
135
117
  */
136
118
  profile?: ProfileDetail;
137
119
  }
138
- export declare namespace ProfileDetailResponse {
139
- /**
140
- * @internal
141
- */
142
- const filterSensitiveLog: (obj: ProfileDetailResponse) => any;
143
- }
144
120
  /**
145
121
  * <p>Validation exception error.</p>
146
122
  */
@@ -184,10 +160,6 @@ export declare namespace SourceData {
184
160
  _: (name: string, value: any) => T;
185
161
  }
186
162
  const visit: <T>(value: SourceData, visitor: Visitor<T>) => T;
187
- /**
188
- * @internal
189
- */
190
- const filterSensitiveLog: (obj: SourceData) => any;
191
163
  }
192
164
  export declare enum TrustAnchorType {
193
165
  AWS_ACM_PCA = "AWS_ACM_PCA",
@@ -207,12 +179,6 @@ export interface Source {
207
179
  */
208
180
  sourceData?: SourceData;
209
181
  }
210
- export declare namespace Source {
211
- /**
212
- * @internal
213
- */
214
- const filterSensitiveLog: (obj: Source) => any;
215
- }
216
182
  export interface CreateTrustAnchorRequest {
217
183
  /**
218
184
  * <p>The name of the trust anchor.</p>
@@ -231,12 +197,6 @@ export interface CreateTrustAnchorRequest {
231
197
  */
232
198
  tags?: Tag[];
233
199
  }
234
- export declare namespace CreateTrustAnchorRequest {
235
- /**
236
- * @internal
237
- */
238
- const filterSensitiveLog: (obj: CreateTrustAnchorRequest) => any;
239
- }
240
200
  /**
241
201
  * <p>The state of the trust anchor after a read or write operation. </p>
242
202
  */
@@ -270,24 +230,12 @@ export interface TrustAnchorDetail {
270
230
  */
271
231
  updatedAt?: Date;
272
232
  }
273
- export declare namespace TrustAnchorDetail {
274
- /**
275
- * @internal
276
- */
277
- const filterSensitiveLog: (obj: TrustAnchorDetail) => any;
278
- }
279
233
  export interface TrustAnchorDetailResponse {
280
234
  /**
281
235
  * <p>The state of the trust anchor after a read or write operation. </p>
282
236
  */
283
237
  trustAnchor: TrustAnchorDetail | undefined;
284
238
  }
285
- export declare namespace TrustAnchorDetailResponse {
286
- /**
287
- * @internal
288
- */
289
- const filterSensitiveLog: (obj: TrustAnchorDetailResponse) => any;
290
- }
291
239
  /**
292
240
  * <p>A record of a presented X509 credential to <a href="https://docs.aws.amazon.com/rolesanywhere/latest/APIReference/API_CreateSession.html">CreateSession</a>. </p>
293
241
  */
@@ -317,12 +265,6 @@ export interface CredentialSummary {
317
265
  */
318
266
  failed?: boolean;
319
267
  }
320
- export declare namespace CredentialSummary {
321
- /**
322
- * @internal
323
- */
324
- const filterSensitiveLog: (obj: CredentialSummary) => any;
325
- }
326
268
  /**
327
269
  * <p>The state of the certificate revocation list (CRL) after a read or write operation.</p>
328
270
  */
@@ -360,24 +302,12 @@ export interface CrlDetail {
360
302
  */
361
303
  updatedAt?: Date;
362
304
  }
363
- export declare namespace CrlDetail {
364
- /**
365
- * @internal
366
- */
367
- const filterSensitiveLog: (obj: CrlDetail) => any;
368
- }
369
305
  export interface CrlDetailResponse {
370
306
  /**
371
307
  * <p>The state of the certificate revocation list (CRL) after a read or write operation.</p>
372
308
  */
373
309
  crl: CrlDetail | undefined;
374
310
  }
375
- export declare namespace CrlDetailResponse {
376
- /**
377
- * @internal
378
- */
379
- const filterSensitiveLog: (obj: CrlDetailResponse) => any;
380
- }
381
311
  /**
382
312
  * <p>The resource could not be found.</p>
383
313
  */
@@ -395,12 +325,6 @@ export interface ScalarCrlRequest {
395
325
  */
396
326
  crlId: string | undefined;
397
327
  }
398
- export declare namespace ScalarCrlRequest {
399
- /**
400
- * @internal
401
- */
402
- const filterSensitiveLog: (obj: ScalarCrlRequest) => any;
403
- }
404
328
  export interface ImportCrlRequest {
405
329
  /**
406
330
  * <p>The name of the certificate revocation list (CRL).</p>
@@ -423,12 +347,6 @@ export interface ImportCrlRequest {
423
347
  */
424
348
  trustAnchorArn: string | undefined;
425
349
  }
426
- export declare namespace ImportCrlRequest {
427
- /**
428
- * @internal
429
- */
430
- const filterSensitiveLog: (obj: ImportCrlRequest) => any;
431
- }
432
350
  export interface ListCrlsResponse {
433
351
  /**
434
352
  * <p>A token that indicates where the output should continue from, if a previous operation did not show all results. To get the next results, call the operation again with this value.</p>
@@ -439,12 +357,6 @@ export interface ListCrlsResponse {
439
357
  */
440
358
  crls?: CrlDetail[];
441
359
  }
442
- export declare namespace ListCrlsResponse {
443
- /**
444
- * @internal
445
- */
446
- const filterSensitiveLog: (obj: ListCrlsResponse) => any;
447
- }
448
360
  export interface ListRequest {
449
361
  /**
450
362
  * <p>A token that indicates where the output should continue from, if a previous operation did not show all results. To get the next results, call the operation again with this value.</p>
@@ -455,12 +367,6 @@ export interface ListRequest {
455
367
  */
456
368
  pageSize?: number;
457
369
  }
458
- export declare namespace ListRequest {
459
- /**
460
- * @internal
461
- */
462
- const filterSensitiveLog: (obj: ListRequest) => any;
463
- }
464
370
  export interface UpdateCrlRequest {
465
371
  /**
466
372
  * <p>The unique identifier of the certificate revocation list (CRL).</p>
@@ -475,48 +381,24 @@ export interface UpdateCrlRequest {
475
381
  */
476
382
  crlData?: Uint8Array;
477
383
  }
478
- export declare namespace UpdateCrlRequest {
479
- /**
480
- * @internal
481
- */
482
- const filterSensitiveLog: (obj: UpdateCrlRequest) => any;
483
- }
484
384
  export interface ScalarProfileRequest {
485
385
  /**
486
386
  * <p>The unique identifier of the profile.</p>
487
387
  */
488
388
  profileId: string | undefined;
489
389
  }
490
- export declare namespace ScalarProfileRequest {
491
- /**
492
- * @internal
493
- */
494
- const filterSensitiveLog: (obj: ScalarProfileRequest) => any;
495
- }
496
390
  export interface ScalarTrustAnchorRequest {
497
391
  /**
498
392
  * <p>The unique identifier of the trust anchor.</p>
499
393
  */
500
394
  trustAnchorId: string | undefined;
501
395
  }
502
- export declare namespace ScalarTrustAnchorRequest {
503
- /**
504
- * @internal
505
- */
506
- const filterSensitiveLog: (obj: ScalarTrustAnchorRequest) => any;
507
- }
508
396
  export interface ScalarSubjectRequest {
509
397
  /**
510
398
  * <p>The unique identifier of the subject. </p>
511
399
  */
512
400
  subjectId: string | undefined;
513
401
  }
514
- export declare namespace ScalarSubjectRequest {
515
- /**
516
- * @internal
517
- */
518
- const filterSensitiveLog: (obj: ScalarSubjectRequest) => any;
519
- }
520
402
  /**
521
403
  * <p>A key-value pair you set that identifies a property of the authenticating instance.</p>
522
404
  */
@@ -534,12 +416,6 @@ export interface InstanceProperty {
534
416
  */
535
417
  failed?: boolean;
536
418
  }
537
- export declare namespace InstanceProperty {
538
- /**
539
- * @internal
540
- */
541
- const filterSensitiveLog: (obj: InstanceProperty) => any;
542
- }
543
419
  /**
544
420
  * <p>The state of the subject after a read or write operation.</p>
545
421
  */
@@ -581,24 +457,12 @@ export interface SubjectDetail {
581
457
  */
582
458
  instanceProperties?: InstanceProperty[];
583
459
  }
584
- export declare namespace SubjectDetail {
585
- /**
586
- * @internal
587
- */
588
- const filterSensitiveLog: (obj: SubjectDetail) => any;
589
- }
590
460
  export interface SubjectDetailResponse {
591
461
  /**
592
462
  * <p>The state of the subject after a read or write operation.</p>
593
463
  */
594
464
  subject?: SubjectDetail;
595
465
  }
596
- export declare namespace SubjectDetailResponse {
597
- /**
598
- * @internal
599
- */
600
- const filterSensitiveLog: (obj: SubjectDetailResponse) => any;
601
- }
602
466
  export interface ListProfilesResponse {
603
467
  /**
604
468
  * <p>A token that indicates where the output should continue from, if a previous operation did not show all results. To get the next results, call the operation again with this value.</p>
@@ -609,12 +473,6 @@ export interface ListProfilesResponse {
609
473
  */
610
474
  profiles?: ProfileDetail[];
611
475
  }
612
- export declare namespace ListProfilesResponse {
613
- /**
614
- * @internal
615
- */
616
- const filterSensitiveLog: (obj: ListProfilesResponse) => any;
617
- }
618
476
  /**
619
477
  * <p>A summary representation of Subject resources returned in read operations; primarily ListSubjects.</p>
620
478
  */
@@ -648,12 +506,6 @@ export interface SubjectSummary {
648
506
  */
649
507
  updatedAt?: Date;
650
508
  }
651
- export declare namespace SubjectSummary {
652
- /**
653
- * @internal
654
- */
655
- const filterSensitiveLog: (obj: SubjectSummary) => any;
656
- }
657
509
  export interface ListSubjectsResponse {
658
510
  /**
659
511
  * <p>A list of subjects.</p>
@@ -664,36 +516,18 @@ export interface ListSubjectsResponse {
664
516
  */
665
517
  nextToken?: string;
666
518
  }
667
- export declare namespace ListSubjectsResponse {
668
- /**
669
- * @internal
670
- */
671
- const filterSensitiveLog: (obj: ListSubjectsResponse) => any;
672
- }
673
519
  export interface ListTagsForResourceRequest {
674
520
  /**
675
521
  * <p>The ARN of the resource.</p>
676
522
  */
677
523
  resourceArn: string | undefined;
678
524
  }
679
- export declare namespace ListTagsForResourceRequest {
680
- /**
681
- * @internal
682
- */
683
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
684
- }
685
525
  export interface ListTagsForResourceResponse {
686
526
  /**
687
527
  * <p>A list of tags attached to the resource.</p>
688
528
  */
689
529
  tags?: Tag[];
690
530
  }
691
- export declare namespace ListTagsForResourceResponse {
692
- /**
693
- * @internal
694
- */
695
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
696
- }
697
531
  export interface ListTrustAnchorsResponse {
698
532
  /**
699
533
  * <p>A token that indicates where the output should continue from, if a previous operation did not show all results. To get the next results, call the operation again with this value.</p>
@@ -704,12 +538,6 @@ export interface ListTrustAnchorsResponse {
704
538
  */
705
539
  trustAnchors?: TrustAnchorDetail[];
706
540
  }
707
- export declare namespace ListTrustAnchorsResponse {
708
- /**
709
- * @internal
710
- */
711
- const filterSensitiveLog: (obj: ListTrustAnchorsResponse) => any;
712
- }
713
541
  export interface UpdateProfileRequest {
714
542
  /**
715
543
  * <p>The unique identifier of the profile.</p>
@@ -736,12 +564,6 @@ export interface UpdateProfileRequest {
736
564
  */
737
565
  durationSeconds?: number;
738
566
  }
739
- export declare namespace UpdateProfileRequest {
740
- /**
741
- * @internal
742
- */
743
- const filterSensitiveLog: (obj: UpdateProfileRequest) => any;
744
- }
745
567
  export interface TagResourceRequest {
746
568
  /**
747
569
  * <p>The ARN of the resource.</p>
@@ -752,20 +574,8 @@ export interface TagResourceRequest {
752
574
  */
753
575
  tags: Tag[] | undefined;
754
576
  }
755
- export declare namespace TagResourceRequest {
756
- /**
757
- * @internal
758
- */
759
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
760
- }
761
577
  export interface TagResourceResponse {
762
578
  }
763
- export declare namespace TagResourceResponse {
764
- /**
765
- * @internal
766
- */
767
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
768
- }
769
579
  /**
770
580
  * <p>Too many tags.</p>
771
581
  */
@@ -791,12 +601,6 @@ export interface UpdateTrustAnchorRequest {
791
601
  */
792
602
  source?: Source;
793
603
  }
794
- export declare namespace UpdateTrustAnchorRequest {
795
- /**
796
- * @internal
797
- */
798
- const filterSensitiveLog: (obj: UpdateTrustAnchorRequest) => any;
799
- }
800
604
  export interface UntagResourceRequest {
801
605
  /**
802
606
  * <p>The ARN of the resource.</p>
@@ -807,17 +611,145 @@ export interface UntagResourceRequest {
807
611
  */
808
612
  tagKeys: string[] | undefined;
809
613
  }
810
- export declare namespace UntagResourceRequest {
811
- /**
812
- * @internal
813
- */
814
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
815
- }
816
614
  export interface UntagResourceResponse {
817
615
  }
818
- export declare namespace UntagResourceResponse {
819
- /**
820
- * @internal
821
- */
822
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
823
- }
616
+ /**
617
+ * @internal
618
+ */
619
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
620
+ /**
621
+ * @internal
622
+ */
623
+ export declare const CreateProfileRequestFilterSensitiveLog: (obj: CreateProfileRequest) => any;
624
+ /**
625
+ * @internal
626
+ */
627
+ export declare const ProfileDetailFilterSensitiveLog: (obj: ProfileDetail) => any;
628
+ /**
629
+ * @internal
630
+ */
631
+ export declare const ProfileDetailResponseFilterSensitiveLog: (obj: ProfileDetailResponse) => any;
632
+ /**
633
+ * @internal
634
+ */
635
+ export declare const SourceDataFilterSensitiveLog: (obj: SourceData) => any;
636
+ /**
637
+ * @internal
638
+ */
639
+ export declare const SourceFilterSensitiveLog: (obj: Source) => any;
640
+ /**
641
+ * @internal
642
+ */
643
+ export declare const CreateTrustAnchorRequestFilterSensitiveLog: (obj: CreateTrustAnchorRequest) => any;
644
+ /**
645
+ * @internal
646
+ */
647
+ export declare const TrustAnchorDetailFilterSensitiveLog: (obj: TrustAnchorDetail) => any;
648
+ /**
649
+ * @internal
650
+ */
651
+ export declare const TrustAnchorDetailResponseFilterSensitiveLog: (obj: TrustAnchorDetailResponse) => any;
652
+ /**
653
+ * @internal
654
+ */
655
+ export declare const CredentialSummaryFilterSensitiveLog: (obj: CredentialSummary) => any;
656
+ /**
657
+ * @internal
658
+ */
659
+ export declare const CrlDetailFilterSensitiveLog: (obj: CrlDetail) => any;
660
+ /**
661
+ * @internal
662
+ */
663
+ export declare const CrlDetailResponseFilterSensitiveLog: (obj: CrlDetailResponse) => any;
664
+ /**
665
+ * @internal
666
+ */
667
+ export declare const ScalarCrlRequestFilterSensitiveLog: (obj: ScalarCrlRequest) => any;
668
+ /**
669
+ * @internal
670
+ */
671
+ export declare const ImportCrlRequestFilterSensitiveLog: (obj: ImportCrlRequest) => any;
672
+ /**
673
+ * @internal
674
+ */
675
+ export declare const ListCrlsResponseFilterSensitiveLog: (obj: ListCrlsResponse) => any;
676
+ /**
677
+ * @internal
678
+ */
679
+ export declare const ListRequestFilterSensitiveLog: (obj: ListRequest) => any;
680
+ /**
681
+ * @internal
682
+ */
683
+ export declare const UpdateCrlRequestFilterSensitiveLog: (obj: UpdateCrlRequest) => any;
684
+ /**
685
+ * @internal
686
+ */
687
+ export declare const ScalarProfileRequestFilterSensitiveLog: (obj: ScalarProfileRequest) => any;
688
+ /**
689
+ * @internal
690
+ */
691
+ export declare const ScalarTrustAnchorRequestFilterSensitiveLog: (obj: ScalarTrustAnchorRequest) => any;
692
+ /**
693
+ * @internal
694
+ */
695
+ export declare const ScalarSubjectRequestFilterSensitiveLog: (obj: ScalarSubjectRequest) => any;
696
+ /**
697
+ * @internal
698
+ */
699
+ export declare const InstancePropertyFilterSensitiveLog: (obj: InstanceProperty) => any;
700
+ /**
701
+ * @internal
702
+ */
703
+ export declare const SubjectDetailFilterSensitiveLog: (obj: SubjectDetail) => any;
704
+ /**
705
+ * @internal
706
+ */
707
+ export declare const SubjectDetailResponseFilterSensitiveLog: (obj: SubjectDetailResponse) => any;
708
+ /**
709
+ * @internal
710
+ */
711
+ export declare const ListProfilesResponseFilterSensitiveLog: (obj: ListProfilesResponse) => any;
712
+ /**
713
+ * @internal
714
+ */
715
+ export declare const SubjectSummaryFilterSensitiveLog: (obj: SubjectSummary) => any;
716
+ /**
717
+ * @internal
718
+ */
719
+ export declare const ListSubjectsResponseFilterSensitiveLog: (obj: ListSubjectsResponse) => any;
720
+ /**
721
+ * @internal
722
+ */
723
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
724
+ /**
725
+ * @internal
726
+ */
727
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
728
+ /**
729
+ * @internal
730
+ */
731
+ export declare const ListTrustAnchorsResponseFilterSensitiveLog: (obj: ListTrustAnchorsResponse) => any;
732
+ /**
733
+ * @internal
734
+ */
735
+ export declare const UpdateProfileRequestFilterSensitiveLog: (obj: UpdateProfileRequest) => any;
736
+ /**
737
+ * @internal
738
+ */
739
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
740
+ /**
741
+ * @internal
742
+ */
743
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
744
+ /**
745
+ * @internal
746
+ */
747
+ export declare const UpdateTrustAnchorRequestFilterSensitiveLog: (obj: UpdateTrustAnchorRequest) => any;
748
+ /**
749
+ * @internal
750
+ */
751
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
752
+ /**
753
+ * @internal
754
+ */
755
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;