aws-sdk-core 2.11.403 → 2.11.404
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.
- checksums.yaml +4 -4
- data/apis/acm/2015-12-08/api-2.json +35 -6
- data/apis/application-autoscaling/2016-02-06/api-2.json +1 -1
- data/apis/autoscaling-plans/2018-01-06/api-2.json +1 -1
- data/apis/codebuild/2016-10-06/api-2.json +2 -0
- data/apis/ec2/2016-11-15/api-2.json +596 -1
- data/apis/elasticmapreduce/2009-03-31/api-2.json +52 -4
- data/apis/forecast/2018-06-26/api-2.json +48 -3
- data/apis/mediapackage-vod/2018-11-07/api-2.json +16 -0
- data/apis/rekognition/2016-06-27/api-2.json +10 -4
- data/apis/ssm/2014-11-06/api-2.json +20 -1
- data/apis/sts/2011-06-15/api-2.json +37 -1
- data/apis/sts/2011-06-15/examples-1.json +33 -6
- data/endpoints.json +5 -20
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +2 -2
@@ -258,6 +258,19 @@
|
|
258
258
|
{"shape":"InvalidRequestException"}
|
259
259
|
]
|
260
260
|
},
|
261
|
+
"ModifyCluster":{
|
262
|
+
"name":"ModifyCluster",
|
263
|
+
"http":{
|
264
|
+
"method":"POST",
|
265
|
+
"requestUri":"/"
|
266
|
+
},
|
267
|
+
"input":{"shape":"ModifyClusterInput"},
|
268
|
+
"output":{"shape":"ModifyClusterOutput"},
|
269
|
+
"errors":[
|
270
|
+
{"shape":"InternalServerError"},
|
271
|
+
{"shape":"InvalidRequestException"}
|
272
|
+
]
|
273
|
+
},
|
261
274
|
"ModifyInstanceFleet":{
|
262
275
|
"name":"ModifyInstanceFleet",
|
263
276
|
"http":{
|
@@ -590,9 +603,14 @@
|
|
590
603
|
},
|
591
604
|
"CancelStepsInput":{
|
592
605
|
"type":"structure",
|
606
|
+
"required":[
|
607
|
+
"ClusterId",
|
608
|
+
"StepIds"
|
609
|
+
],
|
593
610
|
"members":{
|
594
611
|
"ClusterId":{"shape":"XmlStringMaxLen256"},
|
595
|
-
"StepIds":{"shape":"StepIdsList"}
|
612
|
+
"StepIds":{"shape":"StepIdsList"},
|
613
|
+
"StepCancellationOption":{"shape":"StepCancellationOption"}
|
596
614
|
}
|
597
615
|
},
|
598
616
|
"CancelStepsOutput":{
|
@@ -656,7 +674,9 @@
|
|
656
674
|
"EbsRootVolumeSize":{"shape":"Integer"},
|
657
675
|
"RepoUpgradeOnBoot":{"shape":"RepoUpgradeOnBoot"},
|
658
676
|
"KerberosAttributes":{"shape":"KerberosAttributes"},
|
659
|
-
"ClusterArn":{"shape":"ArnType"}
|
677
|
+
"ClusterArn":{"shape":"ArnType"},
|
678
|
+
"StepConcurrencyLevel":{"shape":"Integer"},
|
679
|
+
"OutpostArn":{"shape":"OptionalArnType"}
|
660
680
|
}
|
661
681
|
},
|
662
682
|
"ClusterId":{"type":"string"},
|
@@ -711,7 +731,8 @@
|
|
711
731
|
"Name":{"shape":"String"},
|
712
732
|
"Status":{"shape":"ClusterStatus"},
|
713
733
|
"NormalizedInstanceHours":{"shape":"Integer"},
|
714
|
-
"ClusterArn":{"shape":"ArnType"}
|
734
|
+
"ClusterArn":{"shape":"ArnType"},
|
735
|
+
"OutpostArn":{"shape":"OptionalArnType"}
|
715
736
|
}
|
716
737
|
},
|
717
738
|
"ClusterSummaryList":{
|
@@ -1648,6 +1669,20 @@
|
|
1648
1669
|
"type":"list",
|
1649
1670
|
"member":{"shape":"MetricDimension"}
|
1650
1671
|
},
|
1672
|
+
"ModifyClusterInput":{
|
1673
|
+
"type":"structure",
|
1674
|
+
"required":["ClusterId"],
|
1675
|
+
"members":{
|
1676
|
+
"ClusterId":{"shape":"String"},
|
1677
|
+
"StepConcurrencyLevel":{"shape":"Integer"}
|
1678
|
+
}
|
1679
|
+
},
|
1680
|
+
"ModifyClusterOutput":{
|
1681
|
+
"type":"structure",
|
1682
|
+
"members":{
|
1683
|
+
"StepConcurrencyLevel":{"shape":"Integer"}
|
1684
|
+
}
|
1685
|
+
},
|
1651
1686
|
"ModifyInstanceFleetInput":{
|
1652
1687
|
"type":"structure",
|
1653
1688
|
"required":[
|
@@ -1674,6 +1709,11 @@
|
|
1674
1709
|
"type":"double",
|
1675
1710
|
"min":0.0
|
1676
1711
|
},
|
1712
|
+
"OptionalArnType":{
|
1713
|
+
"type":"string",
|
1714
|
+
"max":2048,
|
1715
|
+
"min":0
|
1716
|
+
},
|
1677
1717
|
"PlacementType":{
|
1678
1718
|
"type":"structure",
|
1679
1719
|
"members":{
|
@@ -1801,7 +1841,8 @@
|
|
1801
1841
|
"CustomAmiId":{"shape":"XmlStringMaxLen256"},
|
1802
1842
|
"EbsRootVolumeSize":{"shape":"Integer"},
|
1803
1843
|
"RepoUpgradeOnBoot":{"shape":"RepoUpgradeOnBoot"},
|
1804
|
-
"KerberosAttributes":{"shape":"KerberosAttributes"}
|
1844
|
+
"KerberosAttributes":{"shape":"KerberosAttributes"},
|
1845
|
+
"StepConcurrencyLevel":{"shape":"Integer"}
|
1805
1846
|
}
|
1806
1847
|
},
|
1807
1848
|
"RunJobFlowOutput":{
|
@@ -1962,6 +2003,13 @@
|
|
1962
2003
|
"Status":{"shape":"StepStatus"}
|
1963
2004
|
}
|
1964
2005
|
},
|
2006
|
+
"StepCancellationOption":{
|
2007
|
+
"type":"string",
|
2008
|
+
"enum":[
|
2009
|
+
"SEND_INTERRUPT",
|
2010
|
+
"TERMINATE_PROCESS"
|
2011
|
+
]
|
2012
|
+
},
|
1965
2013
|
"StepConfig":{
|
1966
2014
|
"type":"structure",
|
1967
2015
|
"required":[
|
@@ -533,7 +533,8 @@
|
|
533
533
|
],
|
534
534
|
"members":{
|
535
535
|
"ForecastName":{"shape":"Name"},
|
536
|
-
"PredictorArn":{"shape":"Arn"}
|
536
|
+
"PredictorArn":{"shape":"Arn"},
|
537
|
+
"ForecastTypes":{"shape":"ForecastTypes"}
|
537
538
|
}
|
538
539
|
},
|
539
540
|
"CreateForecastResponse":{
|
@@ -774,6 +775,7 @@
|
|
774
775
|
"members":{
|
775
776
|
"ForecastArn":{"shape":"Arn"},
|
776
777
|
"ForecastName":{"shape":"Name"},
|
778
|
+
"ForecastTypes":{"shape":"ForecastTypes"},
|
777
779
|
"PredictorArn":{"shape":"Arn"},
|
778
780
|
"DatasetGroupArn":{"shape":"Arn"},
|
779
781
|
"Status":{"shape":"String"},
|
@@ -804,6 +806,7 @@
|
|
804
806
|
"InputDataConfig":{"shape":"InputDataConfig"},
|
805
807
|
"FeaturizationConfig":{"shape":"FeaturizationConfig"},
|
806
808
|
"EncryptionConfig":{"shape":"EncryptionConfig"},
|
809
|
+
"PredictorExecutionDetails":{"shape":"PredictorExecutionDetails"},
|
807
810
|
"DatasetImportJobArns":{"shape":"ArnList"},
|
808
811
|
"AutoMLAlgorithmArns":{"shape":"ArnList"},
|
809
812
|
"Status":{"shape":"Status"},
|
@@ -970,6 +973,16 @@
|
|
970
973
|
"LastModificationTime":{"shape":"Timestamp"}
|
971
974
|
}
|
972
975
|
},
|
976
|
+
"ForecastType":{
|
977
|
+
"type":"string",
|
978
|
+
"pattern":"(^0?\\.\\d\\d?$|^mean$)"
|
979
|
+
},
|
980
|
+
"ForecastTypes":{
|
981
|
+
"type":"list",
|
982
|
+
"member":{"shape":"ForecastType"},
|
983
|
+
"max":20,
|
984
|
+
"min":1
|
985
|
+
},
|
973
986
|
"Forecasts":{
|
974
987
|
"type":"list",
|
975
988
|
"member":{"shape":"ForecastSummary"}
|
@@ -1157,7 +1170,7 @@
|
|
1157
1170
|
"type":"string",
|
1158
1171
|
"max":63,
|
1159
1172
|
"min":1,
|
1160
|
-
"pattern":"^[a-zA-
|
1173
|
+
"pattern":"^[a-zA-Z][a-zA-Z0-9_]*"
|
1161
1174
|
},
|
1162
1175
|
"NextToken":{
|
1163
1176
|
"type":"string",
|
@@ -1186,6 +1199,25 @@
|
|
1186
1199
|
"type":"list",
|
1187
1200
|
"member":{"shape":"EvaluationResult"}
|
1188
1201
|
},
|
1202
|
+
"PredictorExecution":{
|
1203
|
+
"type":"structure",
|
1204
|
+
"members":{
|
1205
|
+
"AlgorithmArn":{"shape":"Arn"},
|
1206
|
+
"TestWindows":{"shape":"TestWindowDetails"}
|
1207
|
+
}
|
1208
|
+
},
|
1209
|
+
"PredictorExecutionDetails":{
|
1210
|
+
"type":"structure",
|
1211
|
+
"members":{
|
1212
|
+
"PredictorExecutions":{"shape":"PredictorExecutions"}
|
1213
|
+
}
|
1214
|
+
},
|
1215
|
+
"PredictorExecutions":{
|
1216
|
+
"type":"list",
|
1217
|
+
"member":{"shape":"PredictorExecution"},
|
1218
|
+
"max":5,
|
1219
|
+
"min":1
|
1220
|
+
},
|
1189
1221
|
"PredictorSummary":{
|
1190
1222
|
"type":"structure",
|
1191
1223
|
"members":{
|
@@ -1237,7 +1269,7 @@
|
|
1237
1269
|
},
|
1238
1270
|
"S3Path":{
|
1239
1271
|
"type":"string",
|
1240
|
-
"pattern":"^s3
|
1272
|
+
"pattern":"^s3://[a-z0-9].+$"
|
1241
1273
|
},
|
1242
1274
|
"ScalingType":{
|
1243
1275
|
"type":"string",
|
@@ -1304,6 +1336,19 @@
|
|
1304
1336
|
"max":1,
|
1305
1337
|
"min":1
|
1306
1338
|
},
|
1339
|
+
"TestWindowDetails":{
|
1340
|
+
"type":"list",
|
1341
|
+
"member":{"shape":"TestWindowSummary"}
|
1342
|
+
},
|
1343
|
+
"TestWindowSummary":{
|
1344
|
+
"type":"structure",
|
1345
|
+
"members":{
|
1346
|
+
"TestWindowStart":{"shape":"Timestamp"},
|
1347
|
+
"TestWindowEnd":{"shape":"Timestamp"},
|
1348
|
+
"Status":{"shape":"Status"},
|
1349
|
+
"Message":{"shape":"ErrorMessage"}
|
1350
|
+
}
|
1351
|
+
},
|
1307
1352
|
"TestWindows":{
|
1308
1353
|
"type":"list",
|
1309
1354
|
"member":{"shape":"WindowSummary"}
|
@@ -436,6 +436,10 @@
|
|
436
436
|
"locationName": "arn",
|
437
437
|
"shape": "__string"
|
438
438
|
},
|
439
|
+
"CreatedAt": {
|
440
|
+
"locationName": "createdAt",
|
441
|
+
"shape": "__string"
|
442
|
+
},
|
439
443
|
"EgressEndpoints": {
|
440
444
|
"locationName": "egressEndpoints",
|
441
445
|
"shape": "__listOfEgressEndpoint"
|
@@ -513,6 +517,10 @@
|
|
513
517
|
"locationName": "arn",
|
514
518
|
"shape": "__string"
|
515
519
|
},
|
520
|
+
"CreatedAt": {
|
521
|
+
"locationName": "createdAt",
|
522
|
+
"shape": "__string"
|
523
|
+
},
|
516
524
|
"Id": {
|
517
525
|
"locationName": "id",
|
518
526
|
"shape": "__string"
|
@@ -605,6 +613,10 @@
|
|
605
613
|
"locationName": "arn",
|
606
614
|
"shape": "__string"
|
607
615
|
},
|
616
|
+
"CreatedAt": {
|
617
|
+
"locationName": "createdAt",
|
618
|
+
"shape": "__string"
|
619
|
+
},
|
608
620
|
"EgressEndpoints": {
|
609
621
|
"locationName": "egressEndpoints",
|
610
622
|
"shape": "__listOfEgressEndpoint"
|
@@ -846,6 +858,10 @@
|
|
846
858
|
"locationName": "arn",
|
847
859
|
"shape": "__string"
|
848
860
|
},
|
861
|
+
"CreatedAt": {
|
862
|
+
"locationName": "createdAt",
|
863
|
+
"shape": "__string"
|
864
|
+
},
|
849
865
|
"EgressEndpoints": {
|
850
866
|
"locationName": "egressEndpoints",
|
851
867
|
"shape": "__listOfEgressEndpoint"
|
@@ -768,7 +768,8 @@
|
|
768
768
|
"members":{
|
769
769
|
"SourceImage":{"shape":"Image"},
|
770
770
|
"TargetImage":{"shape":"Image"},
|
771
|
-
"SimilarityThreshold":{"shape":"Percent"}
|
771
|
+
"SimilarityThreshold":{"shape":"Percent"},
|
772
|
+
"QualityFilter":{"shape":"QualityFilter"}
|
772
773
|
}
|
773
774
|
},
|
774
775
|
"CompareFacesResponse":{
|
@@ -1730,7 +1731,10 @@
|
|
1730
1731
|
"type":"string",
|
1731
1732
|
"enum":[
|
1732
1733
|
"NONE",
|
1733
|
-
"AUTO"
|
1734
|
+
"AUTO",
|
1735
|
+
"LOW",
|
1736
|
+
"MEDIUM",
|
1737
|
+
"HIGH"
|
1734
1738
|
]
|
1735
1739
|
},
|
1736
1740
|
"Reason":{
|
@@ -1741,7 +1745,8 @@
|
|
1741
1745
|
"LOW_BRIGHTNESS",
|
1742
1746
|
"LOW_SHARPNESS",
|
1743
1747
|
"LOW_CONFIDENCE",
|
1744
|
-
"SMALL_BOUNDING_BOX"
|
1748
|
+
"SMALL_BOUNDING_BOX",
|
1749
|
+
"LOW_FACE_QUALITY"
|
1745
1750
|
]
|
1746
1751
|
},
|
1747
1752
|
"Reasons":{
|
@@ -1827,7 +1832,8 @@
|
|
1827
1832
|
"CollectionId":{"shape":"CollectionId"},
|
1828
1833
|
"Image":{"shape":"Image"},
|
1829
1834
|
"MaxFaces":{"shape":"MaxFaces"},
|
1830
|
-
"FaceMatchThreshold":{"shape":"Percent"}
|
1835
|
+
"FaceMatchThreshold":{"shape":"Percent"},
|
1836
|
+
"QualityFilter":{"shape":"QualityFilter"}
|
1831
1837
|
}
|
1832
1838
|
},
|
1833
1839
|
"SearchFacesByImageResponse":{
|
@@ -3892,6 +3892,10 @@
|
|
3892
3892
|
"Instances":{"shape":"Integer"},
|
3893
3893
|
"InstancesWithInstalledPatches":{"shape":"Integer"},
|
3894
3894
|
"InstancesWithInstalledOtherPatches":{"shape":"Integer"},
|
3895
|
+
"InstancesWithInstalledPendingRebootPatches":{
|
3896
|
+
"shape":"InstancesCount",
|
3897
|
+
"box":true
|
3898
|
+
},
|
3895
3899
|
"InstancesWithInstalledRejectedPatches":{
|
3896
3900
|
"shape":"InstancesCount",
|
3897
3901
|
"box":true
|
@@ -5033,6 +5037,10 @@
|
|
5033
5037
|
"OwnerInformation":{"shape":"OwnerInformation"},
|
5034
5038
|
"InstalledCount":{"shape":"PatchInstalledCount"},
|
5035
5039
|
"InstalledOtherCount":{"shape":"PatchInstalledOtherCount"},
|
5040
|
+
"InstalledPendingRebootCount":{
|
5041
|
+
"shape":"PatchInstalledPendingRebootCount",
|
5042
|
+
"box":true
|
5043
|
+
},
|
5036
5044
|
"InstalledRejectedCount":{
|
5037
5045
|
"shape":"PatchInstalledRejectedCount",
|
5038
5046
|
"box":true
|
@@ -5046,7 +5054,9 @@
|
|
5046
5054
|
"NotApplicableCount":{"shape":"PatchNotApplicableCount"},
|
5047
5055
|
"OperationStartTime":{"shape":"DateTime"},
|
5048
5056
|
"OperationEndTime":{"shape":"DateTime"},
|
5049
|
-
"Operation":{"shape":"PatchOperationType"}
|
5057
|
+
"Operation":{"shape":"PatchOperationType"},
|
5058
|
+
"LastNoRebootInstallOperationTime":{"shape":"DateTime"},
|
5059
|
+
"RebootOption":{"shape":"RebootOption"}
|
5050
5060
|
}
|
5051
5061
|
},
|
5052
5062
|
"InstancePatchStateFilter":{
|
@@ -7223,6 +7233,7 @@
|
|
7223
7233
|
"enum":[
|
7224
7234
|
"INSTALLED",
|
7225
7235
|
"INSTALLED_OTHER",
|
7236
|
+
"INSTALLED_PENDING_REBOOT",
|
7226
7237
|
"INSTALLED_REJECTED",
|
7227
7238
|
"MISSING",
|
7228
7239
|
"NOT_APPLICABLE",
|
@@ -7340,6 +7351,7 @@
|
|
7340
7351
|
},
|
7341
7352
|
"PatchInstalledCount":{"type":"integer"},
|
7342
7353
|
"PatchInstalledOtherCount":{"type":"integer"},
|
7354
|
+
"PatchInstalledPendingRebootCount":{"type":"integer"},
|
7343
7355
|
"PatchInstalledRejectedCount":{"type":"integer"},
|
7344
7356
|
"PatchKbNumber":{"type":"string"},
|
7345
7357
|
"PatchLanguage":{"type":"string"},
|
@@ -7606,6 +7618,13 @@
|
|
7606
7618
|
"Tier":{"shape":"ParameterTier"}
|
7607
7619
|
}
|
7608
7620
|
},
|
7621
|
+
"RebootOption":{
|
7622
|
+
"type":"string",
|
7623
|
+
"enum":[
|
7624
|
+
"RebootIfNeeded",
|
7625
|
+
"NoReboot"
|
7626
|
+
]
|
7627
|
+
},
|
7609
7628
|
"Region":{"type":"string"},
|
7610
7629
|
"Regions":{
|
7611
7630
|
"type":"list",
|
@@ -156,6 +156,8 @@
|
|
156
156
|
"PolicyArns":{"shape":"policyDescriptorListType"},
|
157
157
|
"Policy":{"shape":"sessionPolicyDocumentType"},
|
158
158
|
"DurationSeconds":{"shape":"roleDurationSecondsType"},
|
159
|
+
"Tags":{"shape":"tagListType"},
|
160
|
+
"TransitiveTagKeys":{"shape":"tagKeyListType"},
|
159
161
|
"ExternalId":{"shape":"externalIdType"},
|
160
162
|
"SerialNumber":{"shape":"serialNumberType"},
|
161
163
|
"TokenCode":{"shape":"tokenCodeType"}
|
@@ -322,7 +324,8 @@
|
|
322
324
|
"Name":{"shape":"userNameType"},
|
323
325
|
"Policy":{"shape":"sessionPolicyDocumentType"},
|
324
326
|
"PolicyArns":{"shape":"policyDescriptorListType"},
|
325
|
-
"DurationSeconds":{"shape":"durationSecondsType"}
|
327
|
+
"DurationSeconds":{"shape":"durationSecondsType"},
|
328
|
+
"Tags":{"shape":"tagListType"}
|
326
329
|
}
|
327
330
|
},
|
328
331
|
"GetFederationTokenResponse":{
|
@@ -446,6 +449,17 @@
|
|
446
449
|
},
|
447
450
|
"Subject":{"type":"string"},
|
448
451
|
"SubjectType":{"type":"string"},
|
452
|
+
"Tag":{
|
453
|
+
"type":"structure",
|
454
|
+
"required":[
|
455
|
+
"Key",
|
456
|
+
"Value"
|
457
|
+
],
|
458
|
+
"members":{
|
459
|
+
"Key":{"shape":"tagKeyType"},
|
460
|
+
"Value":{"shape":"tagValueType"}
|
461
|
+
}
|
462
|
+
},
|
449
463
|
"accessKeyIdType":{
|
450
464
|
"type":"string",
|
451
465
|
"max":128,
|
@@ -534,6 +548,28 @@
|
|
534
548
|
"min":1,
|
535
549
|
"pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
|
536
550
|
},
|
551
|
+
"tagKeyListType":{
|
552
|
+
"type":"list",
|
553
|
+
"member":{"shape":"tagKeyType"},
|
554
|
+
"max":50
|
555
|
+
},
|
556
|
+
"tagKeyType":{
|
557
|
+
"type":"string",
|
558
|
+
"max":128,
|
559
|
+
"min":1,
|
560
|
+
"pattern":"[\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]+"
|
561
|
+
},
|
562
|
+
"tagListType":{
|
563
|
+
"type":"list",
|
564
|
+
"member":{"shape":"Tag"},
|
565
|
+
"max":50
|
566
|
+
},
|
567
|
+
"tagValueType":{
|
568
|
+
"type":"string",
|
569
|
+
"max":256,
|
570
|
+
"min":0,
|
571
|
+
"pattern":"[\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*"
|
572
|
+
},
|
537
573
|
"tokenCodeType":{
|
538
574
|
"type":"string",
|
539
575
|
"max":6,
|
@@ -4,11 +4,28 @@
|
|
4
4
|
"AssumeRole": [
|
5
5
|
{
|
6
6
|
"input": {
|
7
|
-
"DurationSeconds": 3600,
|
8
7
|
"ExternalId": "123ABC",
|
9
8
|
"Policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Stmt1\",\"Effect\":\"Allow\",\"Action\":\"s3:ListAllMyBuckets\",\"Resource\":\"*\"}]}",
|
10
9
|
"RoleArn": "arn:aws:iam::123456789012:role/demo",
|
11
|
-
"RoleSessionName": "
|
10
|
+
"RoleSessionName": "testAssumeRoleSession",
|
11
|
+
"Tags": [
|
12
|
+
{
|
13
|
+
"Key": "Project",
|
14
|
+
"Value": "Unicorn"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"Key": "Team",
|
18
|
+
"Value": "Automation"
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"Key": "Cost-Center",
|
22
|
+
"Value": "12345"
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"TransitiveTagKeys": [
|
26
|
+
"Project",
|
27
|
+
"Cost-Center"
|
28
|
+
]
|
12
29
|
},
|
13
30
|
"output": {
|
14
31
|
"AssumedRoleUser": {
|
@@ -21,7 +38,7 @@
|
|
21
38
|
"SecretAccessKey": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYzEXAMPLEKEY",
|
22
39
|
"SessionToken": "AQoDYXdzEPT//////////wEXAMPLEtc764bNrC9SAPBSM22wDOk4x4HIZ8j4FZTwdQWLWsKWHGBuFqwAeMicRXmxfpSPfIeoIYRqTflfKD8YUuwthAx7mSEI/qkPpKPi/kMcGdQrmGdeehM4IC1NtBmUpp2wUE8phUZampKsburEDy0KPkyQDYwT7WZ0wq5VSXDvp75YU9HFvlRd8Tx6q6fE8YQcHNVXAkiY9q6d+xo0rKwT38xVqr7ZD0u0iPPkUL64lIZbqBAz+scqKmlzm8FDrypNC9Yjc8fPOLn9FX9KSYvKTr4rvx3iSIlTJabIQwj2ICCR/oLxBA=="
|
23
40
|
},
|
24
|
-
"PackedPolicySize":
|
41
|
+
"PackedPolicySize": 8
|
25
42
|
},
|
26
43
|
"comments": {
|
27
44
|
"input": {
|
@@ -150,8 +167,18 @@
|
|
150
167
|
{
|
151
168
|
"input": {
|
152
169
|
"DurationSeconds": 3600,
|
153
|
-
"Name": "
|
154
|
-
"Policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Stmt1\",\"Effect\":\"Allow\",\"Action\":\"s3:ListAllMyBuckets\",\"Resource\":\"*\"}]}"
|
170
|
+
"Name": "testFedUserSession",
|
171
|
+
"Policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Stmt1\",\"Effect\":\"Allow\",\"Action\":\"s3:ListAllMyBuckets\",\"Resource\":\"*\"}]}",
|
172
|
+
"Tags": [
|
173
|
+
{
|
174
|
+
"Key": "Project",
|
175
|
+
"Value": "Pegasus"
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"Key": "Cost-Center",
|
179
|
+
"Value": "98765"
|
180
|
+
}
|
181
|
+
]
|
155
182
|
},
|
156
183
|
"output": {
|
157
184
|
"Credentials": {
|
@@ -164,7 +191,7 @@
|
|
164
191
|
"Arn": "arn:aws:sts::123456789012:federated-user/Bob",
|
165
192
|
"FederatedUserId": "123456789012:Bob"
|
166
193
|
},
|
167
|
-
"PackedPolicySize":
|
194
|
+
"PackedPolicySize": 8
|
168
195
|
},
|
169
196
|
"comments": {
|
170
197
|
"input": {
|