@aws-sdk/client-sts 3.234.0 → 3.235.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.
@@ -1,876 +1,4 @@
1
- export const ruleSet = {
2
- version: "1.0",
3
- parameters: {
4
- Region: {
5
- builtIn: "AWS::Region",
6
- required: false,
7
- documentation: "The AWS region used to dispatch the request.",
8
- type: "String",
9
- },
10
- UseDualStack: {
11
- builtIn: "AWS::UseDualStack",
12
- required: true,
13
- default: false,
14
- documentation: "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
15
- type: "Boolean",
16
- },
17
- UseFIPS: {
18
- builtIn: "AWS::UseFIPS",
19
- required: true,
20
- default: false,
21
- documentation: "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
22
- type: "Boolean",
23
- },
24
- Endpoint: {
25
- builtIn: "SDK::Endpoint",
26
- required: false,
27
- documentation: "Override the endpoint used to send this request",
28
- type: "String",
29
- },
30
- UseGlobalEndpoint: {
31
- builtIn: "AWS::STS::UseGlobalEndpoint",
32
- required: true,
33
- default: false,
34
- documentation: "Whether the global endpoint should be used, rather then the regional endpoint for us-east-1.",
35
- type: "Boolean",
36
- },
37
- },
38
- rules: [
39
- {
40
- conditions: [
41
- {
42
- fn: "aws.partition",
43
- argv: [
44
- {
45
- ref: "Region",
46
- },
47
- ],
48
- assign: "PartitionResult",
49
- },
50
- ],
51
- type: "tree",
52
- rules: [
53
- {
54
- conditions: [
55
- {
56
- fn: "booleanEquals",
57
- argv: [
58
- {
59
- ref: "UseGlobalEndpoint",
60
- },
61
- true,
62
- ],
63
- },
64
- {
65
- fn: "booleanEquals",
66
- argv: [
67
- {
68
- ref: "UseFIPS",
69
- },
70
- false,
71
- ],
72
- },
73
- {
74
- fn: "booleanEquals",
75
- argv: [
76
- {
77
- ref: "UseDualStack",
78
- },
79
- false,
80
- ],
81
- },
82
- {
83
- fn: "not",
84
- argv: [
85
- {
86
- fn: "isSet",
87
- argv: [
88
- {
89
- ref: "Endpoint",
90
- },
91
- ],
92
- },
93
- ],
94
- },
95
- ],
96
- type: "tree",
97
- rules: [
98
- {
99
- conditions: [
100
- {
101
- fn: "stringEquals",
102
- argv: [
103
- {
104
- ref: "Region",
105
- },
106
- "ap-northeast-1",
107
- ],
108
- },
109
- ],
110
- endpoint: {
111
- url: "https://sts.amazonaws.com",
112
- properties: {
113
- authSchemes: [
114
- {
115
- name: "sigv4",
116
- signingName: "sts",
117
- signingRegion: "us-east-1",
118
- },
119
- ],
120
- },
121
- headers: {},
122
- },
123
- type: "endpoint",
124
- },
125
- {
126
- conditions: [
127
- {
128
- fn: "stringEquals",
129
- argv: [
130
- {
131
- ref: "Region",
132
- },
133
- "ap-south-1",
134
- ],
135
- },
136
- ],
137
- endpoint: {
138
- url: "https://sts.amazonaws.com",
139
- properties: {
140
- authSchemes: [
141
- {
142
- name: "sigv4",
143
- signingName: "sts",
144
- signingRegion: "us-east-1",
145
- },
146
- ],
147
- },
148
- headers: {},
149
- },
150
- type: "endpoint",
151
- },
152
- {
153
- conditions: [
154
- {
155
- fn: "stringEquals",
156
- argv: [
157
- {
158
- ref: "Region",
159
- },
160
- "ap-southeast-1",
161
- ],
162
- },
163
- ],
164
- endpoint: {
165
- url: "https://sts.amazonaws.com",
166
- properties: {
167
- authSchemes: [
168
- {
169
- name: "sigv4",
170
- signingName: "sts",
171
- signingRegion: "us-east-1",
172
- },
173
- ],
174
- },
175
- headers: {},
176
- },
177
- type: "endpoint",
178
- },
179
- {
180
- conditions: [
181
- {
182
- fn: "stringEquals",
183
- argv: [
184
- {
185
- ref: "Region",
186
- },
187
- "ap-southeast-2",
188
- ],
189
- },
190
- ],
191
- endpoint: {
192
- url: "https://sts.amazonaws.com",
193
- properties: {
194
- authSchemes: [
195
- {
196
- name: "sigv4",
197
- signingName: "sts",
198
- signingRegion: "us-east-1",
199
- },
200
- ],
201
- },
202
- headers: {},
203
- },
204
- type: "endpoint",
205
- },
206
- {
207
- conditions: [
208
- {
209
- fn: "stringEquals",
210
- argv: [
211
- {
212
- ref: "Region",
213
- },
214
- "aws-global",
215
- ],
216
- },
217
- ],
218
- endpoint: {
219
- url: "https://sts.amazonaws.com",
220
- properties: {
221
- authSchemes: [
222
- {
223
- name: "sigv4",
224
- signingName: "sts",
225
- signingRegion: "us-east-1",
226
- },
227
- ],
228
- },
229
- headers: {},
230
- },
231
- type: "endpoint",
232
- },
233
- {
234
- conditions: [
235
- {
236
- fn: "stringEquals",
237
- argv: [
238
- {
239
- ref: "Region",
240
- },
241
- "ca-central-1",
242
- ],
243
- },
244
- ],
245
- endpoint: {
246
- url: "https://sts.amazonaws.com",
247
- properties: {
248
- authSchemes: [
249
- {
250
- name: "sigv4",
251
- signingName: "sts",
252
- signingRegion: "us-east-1",
253
- },
254
- ],
255
- },
256
- headers: {},
257
- },
258
- type: "endpoint",
259
- },
260
- {
261
- conditions: [
262
- {
263
- fn: "stringEquals",
264
- argv: [
265
- {
266
- ref: "Region",
267
- },
268
- "eu-central-1",
269
- ],
270
- },
271
- ],
272
- endpoint: {
273
- url: "https://sts.amazonaws.com",
274
- properties: {
275
- authSchemes: [
276
- {
277
- name: "sigv4",
278
- signingName: "sts",
279
- signingRegion: "us-east-1",
280
- },
281
- ],
282
- },
283
- headers: {},
284
- },
285
- type: "endpoint",
286
- },
287
- {
288
- conditions: [
289
- {
290
- fn: "stringEquals",
291
- argv: [
292
- {
293
- ref: "Region",
294
- },
295
- "eu-north-1",
296
- ],
297
- },
298
- ],
299
- endpoint: {
300
- url: "https://sts.amazonaws.com",
301
- properties: {
302
- authSchemes: [
303
- {
304
- name: "sigv4",
305
- signingName: "sts",
306
- signingRegion: "us-east-1",
307
- },
308
- ],
309
- },
310
- headers: {},
311
- },
312
- type: "endpoint",
313
- },
314
- {
315
- conditions: [
316
- {
317
- fn: "stringEquals",
318
- argv: [
319
- {
320
- ref: "Region",
321
- },
322
- "eu-west-1",
323
- ],
324
- },
325
- ],
326
- endpoint: {
327
- url: "https://sts.amazonaws.com",
328
- properties: {
329
- authSchemes: [
330
- {
331
- name: "sigv4",
332
- signingName: "sts",
333
- signingRegion: "us-east-1",
334
- },
335
- ],
336
- },
337
- headers: {},
338
- },
339
- type: "endpoint",
340
- },
341
- {
342
- conditions: [
343
- {
344
- fn: "stringEquals",
345
- argv: [
346
- {
347
- ref: "Region",
348
- },
349
- "eu-west-2",
350
- ],
351
- },
352
- ],
353
- endpoint: {
354
- url: "https://sts.amazonaws.com",
355
- properties: {
356
- authSchemes: [
357
- {
358
- name: "sigv4",
359
- signingName: "sts",
360
- signingRegion: "us-east-1",
361
- },
362
- ],
363
- },
364
- headers: {},
365
- },
366
- type: "endpoint",
367
- },
368
- {
369
- conditions: [
370
- {
371
- fn: "stringEquals",
372
- argv: [
373
- {
374
- ref: "Region",
375
- },
376
- "eu-west-3",
377
- ],
378
- },
379
- ],
380
- endpoint: {
381
- url: "https://sts.amazonaws.com",
382
- properties: {
383
- authSchemes: [
384
- {
385
- name: "sigv4",
386
- signingName: "sts",
387
- signingRegion: "us-east-1",
388
- },
389
- ],
390
- },
391
- headers: {},
392
- },
393
- type: "endpoint",
394
- },
395
- {
396
- conditions: [
397
- {
398
- fn: "stringEquals",
399
- argv: [
400
- {
401
- ref: "Region",
402
- },
403
- "sa-east-1",
404
- ],
405
- },
406
- ],
407
- endpoint: {
408
- url: "https://sts.amazonaws.com",
409
- properties: {
410
- authSchemes: [
411
- {
412
- name: "sigv4",
413
- signingName: "sts",
414
- signingRegion: "us-east-1",
415
- },
416
- ],
417
- },
418
- headers: {},
419
- },
420
- type: "endpoint",
421
- },
422
- {
423
- conditions: [
424
- {
425
- fn: "stringEquals",
426
- argv: [
427
- {
428
- ref: "Region",
429
- },
430
- "us-east-1",
431
- ],
432
- },
433
- ],
434
- endpoint: {
435
- url: "https://sts.amazonaws.com",
436
- properties: {
437
- authSchemes: [
438
- {
439
- name: "sigv4",
440
- signingName: "sts",
441
- signingRegion: "us-east-1",
442
- },
443
- ],
444
- },
445
- headers: {},
446
- },
447
- type: "endpoint",
448
- },
449
- {
450
- conditions: [
451
- {
452
- fn: "stringEquals",
453
- argv: [
454
- {
455
- ref: "Region",
456
- },
457
- "us-east-2",
458
- ],
459
- },
460
- ],
461
- endpoint: {
462
- url: "https://sts.amazonaws.com",
463
- properties: {
464
- authSchemes: [
465
- {
466
- name: "sigv4",
467
- signingName: "sts",
468
- signingRegion: "us-east-1",
469
- },
470
- ],
471
- },
472
- headers: {},
473
- },
474
- type: "endpoint",
475
- },
476
- {
477
- conditions: [
478
- {
479
- fn: "stringEquals",
480
- argv: [
481
- {
482
- ref: "Region",
483
- },
484
- "us-west-1",
485
- ],
486
- },
487
- ],
488
- endpoint: {
489
- url: "https://sts.amazonaws.com",
490
- properties: {
491
- authSchemes: [
492
- {
493
- name: "sigv4",
494
- signingName: "sts",
495
- signingRegion: "us-east-1",
496
- },
497
- ],
498
- },
499
- headers: {},
500
- },
501
- type: "endpoint",
502
- },
503
- {
504
- conditions: [
505
- {
506
- fn: "stringEquals",
507
- argv: [
508
- {
509
- ref: "Region",
510
- },
511
- "us-west-2",
512
- ],
513
- },
514
- ],
515
- endpoint: {
516
- url: "https://sts.amazonaws.com",
517
- properties: {
518
- authSchemes: [
519
- {
520
- name: "sigv4",
521
- signingName: "sts",
522
- signingRegion: "us-east-1",
523
- },
524
- ],
525
- },
526
- headers: {},
527
- },
528
- type: "endpoint",
529
- },
530
- {
531
- conditions: [],
532
- endpoint: {
533
- url: "https://sts.{Region}.{PartitionResult#dnsSuffix}",
534
- properties: {
535
- authSchemes: [
536
- {
537
- name: "sigv4",
538
- signingName: "sts",
539
- signingRegion: "{Region}",
540
- },
541
- ],
542
- },
543
- headers: {},
544
- },
545
- type: "endpoint",
546
- },
547
- ],
548
- },
549
- {
550
- conditions: [
551
- {
552
- fn: "isSet",
553
- argv: [
554
- {
555
- ref: "Endpoint",
556
- },
557
- ],
558
- },
559
- {
560
- fn: "parseURL",
561
- argv: [
562
- {
563
- ref: "Endpoint",
564
- },
565
- ],
566
- assign: "url",
567
- },
568
- ],
569
- type: "tree",
570
- rules: [
571
- {
572
- conditions: [
573
- {
574
- fn: "booleanEquals",
575
- argv: [
576
- {
577
- ref: "UseFIPS",
578
- },
579
- true,
580
- ],
581
- },
582
- ],
583
- error: "Invalid Configuration: FIPS and custom endpoint are not supported",
584
- type: "error",
585
- },
586
- {
587
- conditions: [],
588
- type: "tree",
589
- rules: [
590
- {
591
- conditions: [
592
- {
593
- fn: "booleanEquals",
594
- argv: [
595
- {
596
- ref: "UseDualStack",
597
- },
598
- true,
599
- ],
600
- },
601
- ],
602
- error: "Invalid Configuration: Dualstack and custom endpoint are not supported",
603
- type: "error",
604
- },
605
- {
606
- conditions: [],
607
- endpoint: {
608
- url: {
609
- ref: "Endpoint",
610
- },
611
- properties: {},
612
- headers: {},
613
- },
614
- type: "endpoint",
615
- },
616
- ],
617
- },
618
- ],
619
- },
620
- {
621
- conditions: [
622
- {
623
- fn: "booleanEquals",
624
- argv: [
625
- {
626
- ref: "UseFIPS",
627
- },
628
- true,
629
- ],
630
- },
631
- {
632
- fn: "booleanEquals",
633
- argv: [
634
- {
635
- ref: "UseDualStack",
636
- },
637
- true,
638
- ],
639
- },
640
- ],
641
- type: "tree",
642
- rules: [
643
- {
644
- conditions: [
645
- {
646
- fn: "booleanEquals",
647
- argv: [
648
- true,
649
- {
650
- fn: "getAttr",
651
- argv: [
652
- {
653
- ref: "PartitionResult",
654
- },
655
- "supportsFIPS",
656
- ],
657
- },
658
- ],
659
- },
660
- {
661
- fn: "booleanEquals",
662
- argv: [
663
- true,
664
- {
665
- fn: "getAttr",
666
- argv: [
667
- {
668
- ref: "PartitionResult",
669
- },
670
- "supportsDualStack",
671
- ],
672
- },
673
- ],
674
- },
675
- ],
676
- type: "tree",
677
- rules: [
678
- {
679
- conditions: [],
680
- endpoint: {
681
- url: "https://sts-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",
682
- properties: {},
683
- headers: {},
684
- },
685
- type: "endpoint",
686
- },
687
- ],
688
- },
689
- {
690
- conditions: [],
691
- error: "FIPS and DualStack are enabled, but this partition does not support one or both",
692
- type: "error",
693
- },
694
- ],
695
- },
696
- {
697
- conditions: [
698
- {
699
- fn: "booleanEquals",
700
- argv: [
701
- {
702
- ref: "UseFIPS",
703
- },
704
- true,
705
- ],
706
- },
707
- ],
708
- type: "tree",
709
- rules: [
710
- {
711
- conditions: [
712
- {
713
- fn: "booleanEquals",
714
- argv: [
715
- true,
716
- {
717
- fn: "getAttr",
718
- argv: [
719
- {
720
- ref: "PartitionResult",
721
- },
722
- "supportsFIPS",
723
- ],
724
- },
725
- ],
726
- },
727
- ],
728
- type: "tree",
729
- rules: [
730
- {
731
- conditions: [],
732
- type: "tree",
733
- rules: [
734
- {
735
- conditions: [
736
- {
737
- fn: "stringEquals",
738
- argv: [
739
- "aws-us-gov",
740
- {
741
- fn: "getAttr",
742
- argv: [
743
- {
744
- ref: "PartitionResult",
745
- },
746
- "name",
747
- ],
748
- },
749
- ],
750
- },
751
- ],
752
- endpoint: {
753
- url: "https://sts.{Region}.{PartitionResult#dnsSuffix}",
754
- properties: {},
755
- headers: {},
756
- },
757
- type: "endpoint",
758
- },
759
- {
760
- conditions: [],
761
- endpoint: {
762
- url: "https://sts-fips.{Region}.{PartitionResult#dnsSuffix}",
763
- properties: {},
764
- headers: {},
765
- },
766
- type: "endpoint",
767
- },
768
- ],
769
- },
770
- ],
771
- },
772
- {
773
- conditions: [],
774
- error: "FIPS is enabled but this partition does not support FIPS",
775
- type: "error",
776
- },
777
- ],
778
- },
779
- {
780
- conditions: [
781
- {
782
- fn: "booleanEquals",
783
- argv: [
784
- {
785
- ref: "UseDualStack",
786
- },
787
- true,
788
- ],
789
- },
790
- ],
791
- type: "tree",
792
- rules: [
793
- {
794
- conditions: [
795
- {
796
- fn: "booleanEquals",
797
- argv: [
798
- true,
799
- {
800
- fn: "getAttr",
801
- argv: [
802
- {
803
- ref: "PartitionResult",
804
- },
805
- "supportsDualStack",
806
- ],
807
- },
808
- ],
809
- },
810
- ],
811
- type: "tree",
812
- rules: [
813
- {
814
- conditions: [],
815
- endpoint: {
816
- url: "https://sts.{Region}.{PartitionResult#dualStackDnsSuffix}",
817
- properties: {},
818
- headers: {},
819
- },
820
- type: "endpoint",
821
- },
822
- ],
823
- },
824
- {
825
- conditions: [],
826
- error: "DualStack is enabled but this partition does not support DualStack",
827
- type: "error",
828
- },
829
- ],
830
- },
831
- {
832
- conditions: [],
833
- type: "tree",
834
- rules: [
835
- {
836
- conditions: [
837
- {
838
- fn: "stringEquals",
839
- argv: [
840
- {
841
- ref: "Region",
842
- },
843
- "aws-global",
844
- ],
845
- },
846
- ],
847
- endpoint: {
848
- url: "https://sts.amazonaws.com",
849
- properties: {
850
- authSchemes: [
851
- {
852
- name: "sigv4",
853
- signingRegion: "us-east-1",
854
- signingName: "sts",
855
- },
856
- ],
857
- },
858
- headers: {},
859
- },
860
- type: "endpoint",
861
- },
862
- {
863
- conditions: [],
864
- endpoint: {
865
- url: "https://sts.{Region}.{PartitionResult#dnsSuffix}",
866
- properties: {},
867
- headers: {},
868
- },
869
- type: "endpoint",
870
- },
871
- ],
872
- },
873
- ],
874
- },
875
- ],
876
- };
1
+ const I = "fn", J = "argv", K = "ref", L = "properties", M = "headers";
2
+ const a = false, b = true, c = "String", d = "Boolean", e = "PartitionResult", f = "tree", g = "booleanEquals", h = "stringEquals", i = "https://sts.amazonaws.com", j = "sigv4", k = "sts", l = "us-east-1", m = "endpoint", n = "https://sts.{Region}.{PartitionResult#dnsSuffix}", o = "error", p = "getAttr", q = { [K]: "Region" }, r = { [K]: "UseFIPS" }, s = { [K]: "UseDualStack" }, t = { [I]: "isSet", [J]: [{ [K]: "Endpoint" }] }, u = { [K]: "Endpoint" }, v = { "url": i, [L]: { "authSchemes": [{ "name": j, "signingName": k, "signingRegion": l }] }, [M]: {} }, w = {}, x = { [I]: g, [J]: [r, true] }, y = { [I]: g, [J]: [s, true] }, z = { [I]: g, [J]: [true, { [I]: p, [J]: [{ [K]: e }, "supportsFIPS"] }] }, A = { [K]: e }, B = { [I]: g, [J]: [true, { [I]: p, [J]: [A, "supportsDualStack"] }] }, C = { "url": n, [L]: {}, [M]: {} }, D = [u], E = [{ [I]: h, [J]: [q, "aws-global"] }], F = [], G = [x], H = [y];
3
+ const _data = { version: "1.0", parameters: { Region: { builtIn: "AWS::Region", required: a, documentation: "The AWS region used to dispatch the request.", type: c }, UseDualStack: { builtIn: "AWS::UseDualStack", required: b, default: a, documentation: "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.", type: d }, UseFIPS: { builtIn: "AWS::UseFIPS", required: b, default: a, documentation: "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.", type: d }, Endpoint: { builtIn: "SDK::Endpoint", required: a, documentation: "Override the endpoint used to send this request", type: c }, UseGlobalEndpoint: { builtIn: "AWS::STS::UseGlobalEndpoint", required: b, default: a, documentation: "Whether the global endpoint should be used, rather then the regional endpoint for us-east-1.", type: d } }, rules: [{ conditions: [{ [I]: "aws.partition", [J]: [q], assign: e }], type: f, rules: [{ conditions: [{ [I]: g, [J]: [{ [K]: "UseGlobalEndpoint" }, b] }, { [I]: g, [J]: [r, a] }, { [I]: g, [J]: [s, a] }, { [I]: "not", [J]: [t] }], type: f, rules: [{ conditions: [{ [I]: h, [J]: [q, "ap-northeast-1"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "ap-south-1"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "ap-southeast-1"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "ap-southeast-2"] }], endpoint: v, type: m }, { conditions: E, endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "ca-central-1"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "eu-central-1"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "eu-north-1"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "eu-west-1"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "eu-west-2"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "eu-west-3"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "sa-east-1"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, l] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "us-east-2"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "us-west-1"] }], endpoint: v, type: m }, { conditions: [{ [I]: h, [J]: [q, "us-west-2"] }], endpoint: v, type: m }, { conditions: F, endpoint: { url: n, [L]: { authSchemes: [{ name: j, signingName: k, signingRegion: "{Region}" }] }, [M]: w }, type: m }] }, { conditions: [t, { [I]: "parseURL", [J]: D, assign: "url" }], type: f, rules: [{ conditions: G, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: o }, { conditions: F, type: f, rules: [{ conditions: H, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: o }, { conditions: F, endpoint: { url: u, [L]: w, [M]: w }, type: m }] }] }, { conditions: [x, y], type: f, rules: [{ conditions: [z, B], type: f, rules: [{ conditions: F, endpoint: { url: "https://sts-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", [L]: w, [M]: w }, type: m }] }, { conditions: F, error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: o }] }, { conditions: G, type: f, rules: [{ conditions: [z], type: f, rules: [{ conditions: F, type: f, rules: [{ conditions: [{ [I]: h, [J]: ["aws-us-gov", { [I]: p, [J]: [A, "name"] }] }], endpoint: C, type: m }, { conditions: F, endpoint: { url: "https://sts-fips.{Region}.{PartitionResult#dnsSuffix}", [L]: w, [M]: w }, type: m }] }] }, { conditions: F, error: "FIPS is enabled but this partition does not support FIPS", type: o }] }, { conditions: H, type: f, rules: [{ conditions: [B], type: f, rules: [{ conditions: F, endpoint: { url: "https://sts.{Region}.{PartitionResult#dualStackDnsSuffix}", [L]: w, [M]: w }, type: m }] }, { conditions: F, error: "DualStack is enabled but this partition does not support DualStack", type: o }] }, { conditions: F, type: f, rules: [{ conditions: E, endpoint: { url: i, [L]: { authSchemes: [{ name: j, signingRegion: l, signingName: k }] }, [M]: w }, type: m }, { conditions: F, endpoint: C, type: m }] }] }] };
4
+ export const ruleSet = _data;