aws-sdk 2.1605.0 → 2.1607.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.
- package/README.md +1 -1
- package/apis/appsync-2017-07-25.min.json +5 -1
- package/apis/datasync-2018-11-09.min.json +46 -35
- package/apis/ec2-2016-11-15.min.json +7 -0
- package/apis/emr-containers-2020-10-01.min.json +182 -19
- package/apis/emr-containers-2020-10-01.paginators.json +6 -0
- package/apis/entityresolution-2018-05-10.min.json +165 -93
- package/apis/fms-2018-01-01.min.json +331 -144
- package/apis/gamelift-2015-10-01.min.json +586 -188
- package/apis/gamelift-2015-10-01.paginators.json +6 -0
- package/apis/rds-2013-01-10.min.json +3 -0
- package/apis/rds-2013-02-12.min.json +3 -0
- package/apis/rds-2013-09-09.min.json +3 -0
- package/apis/rds-2014-09-01.min.json +3 -0
- package/apis/rds-2014-10-31.min.json +3 -0
- package/apis/ssm-2014-11-06.min.json +235 -129
- package/apis/ssm-2014-11-06.paginators.json +6 -0
- package/apis/states-2016-11-23.min.json +44 -0
- package/clients/appsync.d.ts +1 -1
- package/clients/datasync.d.ts +67 -42
- package/clients/ec2.d.ts +9 -1
- package/clients/emrcontainers.d.ts +205 -0
- package/clients/entityresolution.d.ts +64 -0
- package/clients/fms.d.ts +258 -20
- package/clients/gamelift.d.ts +592 -88
- package/clients/ivs.d.ts +1 -1
- package/clients/rds.d.ts +4 -4
- package/clients/ssm.d.ts +186 -6
- package/clients/stepfunctions.d.ts +52 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +18 -18
- package/dist/aws-sdk.js +858 -320
- package/dist/aws-sdk.min.js +72 -72
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/dist/aws-sdk.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
// AWS SDK for JavaScript v2.
|
1
|
+
// AWS SDK for JavaScript v2.1607.0
|
2
2
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
3
3
|
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
|
4
4
|
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
@@ -100289,6 +100289,10 @@ module.exports={
|
|
100289
100289
|
"SourceDestCheck": {
|
100290
100290
|
"shape": "S19c",
|
100291
100291
|
"locationName": "sourceDestCheck"
|
100292
|
+
},
|
100293
|
+
"AssociatePublicIpAddress": {
|
100294
|
+
"locationName": "associatePublicIpAddress",
|
100295
|
+
"type": "boolean"
|
100292
100296
|
}
|
100293
100297
|
}
|
100294
100298
|
}
|
@@ -109339,6 +109343,9 @@ module.exports={
|
|
109339
109343
|
},
|
109340
109344
|
"ConnectionTrackingSpecification": {
|
109341
109345
|
"shape": "Sha"
|
109346
|
+
},
|
109347
|
+
"AssociatePublicIpAddress": {
|
109348
|
+
"type": "boolean"
|
109342
109349
|
}
|
109343
109350
|
}
|
109344
109351
|
}
|
@@ -152635,6 +152642,82 @@ module.exports={
|
|
152635
152642
|
}
|
152636
152643
|
}
|
152637
152644
|
},
|
152645
|
+
"CreateContainerGroupDefinition": {
|
152646
|
+
"input": {
|
152647
|
+
"type": "structure",
|
152648
|
+
"required": [
|
152649
|
+
"Name",
|
152650
|
+
"TotalMemoryLimit",
|
152651
|
+
"TotalCpuLimit",
|
152652
|
+
"ContainerDefinitions",
|
152653
|
+
"OperatingSystem"
|
152654
|
+
],
|
152655
|
+
"members": {
|
152656
|
+
"Name": {},
|
152657
|
+
"SchedulingStrategy": {},
|
152658
|
+
"TotalMemoryLimit": {
|
152659
|
+
"type": "integer"
|
152660
|
+
},
|
152661
|
+
"TotalCpuLimit": {
|
152662
|
+
"type": "integer"
|
152663
|
+
},
|
152664
|
+
"ContainerDefinitions": {
|
152665
|
+
"type": "list",
|
152666
|
+
"member": {
|
152667
|
+
"type": "structure",
|
152668
|
+
"required": [
|
152669
|
+
"ContainerName",
|
152670
|
+
"ImageUri"
|
152671
|
+
],
|
152672
|
+
"members": {
|
152673
|
+
"ContainerName": {},
|
152674
|
+
"ImageUri": {},
|
152675
|
+
"MemoryLimits": {
|
152676
|
+
"shape": "S1n"
|
152677
|
+
},
|
152678
|
+
"PortConfiguration": {
|
152679
|
+
"shape": "S1p"
|
152680
|
+
},
|
152681
|
+
"Cpu": {
|
152682
|
+
"type": "integer"
|
152683
|
+
},
|
152684
|
+
"HealthCheck": {
|
152685
|
+
"shape": "S1v"
|
152686
|
+
},
|
152687
|
+
"Command": {
|
152688
|
+
"shape": "S1w"
|
152689
|
+
},
|
152690
|
+
"Essential": {
|
152691
|
+
"type": "boolean"
|
152692
|
+
},
|
152693
|
+
"EntryPoint": {
|
152694
|
+
"shape": "S23"
|
152695
|
+
},
|
152696
|
+
"WorkingDirectory": {},
|
152697
|
+
"Environment": {
|
152698
|
+
"shape": "S24"
|
152699
|
+
},
|
152700
|
+
"DependsOn": {
|
152701
|
+
"shape": "S26"
|
152702
|
+
}
|
152703
|
+
}
|
152704
|
+
}
|
152705
|
+
},
|
152706
|
+
"OperatingSystem": {},
|
152707
|
+
"Tags": {
|
152708
|
+
"shape": "Su"
|
152709
|
+
}
|
152710
|
+
}
|
152711
|
+
},
|
152712
|
+
"output": {
|
152713
|
+
"type": "structure",
|
152714
|
+
"members": {
|
152715
|
+
"ContainerGroupDefinition": {
|
152716
|
+
"shape": "S2b"
|
152717
|
+
}
|
152718
|
+
}
|
152719
|
+
}
|
152720
|
+
},
|
152638
152721
|
"CreateFleet": {
|
152639
152722
|
"input": {
|
152640
152723
|
"type": "structure",
|
@@ -152649,50 +152732,69 @@ module.exports={
|
|
152649
152732
|
"ServerLaunchPath": {},
|
152650
152733
|
"ServerLaunchParameters": {},
|
152651
152734
|
"LogPaths": {
|
152652
|
-
"shape": "
|
152735
|
+
"shape": "S2m"
|
152653
152736
|
},
|
152654
152737
|
"EC2InstanceType": {},
|
152655
152738
|
"EC2InboundPermissions": {
|
152656
|
-
"shape": "
|
152739
|
+
"shape": "S2o"
|
152657
152740
|
},
|
152658
152741
|
"NewGameSessionProtectionPolicy": {},
|
152659
152742
|
"RuntimeConfiguration": {
|
152660
|
-
"shape": "
|
152743
|
+
"shape": "S2s"
|
152661
152744
|
},
|
152662
152745
|
"ResourceCreationLimitPolicy": {
|
152663
|
-
"shape": "
|
152746
|
+
"shape": "S2y"
|
152664
152747
|
},
|
152665
152748
|
"MetricGroups": {
|
152666
|
-
"shape": "
|
152749
|
+
"shape": "S30"
|
152667
152750
|
},
|
152668
152751
|
"PeerVpcAwsAccountId": {},
|
152669
152752
|
"PeerVpcId": {},
|
152670
152753
|
"FleetType": {},
|
152671
152754
|
"InstanceRoleArn": {},
|
152672
152755
|
"CertificateConfiguration": {
|
152673
|
-
"shape": "
|
152756
|
+
"shape": "S33"
|
152674
152757
|
},
|
152675
152758
|
"Locations": {
|
152676
|
-
"shape": "
|
152759
|
+
"shape": "S35"
|
152677
152760
|
},
|
152678
152761
|
"Tags": {
|
152679
152762
|
"shape": "Su"
|
152680
152763
|
},
|
152681
152764
|
"ComputeType": {},
|
152682
152765
|
"AnywhereConfiguration": {
|
152683
|
-
"shape": "
|
152766
|
+
"shape": "S39"
|
152684
152767
|
},
|
152685
|
-
"InstanceRoleCredentialsProvider": {}
|
152768
|
+
"InstanceRoleCredentialsProvider": {},
|
152769
|
+
"ContainerGroupsConfiguration": {
|
152770
|
+
"type": "structure",
|
152771
|
+
"required": [
|
152772
|
+
"ContainerGroupDefinitionNames",
|
152773
|
+
"ConnectionPortRange"
|
152774
|
+
],
|
152775
|
+
"members": {
|
152776
|
+
"ContainerGroupDefinitionNames": {
|
152777
|
+
"type": "list",
|
152778
|
+
"member": {}
|
152779
|
+
},
|
152780
|
+
"ConnectionPortRange": {
|
152781
|
+
"shape": "S3f"
|
152782
|
+
},
|
152783
|
+
"DesiredReplicaContainerGroupsPerInstance": {
|
152784
|
+
"type": "integer"
|
152785
|
+
}
|
152786
|
+
}
|
152787
|
+
}
|
152686
152788
|
}
|
152687
152789
|
},
|
152688
152790
|
"output": {
|
152689
152791
|
"type": "structure",
|
152690
152792
|
"members": {
|
152691
152793
|
"FleetAttributes": {
|
152692
|
-
"shape": "
|
152794
|
+
"shape": "S3i"
|
152693
152795
|
},
|
152694
152796
|
"LocationStates": {
|
152695
|
-
"shape": "
|
152797
|
+
"shape": "S3t"
|
152696
152798
|
}
|
152697
152799
|
}
|
152698
152800
|
}
|
@@ -152707,7 +152809,7 @@ module.exports={
|
|
152707
152809
|
"members": {
|
152708
152810
|
"FleetId": {},
|
152709
152811
|
"Locations": {
|
152710
|
-
"shape": "
|
152812
|
+
"shape": "S35"
|
152711
152813
|
}
|
152712
152814
|
}
|
152713
152815
|
},
|
@@ -152717,7 +152819,7 @@ module.exports={
|
|
152717
152819
|
"FleetId": {},
|
152718
152820
|
"FleetArn": {},
|
152719
152821
|
"LocationStates": {
|
152720
|
-
"shape": "
|
152822
|
+
"shape": "S3t"
|
152721
152823
|
}
|
152722
152824
|
}
|
152723
152825
|
}
|
@@ -152751,7 +152853,7 @@ module.exports={
|
|
152751
152853
|
}
|
152752
152854
|
},
|
152753
152855
|
"InstanceDefinitions": {
|
152754
|
-
"shape": "
|
152856
|
+
"shape": "S44"
|
152755
152857
|
},
|
152756
152858
|
"AutoScalingPolicy": {
|
152757
152859
|
"type": "structure",
|
@@ -152790,7 +152892,7 @@ module.exports={
|
|
152790
152892
|
"type": "structure",
|
152791
152893
|
"members": {
|
152792
152894
|
"GameServerGroup": {
|
152793
|
-
"shape": "
|
152895
|
+
"shape": "S4g"
|
152794
152896
|
}
|
152795
152897
|
}
|
152796
152898
|
}
|
@@ -152809,7 +152911,7 @@ module.exports={
|
|
152809
152911
|
},
|
152810
152912
|
"Name": {},
|
152811
152913
|
"GameProperties": {
|
152812
|
-
"shape": "
|
152914
|
+
"shape": "S4n"
|
152813
152915
|
},
|
152814
152916
|
"CreatorId": {},
|
152815
152917
|
"GameSessionId": {},
|
@@ -152822,7 +152924,7 @@ module.exports={
|
|
152822
152924
|
"type": "structure",
|
152823
152925
|
"members": {
|
152824
152926
|
"GameSession": {
|
152825
|
-
"shape": "
|
152927
|
+
"shape": "S4u"
|
152826
152928
|
}
|
152827
152929
|
}
|
152828
152930
|
}
|
@@ -152839,16 +152941,16 @@ module.exports={
|
|
152839
152941
|
"type": "integer"
|
152840
152942
|
},
|
152841
152943
|
"PlayerLatencyPolicies": {
|
152842
|
-
"shape": "
|
152944
|
+
"shape": "S53"
|
152843
152945
|
},
|
152844
152946
|
"Destinations": {
|
152845
|
-
"shape": "
|
152947
|
+
"shape": "S55"
|
152846
152948
|
},
|
152847
152949
|
"FilterConfiguration": {
|
152848
|
-
"shape": "
|
152950
|
+
"shape": "S58"
|
152849
152951
|
},
|
152850
152952
|
"PriorityConfiguration": {
|
152851
|
-
"shape": "
|
152953
|
+
"shape": "S5a"
|
152852
152954
|
},
|
152853
152955
|
"CustomEventData": {},
|
152854
152956
|
"NotificationTarget": {},
|
@@ -152861,7 +152963,7 @@ module.exports={
|
|
152861
152963
|
"type": "structure",
|
152862
152964
|
"members": {
|
152863
152965
|
"GameSessionQueue": {
|
152864
|
-
"shape": "
|
152966
|
+
"shape": "S5g"
|
152865
152967
|
}
|
152866
152968
|
}
|
152867
152969
|
}
|
@@ -152883,7 +152985,7 @@ module.exports={
|
|
152883
152985
|
"type": "structure",
|
152884
152986
|
"members": {
|
152885
152987
|
"Location": {
|
152886
|
-
"shape": "
|
152988
|
+
"shape": "S5l"
|
152887
152989
|
}
|
152888
152990
|
}
|
152889
152991
|
}
|
@@ -152901,7 +153003,7 @@ module.exports={
|
|
152901
153003
|
"Name": {},
|
152902
153004
|
"Description": {},
|
152903
153005
|
"GameSessionQueueArns": {
|
152904
|
-
"shape": "
|
153006
|
+
"shape": "S5o"
|
152905
153007
|
},
|
152906
153008
|
"RequestTimeoutSeconds": {
|
152907
153009
|
"type": "integer"
|
@@ -152919,7 +153021,7 @@ module.exports={
|
|
152919
153021
|
},
|
152920
153022
|
"CustomEventData": {},
|
152921
153023
|
"GameProperties": {
|
152922
|
-
"shape": "
|
153024
|
+
"shape": "S4n"
|
152923
153025
|
},
|
152924
153026
|
"GameSessionData": {},
|
152925
153027
|
"BackfillMode": {},
|
@@ -152933,7 +153035,7 @@ module.exports={
|
|
152933
153035
|
"type": "structure",
|
152934
153036
|
"members": {
|
152935
153037
|
"Configuration": {
|
152936
|
-
"shape": "
|
153038
|
+
"shape": "S5y"
|
152937
153039
|
}
|
152938
153040
|
}
|
152939
153041
|
}
|
@@ -152960,7 +153062,7 @@ module.exports={
|
|
152960
153062
|
],
|
152961
153063
|
"members": {
|
152962
153064
|
"RuleSet": {
|
152963
|
-
"shape": "
|
153065
|
+
"shape": "S64"
|
152964
153066
|
}
|
152965
153067
|
}
|
152966
153068
|
}
|
@@ -152984,7 +153086,7 @@ module.exports={
|
|
152984
153086
|
"type": "structure",
|
152985
153087
|
"members": {
|
152986
153088
|
"PlayerSession": {
|
152987
|
-
"shape": "
|
153089
|
+
"shape": "S68"
|
152988
153090
|
}
|
152989
153091
|
}
|
152990
153092
|
}
|
@@ -153016,7 +153118,7 @@ module.exports={
|
|
153016
153118
|
"type": "structure",
|
153017
153119
|
"members": {
|
153018
153120
|
"PlayerSessions": {
|
153019
|
-
"shape": "
|
153121
|
+
"shape": "S6f"
|
153020
153122
|
}
|
153021
153123
|
}
|
153022
153124
|
}
|
@@ -153042,7 +153144,7 @@ module.exports={
|
|
153042
153144
|
"type": "structure",
|
153043
153145
|
"members": {
|
153044
153146
|
"Script": {
|
153045
|
-
"shape": "
|
153147
|
+
"shape": "S6j"
|
153046
153148
|
}
|
153047
153149
|
}
|
153048
153150
|
}
|
@@ -153063,7 +153165,7 @@ module.exports={
|
|
153063
153165
|
"type": "structure",
|
153064
153166
|
"members": {
|
153065
153167
|
"VpcPeeringAuthorization": {
|
153066
|
-
"shape": "
|
153168
|
+
"shape": "S6m"
|
153067
153169
|
}
|
153068
153170
|
}
|
153069
153171
|
}
|
@@ -153109,6 +153211,17 @@ module.exports={
|
|
153109
153211
|
}
|
153110
153212
|
}
|
153111
153213
|
},
|
153214
|
+
"DeleteContainerGroupDefinition": {
|
153215
|
+
"input": {
|
153216
|
+
"type": "structure",
|
153217
|
+
"required": [
|
153218
|
+
"Name"
|
153219
|
+
],
|
153220
|
+
"members": {
|
153221
|
+
"Name": {}
|
153222
|
+
}
|
153223
|
+
}
|
153224
|
+
},
|
153112
153225
|
"DeleteFleet": {
|
153113
153226
|
"input": {
|
153114
153227
|
"type": "structure",
|
@@ -153130,7 +153243,7 @@ module.exports={
|
|
153130
153243
|
"members": {
|
153131
153244
|
"FleetId": {},
|
153132
153245
|
"Locations": {
|
153133
|
-
"shape": "
|
153246
|
+
"shape": "S59"
|
153134
153247
|
}
|
153135
153248
|
}
|
153136
153249
|
},
|
@@ -153140,7 +153253,7 @@ module.exports={
|
|
153140
153253
|
"FleetId": {},
|
153141
153254
|
"FleetArn": {},
|
153142
153255
|
"LocationStates": {
|
153143
|
-
"shape": "
|
153256
|
+
"shape": "S3t"
|
153144
153257
|
}
|
153145
153258
|
}
|
153146
153259
|
}
|
@@ -153160,7 +153273,7 @@ module.exports={
|
|
153160
153273
|
"type": "structure",
|
153161
153274
|
"members": {
|
153162
153275
|
"GameServerGroup": {
|
153163
|
-
"shape": "
|
153276
|
+
"shape": "S4g"
|
153164
153277
|
}
|
153165
153278
|
}
|
153166
153279
|
}
|
@@ -153367,7 +153480,26 @@ module.exports={
|
|
153367
153480
|
"type": "structure",
|
153368
153481
|
"members": {
|
153369
153482
|
"Compute": {
|
153370
|
-
"shape": "
|
153483
|
+
"shape": "S7p"
|
153484
|
+
}
|
153485
|
+
}
|
153486
|
+
}
|
153487
|
+
},
|
153488
|
+
"DescribeContainerGroupDefinition": {
|
153489
|
+
"input": {
|
153490
|
+
"type": "structure",
|
153491
|
+
"required": [
|
153492
|
+
"Name"
|
153493
|
+
],
|
153494
|
+
"members": {
|
153495
|
+
"Name": {}
|
153496
|
+
}
|
153497
|
+
},
|
153498
|
+
"output": {
|
153499
|
+
"type": "structure",
|
153500
|
+
"members": {
|
153501
|
+
"ContainerGroupDefinition": {
|
153502
|
+
"shape": "S2b"
|
153371
153503
|
}
|
153372
153504
|
}
|
153373
153505
|
}
|
@@ -153407,7 +153539,7 @@ module.exports={
|
|
153407
153539
|
"type": "structure",
|
153408
153540
|
"members": {
|
153409
153541
|
"FleetIds": {
|
153410
|
-
"shape": "
|
153542
|
+
"shape": "S86"
|
153411
153543
|
},
|
153412
153544
|
"Limit": {
|
153413
153545
|
"type": "integer"
|
@@ -153421,7 +153553,7 @@ module.exports={
|
|
153421
153553
|
"FleetAttributes": {
|
153422
153554
|
"type": "list",
|
153423
153555
|
"member": {
|
153424
|
-
"shape": "
|
153556
|
+
"shape": "S3i"
|
153425
153557
|
}
|
153426
153558
|
},
|
153427
153559
|
"NextToken": {}
|
@@ -153433,7 +153565,7 @@ module.exports={
|
|
153433
153565
|
"type": "structure",
|
153434
153566
|
"members": {
|
153435
153567
|
"FleetIds": {
|
153436
|
-
"shape": "
|
153568
|
+
"shape": "S86"
|
153437
153569
|
},
|
153438
153570
|
"Limit": {
|
153439
153571
|
"type": "integer"
|
@@ -153447,7 +153579,7 @@ module.exports={
|
|
153447
153579
|
"FleetCapacity": {
|
153448
153580
|
"type": "list",
|
153449
153581
|
"member": {
|
153450
|
-
"shape": "
|
153582
|
+
"shape": "S8c"
|
153451
153583
|
}
|
153452
153584
|
},
|
153453
153585
|
"NextToken": {}
|
@@ -153489,7 +153621,10 @@ module.exports={
|
|
153489
153621
|
"EventTime": {
|
153490
153622
|
"type": "timestamp"
|
153491
153623
|
},
|
153492
|
-
"PreSignedLogUrl": {}
|
153624
|
+
"PreSignedLogUrl": {},
|
153625
|
+
"Count": {
|
153626
|
+
"type": "long"
|
153627
|
+
}
|
153493
153628
|
}
|
153494
153629
|
}
|
153495
153630
|
},
|
@@ -153506,7 +153641,7 @@ module.exports={
|
|
153506
153641
|
"members": {
|
153507
153642
|
"FleetId": {},
|
153508
153643
|
"Locations": {
|
153509
|
-
"shape": "
|
153644
|
+
"shape": "S59"
|
153510
153645
|
},
|
153511
153646
|
"Limit": {
|
153512
153647
|
"type": "integer"
|
@@ -153525,10 +153660,10 @@ module.exports={
|
|
153525
153660
|
"type": "structure",
|
153526
153661
|
"members": {
|
153527
153662
|
"LocationState": {
|
153528
|
-
"shape": "
|
153663
|
+
"shape": "S3u"
|
153529
153664
|
},
|
153530
153665
|
"StoppedActions": {
|
153531
|
-
"shape": "
|
153666
|
+
"shape": "S3n"
|
153532
153667
|
},
|
153533
153668
|
"UpdateStatus": {}
|
153534
153669
|
}
|
@@ -153554,7 +153689,7 @@ module.exports={
|
|
153554
153689
|
"type": "structure",
|
153555
153690
|
"members": {
|
153556
153691
|
"FleetCapacity": {
|
153557
|
-
"shape": "
|
153692
|
+
"shape": "S8c"
|
153558
153693
|
}
|
153559
153694
|
}
|
153560
153695
|
}
|
@@ -153575,7 +153710,7 @@ module.exports={
|
|
153575
153710
|
"type": "structure",
|
153576
153711
|
"members": {
|
153577
153712
|
"FleetUtilization": {
|
153578
|
-
"shape": "
|
153713
|
+
"shape": "S8u"
|
153579
153714
|
}
|
153580
153715
|
}
|
153581
153716
|
}
|
@@ -153597,7 +153732,7 @@ module.exports={
|
|
153597
153732
|
"FleetId": {},
|
153598
153733
|
"FleetArn": {},
|
153599
153734
|
"InboundPermissions": {
|
153600
|
-
"shape": "
|
153735
|
+
"shape": "S2o"
|
153601
153736
|
},
|
153602
153737
|
"UpdateStatus": {},
|
153603
153738
|
"Location": {}
|
@@ -153609,7 +153744,7 @@ module.exports={
|
|
153609
153744
|
"type": "structure",
|
153610
153745
|
"members": {
|
153611
153746
|
"FleetIds": {
|
153612
|
-
"shape": "
|
153747
|
+
"shape": "S86"
|
153613
153748
|
},
|
153614
153749
|
"Limit": {
|
153615
153750
|
"type": "integer"
|
@@ -153623,7 +153758,7 @@ module.exports={
|
|
153623
153758
|
"FleetUtilization": {
|
153624
153759
|
"type": "list",
|
153625
153760
|
"member": {
|
153626
|
-
"shape": "
|
153761
|
+
"shape": "S8u"
|
153627
153762
|
}
|
153628
153763
|
},
|
153629
153764
|
"NextToken": {}
|
@@ -153665,7 +153800,7 @@ module.exports={
|
|
153665
153800
|
"type": "structure",
|
153666
153801
|
"members": {
|
153667
153802
|
"GameServerGroup": {
|
153668
|
-
"shape": "
|
153803
|
+
"shape": "S4g"
|
153669
153804
|
}
|
153670
153805
|
}
|
153671
153806
|
}
|
@@ -153731,7 +153866,7 @@ module.exports={
|
|
153731
153866
|
"type": "structure",
|
153732
153867
|
"members": {
|
153733
153868
|
"GameSession": {
|
153734
|
-
"shape": "
|
153869
|
+
"shape": "S4u"
|
153735
153870
|
},
|
153736
153871
|
"ProtectionPolicy": {}
|
153737
153872
|
}
|
@@ -153755,7 +153890,7 @@ module.exports={
|
|
153755
153890
|
"type": "structure",
|
153756
153891
|
"members": {
|
153757
153892
|
"GameSessionPlacement": {
|
153758
|
-
"shape": "
|
153893
|
+
"shape": "S9g"
|
153759
153894
|
}
|
153760
153895
|
}
|
153761
153896
|
}
|
@@ -153780,7 +153915,7 @@ module.exports={
|
|
153780
153915
|
"GameSessionQueues": {
|
153781
153916
|
"type": "list",
|
153782
153917
|
"member": {
|
153783
|
-
"shape": "
|
153918
|
+
"shape": "S5g"
|
153784
153919
|
}
|
153785
153920
|
},
|
153786
153921
|
"NextToken": {}
|
@@ -153806,7 +153941,7 @@ module.exports={
|
|
153806
153941
|
"type": "structure",
|
153807
153942
|
"members": {
|
153808
153943
|
"GameSessions": {
|
153809
|
-
"shape": "
|
153944
|
+
"shape": "S9t"
|
153810
153945
|
},
|
153811
153946
|
"NextToken": {}
|
153812
153947
|
}
|
@@ -153840,7 +153975,7 @@ module.exports={
|
|
153840
153975
|
"FleetArn": {},
|
153841
153976
|
"InstanceId": {},
|
153842
153977
|
"IpAddress": {
|
153843
|
-
"shape": "
|
153978
|
+
"shape": "S4x"
|
153844
153979
|
},
|
153845
153980
|
"DnsName": {},
|
153846
153981
|
"OperatingSystem": {},
|
@@ -153876,7 +154011,7 @@ module.exports={
|
|
153876
154011
|
"TicketList": {
|
153877
154012
|
"type": "list",
|
153878
154013
|
"member": {
|
153879
|
-
"shape": "
|
154014
|
+
"shape": "Sa3"
|
153880
154015
|
}
|
153881
154016
|
}
|
153882
154017
|
}
|
@@ -153903,7 +154038,7 @@ module.exports={
|
|
153903
154038
|
"Configurations": {
|
153904
154039
|
"type": "list",
|
153905
154040
|
"member": {
|
153906
|
-
"shape": "
|
154041
|
+
"shape": "S5y"
|
153907
154042
|
}
|
153908
154043
|
},
|
153909
154044
|
"NextToken": {}
|
@@ -153933,7 +154068,7 @@ module.exports={
|
|
153933
154068
|
"RuleSets": {
|
153934
154069
|
"type": "list",
|
153935
154070
|
"member": {
|
153936
|
-
"shape": "
|
154071
|
+
"shape": "S64"
|
153937
154072
|
}
|
153938
154073
|
},
|
153939
154074
|
"NextToken": {}
|
@@ -153960,7 +154095,7 @@ module.exports={
|
|
153960
154095
|
"type": "structure",
|
153961
154096
|
"members": {
|
153962
154097
|
"PlayerSessions": {
|
153963
|
-
"shape": "
|
154098
|
+
"shape": "S6f"
|
153964
154099
|
},
|
153965
154100
|
"NextToken": {}
|
153966
154101
|
}
|
@@ -153980,7 +154115,7 @@ module.exports={
|
|
153980
154115
|
"type": "structure",
|
153981
154116
|
"members": {
|
153982
154117
|
"RuntimeConfiguration": {
|
153983
|
-
"shape": "
|
154118
|
+
"shape": "S2s"
|
153984
154119
|
}
|
153985
154120
|
}
|
153986
154121
|
}
|
@@ -154027,7 +154162,7 @@ module.exports={
|
|
154027
154162
|
"MetricName": {},
|
154028
154163
|
"PolicyType": {},
|
154029
154164
|
"TargetConfiguration": {
|
154030
|
-
"shape": "
|
154165
|
+
"shape": "Sb6"
|
154031
154166
|
},
|
154032
154167
|
"UpdateStatus": {},
|
154033
154168
|
"Location": {}
|
@@ -154052,7 +154187,7 @@ module.exports={
|
|
154052
154187
|
"type": "structure",
|
154053
154188
|
"members": {
|
154054
154189
|
"Script": {
|
154055
|
-
"shape": "
|
154190
|
+
"shape": "S6j"
|
154056
154191
|
}
|
154057
154192
|
}
|
154058
154193
|
}
|
@@ -154068,7 +154203,7 @@ module.exports={
|
|
154068
154203
|
"VpcPeeringAuthorizations": {
|
154069
154204
|
"type": "list",
|
154070
154205
|
"member": {
|
154071
|
-
"shape": "
|
154206
|
+
"shape": "S6m"
|
154072
154207
|
}
|
154073
154208
|
}
|
154074
154209
|
}
|
@@ -154129,7 +154264,8 @@ module.exports={
|
|
154129
154264
|
"ComputeArn": {},
|
154130
154265
|
"Credentials": {
|
154131
154266
|
"shape": "S1d"
|
154132
|
-
}
|
154267
|
+
},
|
154268
|
+
"Target": {}
|
154133
154269
|
}
|
154134
154270
|
}
|
154135
154271
|
},
|
@@ -154197,7 +154333,7 @@ module.exports={
|
|
154197
154333
|
"FleetId": {},
|
154198
154334
|
"InstanceId": {},
|
154199
154335
|
"IpAddress": {
|
154200
|
-
"shape": "
|
154336
|
+
"shape": "S4x"
|
154201
154337
|
},
|
154202
154338
|
"OperatingSystem": {},
|
154203
154339
|
"Credentials": {
|
@@ -154283,7 +154419,31 @@ module.exports={
|
|
154283
154419
|
"ComputeList": {
|
154284
154420
|
"type": "list",
|
154285
154421
|
"member": {
|
154286
|
-
"shape": "
|
154422
|
+
"shape": "S7p"
|
154423
|
+
}
|
154424
|
+
},
|
154425
|
+
"NextToken": {}
|
154426
|
+
}
|
154427
|
+
}
|
154428
|
+
},
|
154429
|
+
"ListContainerGroupDefinitions": {
|
154430
|
+
"input": {
|
154431
|
+
"type": "structure",
|
154432
|
+
"members": {
|
154433
|
+
"SchedulingStrategy": {},
|
154434
|
+
"Limit": {
|
154435
|
+
"type": "integer"
|
154436
|
+
},
|
154437
|
+
"NextToken": {}
|
154438
|
+
}
|
154439
|
+
},
|
154440
|
+
"output": {
|
154441
|
+
"type": "structure",
|
154442
|
+
"members": {
|
154443
|
+
"ContainerGroupDefinitions": {
|
154444
|
+
"type": "list",
|
154445
|
+
"member": {
|
154446
|
+
"shape": "S2b"
|
154287
154447
|
}
|
154288
154448
|
},
|
154289
154449
|
"NextToken": {}
|
@@ -154296,6 +154456,7 @@ module.exports={
|
|
154296
154456
|
"members": {
|
154297
154457
|
"BuildId": {},
|
154298
154458
|
"ScriptId": {},
|
154459
|
+
"ContainerGroupDefinitionName": {},
|
154299
154460
|
"Limit": {
|
154300
154461
|
"type": "integer"
|
154301
154462
|
},
|
@@ -154329,7 +154490,7 @@ module.exports={
|
|
154329
154490
|
"GameServerGroups": {
|
154330
154491
|
"type": "list",
|
154331
154492
|
"member": {
|
154332
|
-
"shape": "
|
154493
|
+
"shape": "S4g"
|
154333
154494
|
}
|
154334
154495
|
},
|
154335
154496
|
"NextToken": {}
|
@@ -154384,7 +154545,7 @@ module.exports={
|
|
154384
154545
|
"Locations": {
|
154385
154546
|
"type": "list",
|
154386
154547
|
"member": {
|
154387
|
-
"shape": "
|
154548
|
+
"shape": "S5l"
|
154388
154549
|
}
|
154389
154550
|
},
|
154390
154551
|
"NextToken": {}
|
@@ -154407,7 +154568,7 @@ module.exports={
|
|
154407
154568
|
"Scripts": {
|
154408
154569
|
"type": "list",
|
154409
154570
|
"member": {
|
154410
|
-
"shape": "
|
154571
|
+
"shape": "S6j"
|
154411
154572
|
}
|
154412
154573
|
},
|
154413
154574
|
"NextToken": {}
|
@@ -154458,7 +154619,7 @@ module.exports={
|
|
154458
154619
|
"MetricName": {},
|
154459
154620
|
"PolicyType": {},
|
154460
154621
|
"TargetConfiguration": {
|
154461
|
-
"shape": "
|
154622
|
+
"shape": "Sb6"
|
154462
154623
|
}
|
154463
154624
|
}
|
154464
154625
|
},
|
@@ -154482,7 +154643,7 @@ module.exports={
|
|
154482
154643
|
"CertificatePath": {},
|
154483
154644
|
"DnsName": {},
|
154484
154645
|
"IpAddress": {
|
154485
|
-
"shape": "
|
154646
|
+
"shape": "S4x"
|
154486
154647
|
},
|
154487
154648
|
"Location": {}
|
154488
154649
|
}
|
@@ -154491,7 +154652,7 @@ module.exports={
|
|
154491
154652
|
"type": "structure",
|
154492
154653
|
"members": {
|
154493
154654
|
"Compute": {
|
154494
|
-
"shape": "
|
154655
|
+
"shape": "S7p"
|
154495
154656
|
}
|
154496
154657
|
}
|
154497
154658
|
}
|
@@ -154571,7 +154732,7 @@ module.exports={
|
|
154571
154732
|
"members": {
|
154572
154733
|
"GameServerGroupName": {},
|
154573
154734
|
"ResumeActions": {
|
154574
|
-
"shape": "
|
154735
|
+
"shape": "S4j"
|
154575
154736
|
}
|
154576
154737
|
}
|
154577
154738
|
},
|
@@ -154579,7 +154740,7 @@ module.exports={
|
|
154579
154740
|
"type": "structure",
|
154580
154741
|
"members": {
|
154581
154742
|
"GameServerGroup": {
|
154582
|
-
"shape": "
|
154743
|
+
"shape": "S4g"
|
154583
154744
|
}
|
154584
154745
|
}
|
154585
154746
|
}
|
@@ -154603,7 +154764,7 @@ module.exports={
|
|
154603
154764
|
"type": "structure",
|
154604
154765
|
"members": {
|
154605
154766
|
"GameSessions": {
|
154606
|
-
"shape": "
|
154767
|
+
"shape": "S9t"
|
154607
154768
|
},
|
154608
154769
|
"NextToken": {}
|
154609
154770
|
}
|
@@ -154619,7 +154780,7 @@ module.exports={
|
|
154619
154780
|
"members": {
|
154620
154781
|
"FleetId": {},
|
154621
154782
|
"Actions": {
|
154622
|
-
"shape": "
|
154783
|
+
"shape": "S3n"
|
154623
154784
|
},
|
154624
154785
|
"Location": {}
|
154625
154786
|
}
|
@@ -154644,14 +154805,14 @@ module.exports={
|
|
154644
154805
|
"PlacementId": {},
|
154645
154806
|
"GameSessionQueueName": {},
|
154646
154807
|
"GameProperties": {
|
154647
|
-
"shape": "
|
154808
|
+
"shape": "S4n"
|
154648
154809
|
},
|
154649
154810
|
"MaximumPlayerSessionCount": {
|
154650
154811
|
"type": "integer"
|
154651
154812
|
},
|
154652
154813
|
"GameSessionName": {},
|
154653
154814
|
"PlayerLatencies": {
|
154654
|
-
"shape": "
|
154815
|
+
"shape": "S9i"
|
154655
154816
|
},
|
154656
154817
|
"DesiredPlayerSessions": {
|
154657
154818
|
"type": "list",
|
@@ -154672,7 +154833,7 @@ module.exports={
|
|
154672
154833
|
"type": "structure",
|
154673
154834
|
"members": {
|
154674
154835
|
"GameSessionPlacement": {
|
154675
|
-
"shape": "
|
154836
|
+
"shape": "S9g"
|
154676
154837
|
}
|
154677
154838
|
}
|
154678
154839
|
}
|
@@ -154689,7 +154850,7 @@ module.exports={
|
|
154689
154850
|
"ConfigurationName": {},
|
154690
154851
|
"GameSessionArn": {},
|
154691
154852
|
"Players": {
|
154692
|
-
"shape": "
|
154853
|
+
"shape": "Sa6"
|
154693
154854
|
}
|
154694
154855
|
}
|
154695
154856
|
},
|
@@ -154697,7 +154858,7 @@ module.exports={
|
|
154697
154858
|
"type": "structure",
|
154698
154859
|
"members": {
|
154699
154860
|
"MatchmakingTicket": {
|
154700
|
-
"shape": "
|
154861
|
+
"shape": "Sa3"
|
154701
154862
|
}
|
154702
154863
|
}
|
154703
154864
|
}
|
@@ -154713,7 +154874,7 @@ module.exports={
|
|
154713
154874
|
"TicketId": {},
|
154714
154875
|
"ConfigurationName": {},
|
154715
154876
|
"Players": {
|
154716
|
-
"shape": "
|
154877
|
+
"shape": "Sa6"
|
154717
154878
|
}
|
154718
154879
|
}
|
154719
154880
|
},
|
@@ -154721,7 +154882,7 @@ module.exports={
|
|
154721
154882
|
"type": "structure",
|
154722
154883
|
"members": {
|
154723
154884
|
"MatchmakingTicket": {
|
154724
|
-
"shape": "
|
154885
|
+
"shape": "Sa3"
|
154725
154886
|
}
|
154726
154887
|
}
|
154727
154888
|
}
|
@@ -154736,7 +154897,7 @@ module.exports={
|
|
154736
154897
|
"members": {
|
154737
154898
|
"FleetId": {},
|
154738
154899
|
"Actions": {
|
154739
|
-
"shape": "
|
154900
|
+
"shape": "S3n"
|
154740
154901
|
},
|
154741
154902
|
"Location": {}
|
154742
154903
|
}
|
@@ -154763,7 +154924,7 @@ module.exports={
|
|
154763
154924
|
"type": "structure",
|
154764
154925
|
"members": {
|
154765
154926
|
"GameSessionPlacement": {
|
154766
|
-
"shape": "
|
154927
|
+
"shape": "S9g"
|
154767
154928
|
}
|
154768
154929
|
}
|
154769
154930
|
}
|
@@ -154793,7 +154954,7 @@ module.exports={
|
|
154793
154954
|
"members": {
|
154794
154955
|
"GameServerGroupName": {},
|
154795
154956
|
"SuspendActions": {
|
154796
|
-
"shape": "
|
154957
|
+
"shape": "S4j"
|
154797
154958
|
}
|
154798
154959
|
}
|
154799
154960
|
},
|
@@ -154801,7 +154962,7 @@ module.exports={
|
|
154801
154962
|
"type": "structure",
|
154802
154963
|
"members": {
|
154803
154964
|
"GameServerGroup": {
|
154804
|
-
"shape": "
|
154965
|
+
"shape": "S4g"
|
154805
154966
|
}
|
154806
154967
|
}
|
154807
154968
|
}
|
@@ -154902,13 +155063,13 @@ module.exports={
|
|
154902
155063
|
"Description": {},
|
154903
155064
|
"NewGameSessionProtectionPolicy": {},
|
154904
155065
|
"ResourceCreationLimitPolicy": {
|
154905
|
-
"shape": "
|
155066
|
+
"shape": "S2y"
|
154906
155067
|
},
|
154907
155068
|
"MetricGroups": {
|
154908
|
-
"shape": "
|
155069
|
+
"shape": "S30"
|
154909
155070
|
},
|
154910
155071
|
"AnywhereConfiguration": {
|
154911
|
-
"shape": "
|
155072
|
+
"shape": "S39"
|
154912
155073
|
}
|
154913
155074
|
}
|
154914
155075
|
},
|
@@ -154958,10 +155119,10 @@ module.exports={
|
|
154958
155119
|
"members": {
|
154959
155120
|
"FleetId": {},
|
154960
155121
|
"InboundPermissionAuthorizations": {
|
154961
|
-
"shape": "
|
155122
|
+
"shape": "S2o"
|
154962
155123
|
},
|
154963
155124
|
"InboundPermissionRevocations": {
|
154964
|
-
"shape": "
|
155125
|
+
"shape": "S2o"
|
154965
155126
|
}
|
154966
155127
|
}
|
154967
155128
|
},
|
@@ -155007,7 +155168,7 @@ module.exports={
|
|
155007
155168
|
"GameServerGroupName": {},
|
155008
155169
|
"RoleArn": {},
|
155009
155170
|
"InstanceDefinitions": {
|
155010
|
-
"shape": "
|
155171
|
+
"shape": "S44"
|
155011
155172
|
},
|
155012
155173
|
"GameServerProtectionPolicy": {},
|
155013
155174
|
"BalancingStrategy": {}
|
@@ -155017,7 +155178,7 @@ module.exports={
|
|
155017
155178
|
"type": "structure",
|
155018
155179
|
"members": {
|
155019
155180
|
"GameServerGroup": {
|
155020
|
-
"shape": "
|
155181
|
+
"shape": "S4g"
|
155021
155182
|
}
|
155022
155183
|
}
|
155023
155184
|
}
|
@@ -155037,7 +155198,7 @@ module.exports={
|
|
155037
155198
|
"PlayerSessionCreationPolicy": {},
|
155038
155199
|
"ProtectionPolicy": {},
|
155039
155200
|
"GameProperties": {
|
155040
|
-
"shape": "
|
155201
|
+
"shape": "S4n"
|
155041
155202
|
}
|
155042
155203
|
}
|
155043
155204
|
},
|
@@ -155045,7 +155206,7 @@ module.exports={
|
|
155045
155206
|
"type": "structure",
|
155046
155207
|
"members": {
|
155047
155208
|
"GameSession": {
|
155048
|
-
"shape": "
|
155209
|
+
"shape": "S4u"
|
155049
155210
|
}
|
155050
155211
|
}
|
155051
155212
|
}
|
@@ -155062,16 +155223,16 @@ module.exports={
|
|
155062
155223
|
"type": "integer"
|
155063
155224
|
},
|
155064
155225
|
"PlayerLatencyPolicies": {
|
155065
|
-
"shape": "
|
155226
|
+
"shape": "S53"
|
155066
155227
|
},
|
155067
155228
|
"Destinations": {
|
155068
|
-
"shape": "
|
155229
|
+
"shape": "S55"
|
155069
155230
|
},
|
155070
155231
|
"FilterConfiguration": {
|
155071
|
-
"shape": "
|
155232
|
+
"shape": "S58"
|
155072
155233
|
},
|
155073
155234
|
"PriorityConfiguration": {
|
155074
|
-
"shape": "
|
155235
|
+
"shape": "S5a"
|
155075
155236
|
},
|
155076
155237
|
"CustomEventData": {},
|
155077
155238
|
"NotificationTarget": {}
|
@@ -155081,7 +155242,7 @@ module.exports={
|
|
155081
155242
|
"type": "structure",
|
155082
155243
|
"members": {
|
155083
155244
|
"GameSessionQueue": {
|
155084
|
-
"shape": "
|
155245
|
+
"shape": "S5g"
|
155085
155246
|
}
|
155086
155247
|
}
|
155087
155248
|
}
|
@@ -155096,7 +155257,7 @@ module.exports={
|
|
155096
155257
|
"Name": {},
|
155097
155258
|
"Description": {},
|
155098
155259
|
"GameSessionQueueArns": {
|
155099
|
-
"shape": "
|
155260
|
+
"shape": "S5o"
|
155100
155261
|
},
|
155101
155262
|
"RequestTimeoutSeconds": {
|
155102
155263
|
"type": "integer"
|
@@ -155114,7 +155275,7 @@ module.exports={
|
|
155114
155275
|
},
|
155115
155276
|
"CustomEventData": {},
|
155116
155277
|
"GameProperties": {
|
155117
|
-
"shape": "
|
155278
|
+
"shape": "S4n"
|
155118
155279
|
},
|
155119
155280
|
"GameSessionData": {},
|
155120
155281
|
"BackfillMode": {},
|
@@ -155125,7 +155286,7 @@ module.exports={
|
|
155125
155286
|
"type": "structure",
|
155126
155287
|
"members": {
|
155127
155288
|
"Configuration": {
|
155128
|
-
"shape": "
|
155289
|
+
"shape": "S5y"
|
155129
155290
|
}
|
155130
155291
|
}
|
155131
155292
|
}
|
@@ -155140,7 +155301,7 @@ module.exports={
|
|
155140
155301
|
"members": {
|
155141
155302
|
"FleetId": {},
|
155142
155303
|
"RuntimeConfiguration": {
|
155143
|
-
"shape": "
|
155304
|
+
"shape": "S2s"
|
155144
155305
|
}
|
155145
155306
|
}
|
155146
155307
|
},
|
@@ -155148,7 +155309,7 @@ module.exports={
|
|
155148
155309
|
"type": "structure",
|
155149
155310
|
"members": {
|
155150
155311
|
"RuntimeConfiguration": {
|
155151
|
-
"shape": "
|
155312
|
+
"shape": "S2s"
|
155152
155313
|
}
|
155153
155314
|
}
|
155154
155315
|
}
|
@@ -155175,7 +155336,7 @@ module.exports={
|
|
155175
155336
|
"type": "structure",
|
155176
155337
|
"members": {
|
155177
155338
|
"Script": {
|
155178
|
-
"shape": "
|
155339
|
+
"shape": "S6j"
|
155179
155340
|
}
|
155180
155341
|
}
|
155181
155342
|
}
|
@@ -155303,11 +155464,176 @@ module.exports={
|
|
155303
155464
|
},
|
155304
155465
|
"sensitive": true
|
155305
155466
|
},
|
155306
|
-
"
|
155467
|
+
"S1n": {
|
155468
|
+
"type": "structure",
|
155469
|
+
"members": {
|
155470
|
+
"SoftLimit": {
|
155471
|
+
"type": "integer"
|
155472
|
+
},
|
155473
|
+
"HardLimit": {
|
155474
|
+
"type": "integer"
|
155475
|
+
}
|
155476
|
+
}
|
155477
|
+
},
|
155478
|
+
"S1p": {
|
155479
|
+
"type": "structure",
|
155480
|
+
"required": [
|
155481
|
+
"ContainerPortRanges"
|
155482
|
+
],
|
155483
|
+
"members": {
|
155484
|
+
"ContainerPortRanges": {
|
155485
|
+
"type": "list",
|
155486
|
+
"member": {
|
155487
|
+
"type": "structure",
|
155488
|
+
"required": [
|
155489
|
+
"FromPort",
|
155490
|
+
"ToPort",
|
155491
|
+
"Protocol"
|
155492
|
+
],
|
155493
|
+
"members": {
|
155494
|
+
"FromPort": {
|
155495
|
+
"shape": "S1s"
|
155496
|
+
},
|
155497
|
+
"ToPort": {
|
155498
|
+
"shape": "S1s"
|
155499
|
+
},
|
155500
|
+
"Protocol": {}
|
155501
|
+
}
|
155502
|
+
}
|
155503
|
+
}
|
155504
|
+
}
|
155505
|
+
},
|
155506
|
+
"S1s": {
|
155507
|
+
"type": "integer",
|
155508
|
+
"sensitive": true
|
155509
|
+
},
|
155510
|
+
"S1v": {
|
155511
|
+
"type": "structure",
|
155512
|
+
"required": [
|
155513
|
+
"Command"
|
155514
|
+
],
|
155515
|
+
"members": {
|
155516
|
+
"Command": {
|
155517
|
+
"shape": "S1w"
|
155518
|
+
},
|
155519
|
+
"Interval": {
|
155520
|
+
"type": "integer"
|
155521
|
+
},
|
155522
|
+
"Timeout": {
|
155523
|
+
"type": "integer"
|
155524
|
+
},
|
155525
|
+
"Retries": {
|
155526
|
+
"type": "integer"
|
155527
|
+
},
|
155528
|
+
"StartPeriod": {
|
155529
|
+
"type": "integer"
|
155530
|
+
}
|
155531
|
+
}
|
155532
|
+
},
|
155533
|
+
"S1w": {
|
155307
155534
|
"type": "list",
|
155308
155535
|
"member": {}
|
155309
155536
|
},
|
155310
|
-
"
|
155537
|
+
"S23": {
|
155538
|
+
"type": "list",
|
155539
|
+
"member": {}
|
155540
|
+
},
|
155541
|
+
"S24": {
|
155542
|
+
"type": "list",
|
155543
|
+
"member": {
|
155544
|
+
"type": "structure",
|
155545
|
+
"required": [
|
155546
|
+
"Name",
|
155547
|
+
"Value"
|
155548
|
+
],
|
155549
|
+
"members": {
|
155550
|
+
"Name": {},
|
155551
|
+
"Value": {}
|
155552
|
+
}
|
155553
|
+
}
|
155554
|
+
},
|
155555
|
+
"S26": {
|
155556
|
+
"type": "list",
|
155557
|
+
"member": {
|
155558
|
+
"type": "structure",
|
155559
|
+
"required": [
|
155560
|
+
"ContainerName",
|
155561
|
+
"Condition"
|
155562
|
+
],
|
155563
|
+
"members": {
|
155564
|
+
"ContainerName": {},
|
155565
|
+
"Condition": {}
|
155566
|
+
}
|
155567
|
+
}
|
155568
|
+
},
|
155569
|
+
"S2b": {
|
155570
|
+
"type": "structure",
|
155571
|
+
"members": {
|
155572
|
+
"ContainerGroupDefinitionArn": {},
|
155573
|
+
"CreationTime": {
|
155574
|
+
"type": "timestamp"
|
155575
|
+
},
|
155576
|
+
"OperatingSystem": {},
|
155577
|
+
"Name": {},
|
155578
|
+
"SchedulingStrategy": {},
|
155579
|
+
"TotalMemoryLimit": {
|
155580
|
+
"type": "integer"
|
155581
|
+
},
|
155582
|
+
"TotalCpuLimit": {
|
155583
|
+
"type": "integer"
|
155584
|
+
},
|
155585
|
+
"ContainerDefinitions": {
|
155586
|
+
"type": "list",
|
155587
|
+
"member": {
|
155588
|
+
"type": "structure",
|
155589
|
+
"required": [
|
155590
|
+
"ContainerName",
|
155591
|
+
"ImageUri"
|
155592
|
+
],
|
155593
|
+
"members": {
|
155594
|
+
"ContainerName": {},
|
155595
|
+
"ImageUri": {},
|
155596
|
+
"ResolvedImageDigest": {},
|
155597
|
+
"MemoryLimits": {
|
155598
|
+
"shape": "S1n"
|
155599
|
+
},
|
155600
|
+
"PortConfiguration": {
|
155601
|
+
"shape": "S1p"
|
155602
|
+
},
|
155603
|
+
"Cpu": {
|
155604
|
+
"type": "integer"
|
155605
|
+
},
|
155606
|
+
"HealthCheck": {
|
155607
|
+
"shape": "S1v"
|
155608
|
+
},
|
155609
|
+
"Command": {
|
155610
|
+
"shape": "S1w"
|
155611
|
+
},
|
155612
|
+
"Essential": {
|
155613
|
+
"type": "boolean"
|
155614
|
+
},
|
155615
|
+
"EntryPoint": {
|
155616
|
+
"shape": "S23"
|
155617
|
+
},
|
155618
|
+
"WorkingDirectory": {},
|
155619
|
+
"Environment": {
|
155620
|
+
"shape": "S24"
|
155621
|
+
},
|
155622
|
+
"DependsOn": {
|
155623
|
+
"shape": "S26"
|
155624
|
+
}
|
155625
|
+
}
|
155626
|
+
}
|
155627
|
+
},
|
155628
|
+
"Status": {},
|
155629
|
+
"StatusReason": {}
|
155630
|
+
}
|
155631
|
+
},
|
155632
|
+
"S2m": {
|
155633
|
+
"type": "list",
|
155634
|
+
"member": {}
|
155635
|
+
},
|
155636
|
+
"S2o": {
|
155311
155637
|
"type": "list",
|
155312
155638
|
"member": {
|
155313
155639
|
"type": "structure",
|
@@ -155319,10 +155645,10 @@ module.exports={
|
|
155319
155645
|
],
|
155320
155646
|
"members": {
|
155321
155647
|
"FromPort": {
|
155322
|
-
"shape": "
|
155648
|
+
"shape": "S1s"
|
155323
155649
|
},
|
155324
155650
|
"ToPort": {
|
155325
|
-
"shape": "
|
155651
|
+
"shape": "S1s"
|
155326
155652
|
},
|
155327
155653
|
"IpRange": {
|
155328
155654
|
"type": "string",
|
@@ -155332,11 +155658,7 @@ module.exports={
|
|
155332
155658
|
}
|
155333
155659
|
}
|
155334
155660
|
},
|
155335
|
-
"
|
155336
|
-
"type": "integer",
|
155337
|
-
"sensitive": true
|
155338
|
-
},
|
155339
|
-
"S1r": {
|
155661
|
+
"S2s": {
|
155340
155662
|
"type": "structure",
|
155341
155663
|
"members": {
|
155342
155664
|
"ServerProcesses": {
|
@@ -155364,7 +155686,7 @@ module.exports={
|
|
155364
155686
|
}
|
155365
155687
|
}
|
155366
155688
|
},
|
155367
|
-
"
|
155689
|
+
"S2y": {
|
155368
155690
|
"type": "structure",
|
155369
155691
|
"members": {
|
155370
155692
|
"NewGameSessionsPerCreator": {
|
@@ -155375,11 +155697,11 @@ module.exports={
|
|
155375
155697
|
}
|
155376
155698
|
}
|
155377
155699
|
},
|
155378
|
-
"
|
155700
|
+
"S30": {
|
155379
155701
|
"type": "list",
|
155380
155702
|
"member": {}
|
155381
155703
|
},
|
155382
|
-
"
|
155704
|
+
"S33": {
|
155383
155705
|
"type": "structure",
|
155384
155706
|
"required": [
|
155385
155707
|
"CertificateType"
|
@@ -155388,7 +155710,7 @@ module.exports={
|
|
155388
155710
|
"CertificateType": {}
|
155389
155711
|
}
|
155390
155712
|
},
|
155391
|
-
"
|
155713
|
+
"S35": {
|
155392
155714
|
"type": "list",
|
155393
155715
|
"member": {
|
155394
155716
|
"type": "structure",
|
@@ -155400,7 +155722,7 @@ module.exports={
|
|
155400
155722
|
}
|
155401
155723
|
}
|
155402
155724
|
},
|
155403
|
-
"
|
155725
|
+
"S39": {
|
155404
155726
|
"type": "structure",
|
155405
155727
|
"required": [
|
155406
155728
|
"Cost"
|
@@ -155409,7 +155731,22 @@ module.exports={
|
|
155409
155731
|
"Cost": {}
|
155410
155732
|
}
|
155411
155733
|
},
|
155412
|
-
"
|
155734
|
+
"S3f": {
|
155735
|
+
"type": "structure",
|
155736
|
+
"required": [
|
155737
|
+
"FromPort",
|
155738
|
+
"ToPort"
|
155739
|
+
],
|
155740
|
+
"members": {
|
155741
|
+
"FromPort": {
|
155742
|
+
"shape": "S1s"
|
155743
|
+
},
|
155744
|
+
"ToPort": {
|
155745
|
+
"shape": "S1s"
|
155746
|
+
}
|
155747
|
+
}
|
155748
|
+
},
|
155749
|
+
"S3i": {
|
155413
155750
|
"type": "structure",
|
155414
155751
|
"members": {
|
155415
155752
|
"FleetId": {},
|
@@ -155432,48 +155769,77 @@ module.exports={
|
|
155432
155769
|
"ServerLaunchPath": {},
|
155433
155770
|
"ServerLaunchParameters": {},
|
155434
155771
|
"LogPaths": {
|
155435
|
-
"shape": "
|
155772
|
+
"shape": "S2m"
|
155436
155773
|
},
|
155437
155774
|
"NewGameSessionProtectionPolicy": {},
|
155438
155775
|
"OperatingSystem": {},
|
155439
155776
|
"ResourceCreationLimitPolicy": {
|
155440
|
-
"shape": "
|
155777
|
+
"shape": "S2y"
|
155441
155778
|
},
|
155442
155779
|
"MetricGroups": {
|
155443
|
-
"shape": "
|
155780
|
+
"shape": "S30"
|
155444
155781
|
},
|
155445
155782
|
"StoppedActions": {
|
155446
|
-
"shape": "
|
155783
|
+
"shape": "S3n"
|
155447
155784
|
},
|
155448
155785
|
"InstanceRoleArn": {},
|
155449
155786
|
"CertificateConfiguration": {
|
155450
|
-
"shape": "
|
155787
|
+
"shape": "S33"
|
155451
155788
|
},
|
155452
155789
|
"ComputeType": {},
|
155453
155790
|
"AnywhereConfiguration": {
|
155454
|
-
"shape": "
|
155791
|
+
"shape": "S39"
|
155455
155792
|
},
|
155456
|
-
"InstanceRoleCredentialsProvider": {}
|
155793
|
+
"InstanceRoleCredentialsProvider": {},
|
155794
|
+
"ContainerGroupsAttributes": {
|
155795
|
+
"type": "structure",
|
155796
|
+
"members": {
|
155797
|
+
"ContainerGroupDefinitionProperties": {
|
155798
|
+
"type": "list",
|
155799
|
+
"member": {
|
155800
|
+
"type": "structure",
|
155801
|
+
"members": {
|
155802
|
+
"SchedulingStrategy": {},
|
155803
|
+
"ContainerGroupDefinitionName": {}
|
155804
|
+
}
|
155805
|
+
}
|
155806
|
+
},
|
155807
|
+
"ConnectionPortRange": {
|
155808
|
+
"shape": "S3f"
|
155809
|
+
},
|
155810
|
+
"ContainerGroupsPerInstance": {
|
155811
|
+
"type": "structure",
|
155812
|
+
"members": {
|
155813
|
+
"DesiredReplicaContainerGroupsPerInstance": {
|
155814
|
+
"type": "integer"
|
155815
|
+
},
|
155816
|
+
"MaxReplicaContainerGroupsPerInstance": {
|
155817
|
+
"type": "integer"
|
155818
|
+
}
|
155819
|
+
}
|
155820
|
+
}
|
155821
|
+
}
|
155822
|
+
}
|
155457
155823
|
}
|
155458
155824
|
},
|
155459
|
-
"
|
155825
|
+
"S3n": {
|
155460
155826
|
"type": "list",
|
155461
155827
|
"member": {}
|
155462
155828
|
},
|
155463
|
-
"
|
155829
|
+
"S3t": {
|
155464
155830
|
"type": "list",
|
155465
155831
|
"member": {
|
155466
|
-
"shape": "
|
155832
|
+
"shape": "S3u"
|
155467
155833
|
}
|
155468
155834
|
},
|
155469
|
-
"
|
155835
|
+
"S3u": {
|
155470
155836
|
"type": "structure",
|
155471
155837
|
"members": {
|
155472
155838
|
"Location": {},
|
155473
155839
|
"Status": {}
|
155474
155840
|
}
|
155475
155841
|
},
|
155476
|
-
"
|
155842
|
+
"S44": {
|
155477
155843
|
"type": "list",
|
155478
155844
|
"member": {
|
155479
155845
|
"type": "structure",
|
@@ -155486,14 +155852,14 @@ module.exports={
|
|
155486
155852
|
}
|
155487
155853
|
}
|
155488
155854
|
},
|
155489
|
-
"
|
155855
|
+
"S4g": {
|
155490
155856
|
"type": "structure",
|
155491
155857
|
"members": {
|
155492
155858
|
"GameServerGroupName": {},
|
155493
155859
|
"GameServerGroupArn": {},
|
155494
155860
|
"RoleArn": {},
|
155495
155861
|
"InstanceDefinitions": {
|
155496
|
-
"shape": "
|
155862
|
+
"shape": "S44"
|
155497
155863
|
},
|
155498
155864
|
"BalancingStrategy": {},
|
155499
155865
|
"GameServerProtectionPolicy": {},
|
@@ -155501,7 +155867,7 @@ module.exports={
|
|
155501
155867
|
"Status": {},
|
155502
155868
|
"StatusReason": {},
|
155503
155869
|
"SuspendedActions": {
|
155504
|
-
"shape": "
|
155870
|
+
"shape": "S4j"
|
155505
155871
|
},
|
155506
155872
|
"CreationTime": {
|
155507
155873
|
"type": "timestamp"
|
@@ -155511,11 +155877,11 @@ module.exports={
|
|
155511
155877
|
}
|
155512
155878
|
}
|
155513
155879
|
},
|
155514
|
-
"
|
155880
|
+
"S4j": {
|
155515
155881
|
"type": "list",
|
155516
155882
|
"member": {}
|
155517
155883
|
},
|
155518
|
-
"
|
155884
|
+
"S4n": {
|
155519
155885
|
"type": "list",
|
155520
155886
|
"member": {
|
155521
155887
|
"type": "structure",
|
@@ -155529,7 +155895,7 @@ module.exports={
|
|
155529
155895
|
}
|
155530
155896
|
}
|
155531
155897
|
},
|
155532
|
-
"
|
155898
|
+
"S4u": {
|
155533
155899
|
"type": "structure",
|
155534
155900
|
"members": {
|
155535
155901
|
"GameSessionId": {},
|
@@ -155551,14 +155917,14 @@ module.exports={
|
|
155551
155917
|
"Status": {},
|
155552
155918
|
"StatusReason": {},
|
155553
155919
|
"GameProperties": {
|
155554
|
-
"shape": "
|
155920
|
+
"shape": "S4n"
|
155555
155921
|
},
|
155556
155922
|
"IpAddress": {
|
155557
|
-
"shape": "
|
155923
|
+
"shape": "S4x"
|
155558
155924
|
},
|
155559
155925
|
"DnsName": {},
|
155560
155926
|
"Port": {
|
155561
|
-
"shape": "
|
155927
|
+
"shape": "S1s"
|
155562
155928
|
},
|
155563
155929
|
"PlayerSessionCreationPolicy": {},
|
155564
155930
|
"CreatorId": {},
|
@@ -155567,11 +155933,11 @@ module.exports={
|
|
155567
155933
|
"Location": {}
|
155568
155934
|
}
|
155569
155935
|
},
|
155570
|
-
"
|
155936
|
+
"S4x": {
|
155571
155937
|
"type": "string",
|
155572
155938
|
"sensitive": true
|
155573
155939
|
},
|
155574
|
-
"
|
155940
|
+
"S53": {
|
155575
155941
|
"type": "list",
|
155576
155942
|
"member": {
|
155577
155943
|
"type": "structure",
|
@@ -155585,7 +155951,7 @@ module.exports={
|
|
155585
155951
|
}
|
155586
155952
|
}
|
155587
155953
|
},
|
155588
|
-
"
|
155954
|
+
"S55": {
|
155589
155955
|
"type": "list",
|
155590
155956
|
"member": {
|
155591
155957
|
"type": "structure",
|
@@ -155594,19 +155960,19 @@ module.exports={
|
|
155594
155960
|
}
|
155595
155961
|
}
|
155596
155962
|
},
|
155597
|
-
"
|
155963
|
+
"S58": {
|
155598
155964
|
"type": "structure",
|
155599
155965
|
"members": {
|
155600
155966
|
"AllowedLocations": {
|
155601
|
-
"shape": "
|
155967
|
+
"shape": "S59"
|
155602
155968
|
}
|
155603
155969
|
}
|
155604
155970
|
},
|
155605
|
-
"
|
155971
|
+
"S59": {
|
155606
155972
|
"type": "list",
|
155607
155973
|
"member": {}
|
155608
155974
|
},
|
155609
|
-
"
|
155975
|
+
"S5a": {
|
155610
155976
|
"type": "structure",
|
155611
155977
|
"members": {
|
155612
155978
|
"PriorityOrder": {
|
@@ -155614,11 +155980,11 @@ module.exports={
|
|
155614
155980
|
"member": {}
|
155615
155981
|
},
|
155616
155982
|
"LocationOrder": {
|
155617
|
-
"shape": "
|
155983
|
+
"shape": "S59"
|
155618
155984
|
}
|
155619
155985
|
}
|
155620
155986
|
},
|
155621
|
-
"
|
155987
|
+
"S5g": {
|
155622
155988
|
"type": "structure",
|
155623
155989
|
"members": {
|
155624
155990
|
"Name": {},
|
@@ -155627,40 +155993,40 @@ module.exports={
|
|
155627
155993
|
"type": "integer"
|
155628
155994
|
},
|
155629
155995
|
"PlayerLatencyPolicies": {
|
155630
|
-
"shape": "
|
155996
|
+
"shape": "S53"
|
155631
155997
|
},
|
155632
155998
|
"Destinations": {
|
155633
|
-
"shape": "
|
155999
|
+
"shape": "S55"
|
155634
156000
|
},
|
155635
156001
|
"FilterConfiguration": {
|
155636
|
-
"shape": "
|
156002
|
+
"shape": "S58"
|
155637
156003
|
},
|
155638
156004
|
"PriorityConfiguration": {
|
155639
|
-
"shape": "
|
156005
|
+
"shape": "S5a"
|
155640
156006
|
},
|
155641
156007
|
"CustomEventData": {},
|
155642
156008
|
"NotificationTarget": {}
|
155643
156009
|
}
|
155644
156010
|
},
|
155645
|
-
"
|
156011
|
+
"S5l": {
|
155646
156012
|
"type": "structure",
|
155647
156013
|
"members": {
|
155648
156014
|
"LocationName": {},
|
155649
156015
|
"LocationArn": {}
|
155650
156016
|
}
|
155651
156017
|
},
|
155652
|
-
"
|
156018
|
+
"S5o": {
|
155653
156019
|
"type": "list",
|
155654
156020
|
"member": {}
|
155655
156021
|
},
|
155656
|
-
"
|
156022
|
+
"S5y": {
|
155657
156023
|
"type": "structure",
|
155658
156024
|
"members": {
|
155659
156025
|
"Name": {},
|
155660
156026
|
"ConfigurationArn": {},
|
155661
156027
|
"Description": {},
|
155662
156028
|
"GameSessionQueueArns": {
|
155663
|
-
"shape": "
|
156029
|
+
"shape": "S5o"
|
155664
156030
|
},
|
155665
156031
|
"RequestTimeoutSeconds": {
|
155666
156032
|
"type": "integer"
|
@@ -155682,14 +156048,14 @@ module.exports={
|
|
155682
156048
|
"type": "timestamp"
|
155683
156049
|
},
|
155684
156050
|
"GameProperties": {
|
155685
|
-
"shape": "
|
156051
|
+
"shape": "S4n"
|
155686
156052
|
},
|
155687
156053
|
"GameSessionData": {},
|
155688
156054
|
"BackfillMode": {},
|
155689
156055
|
"FlexMatchMode": {}
|
155690
156056
|
}
|
155691
156057
|
},
|
155692
|
-
"
|
156058
|
+
"S64": {
|
155693
156059
|
"type": "structure",
|
155694
156060
|
"required": [
|
155695
156061
|
"RuleSetBody"
|
@@ -155703,7 +156069,7 @@ module.exports={
|
|
155703
156069
|
}
|
155704
156070
|
}
|
155705
156071
|
},
|
155706
|
-
"
|
156072
|
+
"S68": {
|
155707
156073
|
"type": "structure",
|
155708
156074
|
"members": {
|
155709
156075
|
"PlayerSessionId": {},
|
@@ -155721,22 +156087,22 @@ module.exports={
|
|
155721
156087
|
},
|
155722
156088
|
"Status": {},
|
155723
156089
|
"IpAddress": {
|
155724
|
-
"shape": "
|
156090
|
+
"shape": "S4x"
|
155725
156091
|
},
|
155726
156092
|
"DnsName": {},
|
155727
156093
|
"Port": {
|
155728
|
-
"shape": "
|
156094
|
+
"shape": "S1s"
|
155729
156095
|
},
|
155730
156096
|
"PlayerData": {}
|
155731
156097
|
}
|
155732
156098
|
},
|
155733
|
-
"
|
156099
|
+
"S6f": {
|
155734
156100
|
"type": "list",
|
155735
156101
|
"member": {
|
155736
|
-
"shape": "
|
156102
|
+
"shape": "S68"
|
155737
156103
|
}
|
155738
156104
|
},
|
155739
|
-
"
|
156105
|
+
"S6j": {
|
155740
156106
|
"type": "structure",
|
155741
156107
|
"members": {
|
155742
156108
|
"ScriptId": {},
|
@@ -155754,7 +156120,7 @@ module.exports={
|
|
155754
156120
|
}
|
155755
156121
|
}
|
155756
156122
|
},
|
155757
|
-
"
|
156123
|
+
"S6m": {
|
155758
156124
|
"type": "structure",
|
155759
156125
|
"members": {
|
155760
156126
|
"GameLiftAwsAccountId": {},
|
@@ -155768,7 +156134,7 @@ module.exports={
|
|
155768
156134
|
}
|
155769
156135
|
}
|
155770
156136
|
},
|
155771
|
-
"
|
156137
|
+
"S7p": {
|
155772
156138
|
"type": "structure",
|
155773
156139
|
"members": {
|
155774
156140
|
"FleetId": {},
|
@@ -155776,7 +156142,7 @@ module.exports={
|
|
155776
156142
|
"ComputeName": {},
|
155777
156143
|
"ComputeArn": {},
|
155778
156144
|
"IpAddress": {
|
155779
|
-
"shape": "
|
156145
|
+
"shape": "S4x"
|
155780
156146
|
},
|
155781
156147
|
"DnsName": {},
|
155782
156148
|
"ComputeStatus": {},
|
@@ -155786,14 +156152,36 @@ module.exports={
|
|
155786
156152
|
},
|
155787
156153
|
"OperatingSystem": {},
|
155788
156154
|
"Type": {},
|
155789
|
-
"GameLiftServiceSdkEndpoint": {}
|
156155
|
+
"GameLiftServiceSdkEndpoint": {},
|
156156
|
+
"GameLiftAgentEndpoint": {},
|
156157
|
+
"InstanceId": {},
|
156158
|
+
"ContainerAttributes": {
|
156159
|
+
"type": "structure",
|
156160
|
+
"members": {
|
156161
|
+
"ContainerPortMappings": {
|
156162
|
+
"type": "list",
|
156163
|
+
"member": {
|
156164
|
+
"type": "structure",
|
156165
|
+
"members": {
|
156166
|
+
"ContainerPort": {
|
156167
|
+
"shape": "S1s"
|
156168
|
+
},
|
156169
|
+
"ConnectionPort": {
|
156170
|
+
"shape": "S1s"
|
156171
|
+
},
|
156172
|
+
"Protocol": {}
|
156173
|
+
}
|
156174
|
+
}
|
156175
|
+
}
|
156176
|
+
}
|
156177
|
+
}
|
155790
156178
|
}
|
155791
156179
|
},
|
155792
|
-
"
|
156180
|
+
"S86": {
|
155793
156181
|
"type": "list",
|
155794
156182
|
"member": {}
|
155795
156183
|
},
|
155796
|
-
"
|
156184
|
+
"S8c": {
|
155797
156185
|
"type": "structure",
|
155798
156186
|
"members": {
|
155799
156187
|
"FleetId": {},
|
@@ -155825,10 +156213,27 @@ module.exports={
|
|
155825
156213
|
}
|
155826
156214
|
}
|
155827
156215
|
},
|
155828
|
-
"Location": {}
|
156216
|
+
"Location": {},
|
156217
|
+
"ReplicaContainerGroupCounts": {
|
156218
|
+
"type": "structure",
|
156219
|
+
"members": {
|
156220
|
+
"PENDING": {
|
156221
|
+
"type": "integer"
|
156222
|
+
},
|
156223
|
+
"ACTIVE": {
|
156224
|
+
"type": "integer"
|
156225
|
+
},
|
156226
|
+
"IDLE": {
|
156227
|
+
"type": "integer"
|
156228
|
+
},
|
156229
|
+
"TERMINATING": {
|
156230
|
+
"type": "integer"
|
156231
|
+
}
|
156232
|
+
}
|
156233
|
+
}
|
155829
156234
|
}
|
155830
156235
|
},
|
155831
|
-
"
|
156236
|
+
"S8u": {
|
155832
156237
|
"type": "structure",
|
155833
156238
|
"members": {
|
155834
156239
|
"FleetId": {},
|
@@ -155848,14 +156253,14 @@ module.exports={
|
|
155848
156253
|
"Location": {}
|
155849
156254
|
}
|
155850
156255
|
},
|
155851
|
-
"
|
156256
|
+
"S9g": {
|
155852
156257
|
"type": "structure",
|
155853
156258
|
"members": {
|
155854
156259
|
"PlacementId": {},
|
155855
156260
|
"GameSessionQueueName": {},
|
155856
156261
|
"Status": {},
|
155857
156262
|
"GameProperties": {
|
155858
|
-
"shape": "
|
156263
|
+
"shape": "S4n"
|
155859
156264
|
},
|
155860
156265
|
"MaximumPlayerSessionCount": {
|
155861
156266
|
"type": "integer"
|
@@ -155865,7 +156270,7 @@ module.exports={
|
|
155865
156270
|
"GameSessionArn": {},
|
155866
156271
|
"GameSessionRegion": {},
|
155867
156272
|
"PlayerLatencies": {
|
155868
|
-
"shape": "
|
156273
|
+
"shape": "S9i"
|
155869
156274
|
},
|
155870
156275
|
"StartTime": {
|
155871
156276
|
"type": "timestamp"
|
@@ -155874,11 +156279,11 @@ module.exports={
|
|
155874
156279
|
"type": "timestamp"
|
155875
156280
|
},
|
155876
156281
|
"IpAddress": {
|
155877
|
-
"shape": "
|
156282
|
+
"shape": "S4x"
|
155878
156283
|
},
|
155879
156284
|
"DnsName": {},
|
155880
156285
|
"Port": {
|
155881
|
-
"shape": "
|
156286
|
+
"shape": "S1s"
|
155882
156287
|
},
|
155883
156288
|
"PlacedPlayerSessions": {
|
155884
156289
|
"type": "list",
|
@@ -155896,7 +156301,7 @@ module.exports={
|
|
155896
156301
|
"MatchmakerData": {}
|
155897
156302
|
}
|
155898
156303
|
},
|
155899
|
-
"
|
156304
|
+
"S9i": {
|
155900
156305
|
"type": "list",
|
155901
156306
|
"member": {
|
155902
156307
|
"type": "structure",
|
@@ -155911,13 +156316,13 @@ module.exports={
|
|
155911
156316
|
}
|
155912
156317
|
}
|
155913
156318
|
},
|
155914
|
-
"
|
156319
|
+
"S9t": {
|
155915
156320
|
"type": "list",
|
155916
156321
|
"member": {
|
155917
|
-
"shape": "
|
156322
|
+
"shape": "S4u"
|
155918
156323
|
}
|
155919
156324
|
},
|
155920
|
-
"
|
156325
|
+
"Sa3": {
|
155921
156326
|
"type": "structure",
|
155922
156327
|
"members": {
|
155923
156328
|
"TicketId": {},
|
@@ -155933,14 +156338,14 @@ module.exports={
|
|
155933
156338
|
"type": "timestamp"
|
155934
156339
|
},
|
155935
156340
|
"Players": {
|
155936
|
-
"shape": "
|
156341
|
+
"shape": "Sa6"
|
155937
156342
|
},
|
155938
156343
|
"GameSessionConnectionInfo": {
|
155939
156344
|
"type": "structure",
|
155940
156345
|
"members": {
|
155941
156346
|
"GameSessionArn": {},
|
155942
156347
|
"IpAddress": {
|
155943
|
-
"shape": "
|
156348
|
+
"shape": "S4x"
|
155944
156349
|
},
|
155945
156350
|
"DnsName": {},
|
155946
156351
|
"Port": {
|
@@ -155965,7 +156370,7 @@ module.exports={
|
|
155965
156370
|
}
|
155966
156371
|
}
|
155967
156372
|
},
|
155968
|
-
"
|
156373
|
+
"Sa6": {
|
155969
156374
|
"type": "list",
|
155970
156375
|
"member": {
|
155971
156376
|
"type": "structure",
|
@@ -156008,7 +156413,7 @@ module.exports={
|
|
156008
156413
|
}
|
156009
156414
|
}
|
156010
156415
|
},
|
156011
|
-
"
|
156416
|
+
"Sb6": {
|
156012
156417
|
"type": "structure",
|
156013
156418
|
"required": [
|
156014
156419
|
"TargetValue"
|
@@ -156125,6 +156530,12 @@ module.exports={
|
|
156125
156530
|
"limit_key": "Limit",
|
156126
156531
|
"result_key": "ComputeList"
|
156127
156532
|
},
|
156533
|
+
"ListContainerGroupDefinitions": {
|
156534
|
+
"input_token": "NextToken",
|
156535
|
+
"output_token": "NextToken",
|
156536
|
+
"limit_key": "Limit",
|
156537
|
+
"result_key": "ContainerGroupDefinitions"
|
156538
|
+
},
|
156128
156539
|
"ListFleets": {
|
156129
156540
|
"input_token": "NextToken",
|
156130
156541
|
"output_token": "NextToken",
|
@@ -205601,6 +206012,9 @@ module.exports={
|
|
205601
206012
|
"apiVersion": "2013-01-10",
|
205602
206013
|
"endpointPrefix": "rds",
|
205603
206014
|
"protocol": "query",
|
206015
|
+
"protocols": [
|
206016
|
+
"query"
|
206017
|
+
],
|
205604
206018
|
"serviceAbbreviation": "Amazon RDS",
|
205605
206019
|
"serviceFullName": "Amazon Relational Database Service",
|
205606
206020
|
"serviceId": "RDS",
|
@@ -207597,6 +208011,9 @@ module.exports={
|
|
207597
208011
|
"apiVersion": "2013-02-12",
|
207598
208012
|
"endpointPrefix": "rds",
|
207599
208013
|
"protocol": "query",
|
208014
|
+
"protocols": [
|
208015
|
+
"query"
|
208016
|
+
],
|
207600
208017
|
"serviceAbbreviation": "Amazon RDS",
|
207601
208018
|
"serviceFullName": "Amazon Relational Database Service",
|
207602
208019
|
"serviceId": "RDS",
|
@@ -209738,6 +210155,9 @@ module.exports={
|
|
209738
210155
|
"apiVersion": "2013-09-09",
|
209739
210156
|
"endpointPrefix": "rds",
|
209740
210157
|
"protocol": "query",
|
210158
|
+
"protocols": [
|
210159
|
+
"query"
|
210160
|
+
],
|
209741
210161
|
"serviceAbbreviation": "Amazon RDS",
|
209742
210162
|
"serviceFullName": "Amazon Relational Database Service",
|
209743
210163
|
"serviceId": "RDS",
|
@@ -212005,6 +212425,9 @@ module.exports={
|
|
212005
212425
|
"apiVersion": "2014-09-01",
|
212006
212426
|
"endpointPrefix": "rds",
|
212007
212427
|
"protocol": "query",
|
212428
|
+
"protocols": [
|
212429
|
+
"query"
|
212430
|
+
],
|
212008
212431
|
"serviceAbbreviation": "Amazon RDS",
|
212009
212432
|
"serviceFullName": "Amazon Relational Database Service",
|
212010
212433
|
"serviceId": "RDS",
|
@@ -214246,6 +214669,9 @@ module.exports={
|
|
214246
214669
|
"apiVersion": "2014-10-31",
|
214247
214670
|
"endpointPrefix": "rds",
|
214248
214671
|
"protocol": "query",
|
214672
|
+
"protocols": [
|
214673
|
+
"query"
|
214674
|
+
],
|
214249
214675
|
"serviceAbbreviation": "Amazon RDS",
|
214250
214676
|
"serviceFullName": "Amazon Relational Database Service",
|
214251
214677
|
"serviceId": "RDS",
|
@@ -251823,6 +252249,9 @@ module.exports={
|
|
251823
252249
|
"endpointPrefix": "ssm",
|
251824
252250
|
"jsonVersion": "1.1",
|
251825
252251
|
"protocol": "json",
|
252252
|
+
"protocols": [
|
252253
|
+
"json"
|
252254
|
+
],
|
251826
252255
|
"serviceAbbreviation": "Amazon SSM",
|
251827
252256
|
"serviceFullName": "Amazon Simple Systems Manager (SSM)",
|
251828
252257
|
"serviceId": "SSM",
|
@@ -253201,17 +253630,7 @@ module.exports={
|
|
253201
253630
|
"type": "timestamp"
|
253202
253631
|
},
|
253203
253632
|
"AssociationOverview": {
|
253204
|
-
"
|
253205
|
-
"members": {
|
253206
|
-
"DetailedStatus": {},
|
253207
|
-
"InstanceAssociationStatusAggregatedCount": {
|
253208
|
-
"type": "map",
|
253209
|
-
"key": {},
|
253210
|
-
"value": {
|
253211
|
-
"type": "integer"
|
253212
|
-
}
|
253213
|
-
}
|
253214
|
-
}
|
253633
|
+
"shape": "Scr"
|
253215
253634
|
},
|
253216
253635
|
"SourceId": {},
|
253217
253636
|
"SourceType": {}
|
@@ -253346,6 +253765,102 @@ module.exports={
|
|
253346
253765
|
}
|
253347
253766
|
}
|
253348
253767
|
},
|
253768
|
+
"DescribeInstanceProperties": {
|
253769
|
+
"input": {
|
253770
|
+
"type": "structure",
|
253771
|
+
"members": {
|
253772
|
+
"InstancePropertyFilterList": {
|
253773
|
+
"type": "list",
|
253774
|
+
"member": {
|
253775
|
+
"type": "structure",
|
253776
|
+
"required": [
|
253777
|
+
"key",
|
253778
|
+
"valueSet"
|
253779
|
+
],
|
253780
|
+
"members": {
|
253781
|
+
"key": {},
|
253782
|
+
"valueSet": {
|
253783
|
+
"shape": "Sdz"
|
253784
|
+
}
|
253785
|
+
}
|
253786
|
+
}
|
253787
|
+
},
|
253788
|
+
"FiltersWithOperator": {
|
253789
|
+
"type": "list",
|
253790
|
+
"member": {
|
253791
|
+
"type": "structure",
|
253792
|
+
"required": [
|
253793
|
+
"Key",
|
253794
|
+
"Values"
|
253795
|
+
],
|
253796
|
+
"members": {
|
253797
|
+
"Key": {},
|
253798
|
+
"Values": {
|
253799
|
+
"shape": "Sdz"
|
253800
|
+
},
|
253801
|
+
"Operator": {}
|
253802
|
+
}
|
253803
|
+
}
|
253804
|
+
},
|
253805
|
+
"MaxResults": {
|
253806
|
+
"type": "integer"
|
253807
|
+
},
|
253808
|
+
"NextToken": {}
|
253809
|
+
}
|
253810
|
+
},
|
253811
|
+
"output": {
|
253812
|
+
"type": "structure",
|
253813
|
+
"members": {
|
253814
|
+
"InstanceProperties": {
|
253815
|
+
"type": "list",
|
253816
|
+
"member": {
|
253817
|
+
"type": "structure",
|
253818
|
+
"members": {
|
253819
|
+
"Name": {},
|
253820
|
+
"InstanceId": {},
|
253821
|
+
"InstanceType": {},
|
253822
|
+
"InstanceRole": {},
|
253823
|
+
"KeyName": {},
|
253824
|
+
"InstanceState": {},
|
253825
|
+
"Architecture": {},
|
253826
|
+
"IPAddress": {},
|
253827
|
+
"LaunchTime": {
|
253828
|
+
"type": "timestamp"
|
253829
|
+
},
|
253830
|
+
"PingStatus": {},
|
253831
|
+
"LastPingDateTime": {
|
253832
|
+
"type": "timestamp"
|
253833
|
+
},
|
253834
|
+
"AgentVersion": {},
|
253835
|
+
"PlatformType": {},
|
253836
|
+
"PlatformName": {},
|
253837
|
+
"PlatformVersion": {},
|
253838
|
+
"ActivationId": {},
|
253839
|
+
"IamRole": {},
|
253840
|
+
"RegistrationDate": {
|
253841
|
+
"type": "timestamp"
|
253842
|
+
},
|
253843
|
+
"ResourceType": {},
|
253844
|
+
"ComputerName": {},
|
253845
|
+
"AssociationStatus": {},
|
253846
|
+
"LastAssociationExecutionDate": {
|
253847
|
+
"type": "timestamp"
|
253848
|
+
},
|
253849
|
+
"LastSuccessfulAssociationExecutionDate": {
|
253850
|
+
"type": "timestamp"
|
253851
|
+
},
|
253852
|
+
"AssociationOverview": {
|
253853
|
+
"shape": "Scr"
|
253854
|
+
},
|
253855
|
+
"SourceId": {},
|
253856
|
+
"SourceType": {}
|
253857
|
+
}
|
253858
|
+
}
|
253859
|
+
},
|
253860
|
+
"NextToken": {}
|
253861
|
+
}
|
253862
|
+
}
|
253863
|
+
},
|
253349
253864
|
"DescribeInventoryDeletions": {
|
253350
253865
|
"input": {
|
253351
253866
|
"type": "structure",
|
@@ -253396,7 +253911,7 @@ module.exports={
|
|
253396
253911
|
"WindowExecutionId": {},
|
253397
253912
|
"TaskId": {},
|
253398
253913
|
"Filters": {
|
253399
|
-
"shape": "
|
253914
|
+
"shape": "Ser"
|
253400
253915
|
},
|
253401
253916
|
"MaxResults": {
|
253402
253917
|
"type": "integer"
|
@@ -253418,7 +253933,7 @@ module.exports={
|
|
253418
253933
|
"ExecutionId": {},
|
253419
253934
|
"TaskType": {},
|
253420
253935
|
"Parameters": {
|
253421
|
-
"shape": "
|
253936
|
+
"shape": "Sf3"
|
253422
253937
|
},
|
253423
253938
|
"Status": {},
|
253424
253939
|
"StatusDetails": {},
|
@@ -253448,7 +253963,7 @@ module.exports={
|
|
253448
253963
|
"members": {
|
253449
253964
|
"WindowExecutionId": {},
|
253450
253965
|
"Filters": {
|
253451
|
-
"shape": "
|
253966
|
+
"shape": "Ser"
|
253452
253967
|
},
|
253453
253968
|
"MaxResults": {
|
253454
253969
|
"type": "integer"
|
@@ -253498,7 +254013,7 @@ module.exports={
|
|
253498
254013
|
"members": {
|
253499
254014
|
"WindowId": {},
|
253500
254015
|
"Filters": {
|
253501
|
-
"shape": "
|
254016
|
+
"shape": "Ser"
|
253502
254017
|
},
|
253503
254018
|
"MaxResults": {
|
253504
254019
|
"type": "integer"
|
@@ -253576,7 +254091,7 @@ module.exports={
|
|
253576
254091
|
"members": {
|
253577
254092
|
"WindowId": {},
|
253578
254093
|
"Filters": {
|
253579
|
-
"shape": "
|
254094
|
+
"shape": "Ser"
|
253580
254095
|
},
|
253581
254096
|
"MaxResults": {
|
253582
254097
|
"type": "integer"
|
@@ -253621,7 +254136,7 @@ module.exports={
|
|
253621
254136
|
"members": {
|
253622
254137
|
"WindowId": {},
|
253623
254138
|
"Filters": {
|
253624
|
-
"shape": "
|
254139
|
+
"shape": "Ser"
|
253625
254140
|
},
|
253626
254141
|
"MaxResults": {
|
253627
254142
|
"type": "integer"
|
@@ -253645,13 +254160,13 @@ module.exports={
|
|
253645
254160
|
"shape": "S18"
|
253646
254161
|
},
|
253647
254162
|
"TaskParameters": {
|
253648
|
-
"shape": "
|
254163
|
+
"shape": "Sfu"
|
253649
254164
|
},
|
253650
254165
|
"Priority": {
|
253651
254166
|
"type": "integer"
|
253652
254167
|
},
|
253653
254168
|
"LoggingInfo": {
|
253654
|
-
"shape": "
|
254169
|
+
"shape": "Sg0"
|
253655
254170
|
},
|
253656
254171
|
"ServiceRoleArn": {},
|
253657
254172
|
"MaxConcurrency": {},
|
@@ -253676,7 +254191,7 @@ module.exports={
|
|
253676
254191
|
"type": "structure",
|
253677
254192
|
"members": {
|
253678
254193
|
"Filters": {
|
253679
|
-
"shape": "
|
254194
|
+
"shape": "Ser"
|
253680
254195
|
},
|
253681
254196
|
"MaxResults": {
|
253682
254197
|
"type": "integer"
|
@@ -253855,7 +254370,7 @@ module.exports={
|
|
253855
254370
|
}
|
253856
254371
|
},
|
253857
254372
|
"ParameterFilters": {
|
253858
|
-
"shape": "
|
254373
|
+
"shape": "Sgu"
|
253859
254374
|
},
|
253860
254375
|
"MaxResults": {
|
253861
254376
|
"type": "integer"
|
@@ -253889,7 +254404,7 @@ module.exports={
|
|
253889
254404
|
},
|
253890
254405
|
"Tier": {},
|
253891
254406
|
"Policies": {
|
253892
|
-
"shape": "
|
254407
|
+
"shape": "Sh9"
|
253893
254408
|
},
|
253894
254409
|
"DataType": {}
|
253895
254410
|
}
|
@@ -253918,7 +254433,7 @@ module.exports={
|
|
253918
254433
|
"BaselineIdentities": {
|
253919
254434
|
"type": "list",
|
253920
254435
|
"member": {
|
253921
|
-
"shape": "
|
254436
|
+
"shape": "Shf"
|
253922
254437
|
}
|
253923
254438
|
},
|
253924
254439
|
"NextToken": {}
|
@@ -254000,7 +254515,7 @@ module.exports={
|
|
254000
254515
|
"members": {
|
254001
254516
|
"PatchGroup": {},
|
254002
254517
|
"BaselineIdentity": {
|
254003
|
-
"shape": "
|
254518
|
+
"shape": "Shf"
|
254004
254519
|
}
|
254005
254520
|
}
|
254006
254521
|
}
|
@@ -254283,7 +254798,7 @@ module.exports={
|
|
254283
254798
|
"StandardErrorContent": {},
|
254284
254799
|
"StandardErrorUrl": {},
|
254285
254800
|
"CloudWatchOutputConfig": {
|
254286
|
-
"shape": "
|
254801
|
+
"shape": "Sj0"
|
254287
254802
|
}
|
254288
254803
|
}
|
254289
254804
|
}
|
@@ -254424,10 +254939,10 @@ module.exports={
|
|
254424
254939
|
"type": "structure",
|
254425
254940
|
"members": {
|
254426
254941
|
"Filters": {
|
254427
|
-
"shape": "
|
254942
|
+
"shape": "Sjm"
|
254428
254943
|
},
|
254429
254944
|
"Aggregators": {
|
254430
|
-
"shape": "
|
254945
|
+
"shape": "Sjs"
|
254431
254946
|
},
|
254432
254947
|
"ResultAttributes": {
|
254433
254948
|
"type": "list",
|
@@ -254472,7 +254987,7 @@ module.exports={
|
|
254472
254987
|
"CaptureTime": {},
|
254473
254988
|
"ContentHash": {},
|
254474
254989
|
"Content": {
|
254475
|
-
"shape": "
|
254990
|
+
"shape": "Sk9"
|
254476
254991
|
}
|
254477
254992
|
}
|
254478
254993
|
}
|
@@ -254636,7 +255151,7 @@ module.exports={
|
|
254636
255151
|
"TaskParameters": {
|
254637
255152
|
"type": "list",
|
254638
255153
|
"member": {
|
254639
|
-
"shape": "
|
255154
|
+
"shape": "Sfu"
|
254640
255155
|
},
|
254641
255156
|
"sensitive": true
|
254642
255157
|
},
|
@@ -254685,7 +255200,7 @@ module.exports={
|
|
254685
255200
|
"ExecutionId": {},
|
254686
255201
|
"TaskType": {},
|
254687
255202
|
"Parameters": {
|
254688
|
-
"shape": "
|
255203
|
+
"shape": "Sf3"
|
254689
255204
|
},
|
254690
255205
|
"Status": {},
|
254691
255206
|
"StatusDetails": {},
|
@@ -254726,10 +255241,10 @@ module.exports={
|
|
254726
255241
|
"ServiceRoleArn": {},
|
254727
255242
|
"TaskType": {},
|
254728
255243
|
"TaskParameters": {
|
254729
|
-
"shape": "
|
255244
|
+
"shape": "Sfu"
|
254730
255245
|
},
|
254731
255246
|
"TaskInvocationParameters": {
|
254732
|
-
"shape": "
|
255247
|
+
"shape": "Sl0"
|
254733
255248
|
},
|
254734
255249
|
"Priority": {
|
254735
255250
|
"type": "integer"
|
@@ -254737,7 +255252,7 @@ module.exports={
|
|
254737
255252
|
"MaxConcurrency": {},
|
254738
255253
|
"MaxErrors": {},
|
254739
255254
|
"LoggingInfo": {
|
254740
|
-
"shape": "
|
255255
|
+
"shape": "Sg0"
|
254741
255256
|
},
|
254742
255257
|
"Name": {},
|
254743
255258
|
"Description": {
|
@@ -254845,10 +255360,10 @@ module.exports={
|
|
254845
255360
|
"members": {
|
254846
255361
|
"SyncName": {},
|
254847
255362
|
"Filters": {
|
254848
|
-
"shape": "
|
255363
|
+
"shape": "Sln"
|
254849
255364
|
},
|
254850
255365
|
"Aggregators": {
|
254851
|
-
"shape": "
|
255366
|
+
"shape": "Slt"
|
254852
255367
|
},
|
254853
255368
|
"ResultAttributes": {
|
254854
255369
|
"type": "list",
|
@@ -254919,7 +255434,7 @@ module.exports={
|
|
254919
255434
|
"type": "structure",
|
254920
255435
|
"members": {
|
254921
255436
|
"Parameter": {
|
254922
|
-
"shape": "
|
255437
|
+
"shape": "Smf"
|
254923
255438
|
}
|
254924
255439
|
}
|
254925
255440
|
}
|
@@ -254958,18 +255473,18 @@ module.exports={
|
|
254958
255473
|
"LastModifiedUser": {},
|
254959
255474
|
"Description": {},
|
254960
255475
|
"Value": {
|
254961
|
-
"shape": "
|
255476
|
+
"shape": "Smg"
|
254962
255477
|
},
|
254963
255478
|
"AllowedPattern": {},
|
254964
255479
|
"Version": {
|
254965
255480
|
"type": "long"
|
254966
255481
|
},
|
254967
255482
|
"Labels": {
|
254968
|
-
"shape": "
|
255483
|
+
"shape": "Smm"
|
254969
255484
|
},
|
254970
255485
|
"Tier": {},
|
254971
255486
|
"Policies": {
|
254972
|
-
"shape": "
|
255487
|
+
"shape": "Sh9"
|
254973
255488
|
},
|
254974
255489
|
"DataType": {}
|
254975
255490
|
}
|
@@ -254998,7 +255513,7 @@ module.exports={
|
|
254998
255513
|
"type": "structure",
|
254999
255514
|
"members": {
|
255000
255515
|
"Parameters": {
|
255001
|
-
"shape": "
|
255516
|
+
"shape": "Smq"
|
255002
255517
|
},
|
255003
255518
|
"InvalidParameters": {
|
255004
255519
|
"shape": "S7n"
|
@@ -255018,7 +255533,7 @@ module.exports={
|
|
255018
255533
|
"type": "boolean"
|
255019
255534
|
},
|
255020
255535
|
"ParameterFilters": {
|
255021
|
-
"shape": "
|
255536
|
+
"shape": "Sgu"
|
255022
255537
|
},
|
255023
255538
|
"WithDecryption": {
|
255024
255539
|
"type": "boolean"
|
@@ -255033,7 +255548,7 @@ module.exports={
|
|
255033
255548
|
"type": "structure",
|
255034
255549
|
"members": {
|
255035
255550
|
"Parameters": {
|
255036
|
-
"shape": "
|
255551
|
+
"shape": "Smq"
|
255037
255552
|
},
|
255038
255553
|
"NextToken": {}
|
255039
255554
|
}
|
@@ -255155,7 +255670,7 @@ module.exports={
|
|
255155
255670
|
"type": "structure",
|
255156
255671
|
"members": {
|
255157
255672
|
"ServiceSetting": {
|
255158
|
-
"shape": "
|
255673
|
+
"shape": "Sn8"
|
255159
255674
|
}
|
255160
255675
|
}
|
255161
255676
|
}
|
@@ -255173,7 +255688,7 @@ module.exports={
|
|
255173
255688
|
"type": "long"
|
255174
255689
|
},
|
255175
255690
|
"Labels": {
|
255176
|
-
"shape": "
|
255691
|
+
"shape": "Smm"
|
255177
255692
|
}
|
255178
255693
|
}
|
255179
255694
|
},
|
@@ -255181,7 +255696,7 @@ module.exports={
|
|
255181
255696
|
"type": "structure",
|
255182
255697
|
"members": {
|
255183
255698
|
"InvalidLabels": {
|
255184
|
-
"shape": "
|
255699
|
+
"shape": "Smm"
|
255185
255700
|
},
|
255186
255701
|
"ParameterVersion": {
|
255187
255702
|
"type": "long"
|
@@ -255333,7 +255848,7 @@ module.exports={
|
|
255333
255848
|
},
|
255334
255849
|
"NextToken": {},
|
255335
255850
|
"Filters": {
|
255336
|
-
"shape": "
|
255851
|
+
"shape": "Snq"
|
255337
255852
|
},
|
255338
255853
|
"Details": {
|
255339
255854
|
"type": "boolean"
|
@@ -255390,10 +255905,10 @@ module.exports={
|
|
255390
255905
|
},
|
255391
255906
|
"ServiceRole": {},
|
255392
255907
|
"NotificationConfig": {
|
255393
|
-
"shape": "
|
255908
|
+
"shape": "Sl2"
|
255394
255909
|
},
|
255395
255910
|
"CloudWatchOutputConfig": {
|
255396
|
-
"shape": "
|
255911
|
+
"shape": "Sj0"
|
255397
255912
|
}
|
255398
255913
|
}
|
255399
255914
|
}
|
@@ -255413,7 +255928,7 @@ module.exports={
|
|
255413
255928
|
},
|
255414
255929
|
"NextToken": {},
|
255415
255930
|
"Filters": {
|
255416
|
-
"shape": "
|
255931
|
+
"shape": "Snq"
|
255417
255932
|
}
|
255418
255933
|
}
|
255419
255934
|
},
|
@@ -255423,7 +255938,7 @@ module.exports={
|
|
255423
255938
|
"Commands": {
|
255424
255939
|
"type": "list",
|
255425
255940
|
"member": {
|
255426
|
-
"shape": "
|
255941
|
+
"shape": "So6"
|
255427
255942
|
}
|
255428
255943
|
},
|
255429
255944
|
"NextToken": {}
|
@@ -255435,7 +255950,7 @@ module.exports={
|
|
255435
255950
|
"type": "structure",
|
255436
255951
|
"members": {
|
255437
255952
|
"Filters": {
|
255438
|
-
"shape": "
|
255953
|
+
"shape": "Sod"
|
255439
255954
|
},
|
255440
255955
|
"ResourceIds": {
|
255441
255956
|
"type": "list",
|
@@ -255467,10 +255982,10 @@ module.exports={
|
|
255467
255982
|
"Status": {},
|
255468
255983
|
"Severity": {},
|
255469
255984
|
"ExecutionSummary": {
|
255470
|
-
"shape": "
|
255985
|
+
"shape": "Sov"
|
255471
255986
|
},
|
255472
255987
|
"Details": {
|
255473
|
-
"shape": "
|
255988
|
+
"shape": "Soy"
|
255474
255989
|
}
|
255475
255990
|
}
|
255476
255991
|
}
|
@@ -255484,7 +255999,7 @@ module.exports={
|
|
255484
255999
|
"type": "structure",
|
255485
256000
|
"members": {
|
255486
256001
|
"Filters": {
|
255487
|
-
"shape": "
|
256002
|
+
"shape": "Sod"
|
255488
256003
|
},
|
255489
256004
|
"NextToken": {},
|
255490
256005
|
"MaxResults": {
|
@@ -255502,10 +256017,10 @@ module.exports={
|
|
255502
256017
|
"members": {
|
255503
256018
|
"ComplianceType": {},
|
255504
256019
|
"CompliantSummary": {
|
255505
|
-
"shape": "
|
256020
|
+
"shape": "Sp3"
|
255506
256021
|
},
|
255507
256022
|
"NonCompliantSummary": {
|
255508
|
-
"shape": "
|
256023
|
+
"shape": "Sp6"
|
255509
256024
|
}
|
255510
256025
|
}
|
255511
256026
|
}
|
@@ -255553,7 +256068,7 @@ module.exports={
|
|
255553
256068
|
},
|
255554
256069
|
"ReviewStatus": {},
|
255555
256070
|
"Comment": {
|
255556
|
-
"shape": "
|
256071
|
+
"shape": "Spd"
|
255557
256072
|
},
|
255558
256073
|
"Reviewer": {}
|
255559
256074
|
}
|
@@ -255694,7 +256209,7 @@ module.exports={
|
|
255694
256209
|
"InstanceId": {},
|
255695
256210
|
"TypeName": {},
|
255696
256211
|
"Filters": {
|
255697
|
-
"shape": "
|
256212
|
+
"shape": "Sjm"
|
255698
256213
|
},
|
255699
256214
|
"NextToken": {},
|
255700
256215
|
"MaxResults": {
|
@@ -255710,7 +256225,7 @@ module.exports={
|
|
255710
256225
|
"SchemaVersion": {},
|
255711
256226
|
"CaptureTime": {},
|
255712
256227
|
"Entries": {
|
255713
|
-
"shape": "
|
256228
|
+
"shape": "Sk9"
|
255714
256229
|
},
|
255715
256230
|
"NextToken": {}
|
255716
256231
|
}
|
@@ -255760,7 +256275,7 @@ module.exports={
|
|
255760
256275
|
"DetailType": {},
|
255761
256276
|
"Detail": {},
|
255762
256277
|
"CreatedBy": {
|
255763
|
-
"shape": "
|
256278
|
+
"shape": "Sqb"
|
255764
256279
|
},
|
255765
256280
|
"CreatedTime": {
|
255766
256281
|
"type": "timestamp"
|
@@ -255816,13 +256331,13 @@ module.exports={
|
|
255816
256331
|
"AssociationType": {},
|
255817
256332
|
"ResourceUri": {},
|
255818
256333
|
"CreatedBy": {
|
255819
|
-
"shape": "
|
256334
|
+
"shape": "Sqb"
|
255820
256335
|
},
|
255821
256336
|
"CreatedTime": {
|
255822
256337
|
"type": "timestamp"
|
255823
256338
|
},
|
255824
256339
|
"LastModifiedBy": {
|
255825
|
-
"shape": "
|
256340
|
+
"shape": "Sqb"
|
255826
256341
|
},
|
255827
256342
|
"LastModifiedTime": {
|
255828
256343
|
"type": "timestamp"
|
@@ -255889,7 +256404,7 @@ module.exports={
|
|
255889
256404
|
"type": "structure",
|
255890
256405
|
"members": {
|
255891
256406
|
"Filters": {
|
255892
|
-
"shape": "
|
256407
|
+
"shape": "Sod"
|
255893
256408
|
},
|
255894
256409
|
"NextToken": {},
|
255895
256410
|
"MaxResults": {
|
@@ -255911,13 +256426,13 @@ module.exports={
|
|
255911
256426
|
"Status": {},
|
255912
256427
|
"OverallSeverity": {},
|
255913
256428
|
"ExecutionSummary": {
|
255914
|
-
"shape": "
|
256429
|
+
"shape": "Sov"
|
255915
256430
|
},
|
255916
256431
|
"CompliantSummary": {
|
255917
|
-
"shape": "
|
256432
|
+
"shape": "Sp3"
|
255918
256433
|
},
|
255919
256434
|
"NonCompliantSummary": {
|
255920
|
-
"shape": "
|
256435
|
+
"shape": "Sp6"
|
255921
256436
|
}
|
255922
256437
|
}
|
255923
256438
|
}
|
@@ -256050,7 +256565,7 @@ module.exports={
|
|
256050
256565
|
"ResourceType": {},
|
256051
256566
|
"ComplianceType": {},
|
256052
256567
|
"ExecutionSummary": {
|
256053
|
-
"shape": "
|
256568
|
+
"shape": "Sov"
|
256054
256569
|
},
|
256055
256570
|
"Items": {
|
256056
256571
|
"type": "list",
|
@@ -256066,7 +256581,7 @@ module.exports={
|
|
256066
256581
|
"Severity": {},
|
256067
256582
|
"Status": {},
|
256068
256583
|
"Details": {
|
256069
|
-
"shape": "
|
256584
|
+
"shape": "Soy"
|
256070
256585
|
}
|
256071
256586
|
}
|
256072
256587
|
}
|
@@ -256104,7 +256619,7 @@ module.exports={
|
|
256104
256619
|
"CaptureTime": {},
|
256105
256620
|
"ContentHash": {},
|
256106
256621
|
"Content": {
|
256107
|
-
"shape": "
|
256622
|
+
"shape": "Sk9"
|
256108
256623
|
},
|
256109
256624
|
"Context": {
|
256110
256625
|
"type": "map",
|
@@ -256134,7 +256649,7 @@ module.exports={
|
|
256134
256649
|
"Name": {},
|
256135
256650
|
"Description": {},
|
256136
256651
|
"Value": {
|
256137
|
-
"shape": "
|
256652
|
+
"shape": "Smg"
|
256138
256653
|
},
|
256139
256654
|
"Type": {},
|
256140
256655
|
"KeyId": {},
|
@@ -256269,10 +256784,10 @@ module.exports={
|
|
256269
256784
|
"ServiceRoleArn": {},
|
256270
256785
|
"TaskType": {},
|
256271
256786
|
"TaskParameters": {
|
256272
|
-
"shape": "
|
256787
|
+
"shape": "Sfu"
|
256273
256788
|
},
|
256274
256789
|
"TaskInvocationParameters": {
|
256275
|
-
"shape": "
|
256790
|
+
"shape": "Sl0"
|
256276
256791
|
},
|
256277
256792
|
"Priority": {
|
256278
256793
|
"type": "integer"
|
@@ -256280,7 +256795,7 @@ module.exports={
|
|
256280
256795
|
"MaxConcurrency": {},
|
256281
256796
|
"MaxErrors": {},
|
256282
256797
|
"LoggingInfo": {
|
256283
|
-
"shape": "
|
256798
|
+
"shape": "Sg0"
|
256284
256799
|
},
|
256285
256800
|
"Name": {},
|
256286
256801
|
"Description": {
|
@@ -256338,7 +256853,7 @@ module.exports={
|
|
256338
256853
|
"type": "structure",
|
256339
256854
|
"members": {
|
256340
256855
|
"ServiceSetting": {
|
256341
|
-
"shape": "
|
256856
|
+
"shape": "Sn8"
|
256342
256857
|
}
|
256343
256858
|
}
|
256344
256859
|
}
|
@@ -256413,10 +256928,10 @@ module.exports={
|
|
256413
256928
|
"MaxErrors": {},
|
256414
256929
|
"ServiceRoleArn": {},
|
256415
256930
|
"NotificationConfig": {
|
256416
|
-
"shape": "
|
256931
|
+
"shape": "Sl2"
|
256417
256932
|
},
|
256418
256933
|
"CloudWatchOutputConfig": {
|
256419
|
-
"shape": "
|
256934
|
+
"shape": "Sj0"
|
256420
256935
|
},
|
256421
256936
|
"AlarmConfiguration": {
|
256422
256937
|
"shape": "S1z"
|
@@ -256427,7 +256942,7 @@ module.exports={
|
|
256427
256942
|
"type": "structure",
|
256428
256943
|
"members": {
|
256429
256944
|
"Command": {
|
256430
|
-
"shape": "
|
256945
|
+
"shape": "So6"
|
256431
256946
|
}
|
256432
256947
|
}
|
256433
256948
|
}
|
@@ -256607,7 +257122,7 @@ module.exports={
|
|
256607
257122
|
"type": "long"
|
256608
257123
|
},
|
256609
257124
|
"Labels": {
|
256610
|
-
"shape": "
|
257125
|
+
"shape": "Smm"
|
256611
257126
|
}
|
256612
257127
|
}
|
256613
257128
|
},
|
@@ -256615,10 +257130,10 @@ module.exports={
|
|
256615
257130
|
"type": "structure",
|
256616
257131
|
"members": {
|
256617
257132
|
"RemovedLabels": {
|
256618
|
-
"shape": "
|
257133
|
+
"shape": "Smm"
|
256619
257134
|
},
|
256620
257135
|
"InvalidLabels": {
|
256621
|
-
"shape": "
|
257136
|
+
"shape": "Smm"
|
256622
257137
|
}
|
256623
257138
|
}
|
256624
257139
|
}
|
@@ -256780,7 +257295,7 @@ module.exports={
|
|
256780
257295
|
"members": {
|
256781
257296
|
"Action": {},
|
256782
257297
|
"Comment": {
|
256783
|
-
"shape": "
|
257298
|
+
"shape": "Spd"
|
256784
257299
|
}
|
256785
257300
|
}
|
256786
257301
|
}
|
@@ -256916,10 +257431,10 @@ module.exports={
|
|
256916
257431
|
"TaskArn": {},
|
256917
257432
|
"ServiceRoleArn": {},
|
256918
257433
|
"TaskParameters": {
|
256919
|
-
"shape": "
|
257434
|
+
"shape": "Sfu"
|
256920
257435
|
},
|
256921
257436
|
"TaskInvocationParameters": {
|
256922
|
-
"shape": "
|
257437
|
+
"shape": "Sl0"
|
256923
257438
|
},
|
256924
257439
|
"Priority": {
|
256925
257440
|
"type": "integer"
|
@@ -256927,7 +257442,7 @@ module.exports={
|
|
256927
257442
|
"MaxConcurrency": {},
|
256928
257443
|
"MaxErrors": {},
|
256929
257444
|
"LoggingInfo": {
|
256930
|
-
"shape": "
|
257445
|
+
"shape": "Sg0"
|
256931
257446
|
},
|
256932
257447
|
"Name": {},
|
256933
257448
|
"Description": {
|
@@ -256953,10 +257468,10 @@ module.exports={
|
|
256953
257468
|
"TaskArn": {},
|
256954
257469
|
"ServiceRoleArn": {},
|
256955
257470
|
"TaskParameters": {
|
256956
|
-
"shape": "
|
257471
|
+
"shape": "Sfu"
|
256957
257472
|
},
|
256958
257473
|
"TaskInvocationParameters": {
|
256959
|
-
"shape": "
|
257474
|
+
"shape": "Sl0"
|
256960
257475
|
},
|
256961
257476
|
"Priority": {
|
256962
257477
|
"type": "integer"
|
@@ -256964,7 +257479,7 @@ module.exports={
|
|
256964
257479
|
"MaxConcurrency": {},
|
256965
257480
|
"MaxErrors": {},
|
256966
257481
|
"LoggingInfo": {
|
256967
|
-
"shape": "
|
257482
|
+
"shape": "Sg0"
|
256968
257483
|
},
|
256969
257484
|
"Name": {},
|
256970
257485
|
"Description": {
|
@@ -257980,6 +258495,19 @@ module.exports={
|
|
257980
258495
|
"type": "list",
|
257981
258496
|
"member": {}
|
257982
258497
|
},
|
258498
|
+
"Scr": {
|
258499
|
+
"type": "structure",
|
258500
|
+
"members": {
|
258501
|
+
"DetailedStatus": {},
|
258502
|
+
"InstanceAssociationStatusAggregatedCount": {
|
258503
|
+
"type": "map",
|
258504
|
+
"key": {},
|
258505
|
+
"value": {
|
258506
|
+
"type": "integer"
|
258507
|
+
}
|
258508
|
+
}
|
258509
|
+
}
|
258510
|
+
},
|
257983
258511
|
"Scz": {
|
257984
258512
|
"type": "structure",
|
257985
258513
|
"required": [
|
@@ -258049,7 +258577,11 @@ module.exports={
|
|
258049
258577
|
"type": "string",
|
258050
258578
|
"sensitive": true
|
258051
258579
|
},
|
258052
|
-
"
|
258580
|
+
"Sdz": {
|
258581
|
+
"type": "list",
|
258582
|
+
"member": {}
|
258583
|
+
},
|
258584
|
+
"Ser": {
|
258053
258585
|
"type": "list",
|
258054
258586
|
"member": {
|
258055
258587
|
"type": "structure",
|
@@ -258062,11 +258594,11 @@ module.exports={
|
|
258062
258594
|
}
|
258063
258595
|
}
|
258064
258596
|
},
|
258065
|
-
"
|
258597
|
+
"Sf3": {
|
258066
258598
|
"type": "string",
|
258067
258599
|
"sensitive": true
|
258068
258600
|
},
|
258069
|
-
"
|
258601
|
+
"Sfu": {
|
258070
258602
|
"type": "map",
|
258071
258603
|
"key": {},
|
258072
258604
|
"value": {
|
@@ -258085,7 +258617,7 @@ module.exports={
|
|
258085
258617
|
},
|
258086
258618
|
"sensitive": true
|
258087
258619
|
},
|
258088
|
-
"
|
258620
|
+
"Sg0": {
|
258089
258621
|
"type": "structure",
|
258090
258622
|
"required": [
|
258091
258623
|
"S3BucketName",
|
@@ -258097,7 +258629,7 @@ module.exports={
|
|
258097
258629
|
"S3Region": {}
|
258098
258630
|
}
|
258099
258631
|
},
|
258100
|
-
"
|
258632
|
+
"Sgu": {
|
258101
258633
|
"type": "list",
|
258102
258634
|
"member": {
|
258103
258635
|
"type": "structure",
|
@@ -258114,7 +258646,7 @@ module.exports={
|
|
258114
258646
|
}
|
258115
258647
|
}
|
258116
258648
|
},
|
258117
|
-
"
|
258649
|
+
"Sh9": {
|
258118
258650
|
"type": "list",
|
258119
258651
|
"member": {
|
258120
258652
|
"type": "structure",
|
@@ -258125,7 +258657,7 @@ module.exports={
|
|
258125
258657
|
}
|
258126
258658
|
}
|
258127
258659
|
},
|
258128
|
-
"
|
258660
|
+
"Shf": {
|
258129
258661
|
"type": "structure",
|
258130
258662
|
"members": {
|
258131
258663
|
"BaselineId": {},
|
@@ -258137,7 +258669,7 @@ module.exports={
|
|
258137
258669
|
}
|
258138
258670
|
}
|
258139
258671
|
},
|
258140
|
-
"
|
258672
|
+
"Sj0": {
|
258141
258673
|
"type": "structure",
|
258142
258674
|
"members": {
|
258143
258675
|
"CloudWatchLogGroupName": {},
|
@@ -258146,7 +258678,7 @@ module.exports={
|
|
258146
258678
|
}
|
258147
258679
|
}
|
258148
258680
|
},
|
258149
|
-
"
|
258681
|
+
"Sjm": {
|
258150
258682
|
"type": "list",
|
258151
258683
|
"member": {
|
258152
258684
|
"type": "structure",
|
@@ -258164,14 +258696,14 @@ module.exports={
|
|
258164
258696
|
}
|
258165
258697
|
}
|
258166
258698
|
},
|
258167
|
-
"
|
258699
|
+
"Sjs": {
|
258168
258700
|
"type": "list",
|
258169
258701
|
"member": {
|
258170
258702
|
"type": "structure",
|
258171
258703
|
"members": {
|
258172
258704
|
"Expression": {},
|
258173
258705
|
"Aggregators": {
|
258174
|
-
"shape": "
|
258706
|
+
"shape": "Sjs"
|
258175
258707
|
},
|
258176
258708
|
"Groups": {
|
258177
258709
|
"type": "list",
|
@@ -258184,7 +258716,7 @@ module.exports={
|
|
258184
258716
|
"members": {
|
258185
258717
|
"Name": {},
|
258186
258718
|
"Filters": {
|
258187
|
-
"shape": "
|
258719
|
+
"shape": "Sjm"
|
258188
258720
|
}
|
258189
258721
|
}
|
258190
258722
|
}
|
@@ -258192,7 +258724,7 @@ module.exports={
|
|
258192
258724
|
}
|
258193
258725
|
}
|
258194
258726
|
},
|
258195
|
-
"
|
258727
|
+
"Sk9": {
|
258196
258728
|
"type": "list",
|
258197
258729
|
"member": {
|
258198
258730
|
"type": "map",
|
@@ -258200,7 +258732,7 @@ module.exports={
|
|
258200
258732
|
"value": {}
|
258201
258733
|
}
|
258202
258734
|
},
|
258203
|
-
"
|
258735
|
+
"Sl0": {
|
258204
258736
|
"type": "structure",
|
258205
258737
|
"members": {
|
258206
258738
|
"RunCommand": {
|
@@ -258208,13 +258740,13 @@ module.exports={
|
|
258208
258740
|
"members": {
|
258209
258741
|
"Comment": {},
|
258210
258742
|
"CloudWatchOutputConfig": {
|
258211
|
-
"shape": "
|
258743
|
+
"shape": "Sj0"
|
258212
258744
|
},
|
258213
258745
|
"DocumentHash": {},
|
258214
258746
|
"DocumentHashType": {},
|
258215
258747
|
"DocumentVersion": {},
|
258216
258748
|
"NotificationConfig": {
|
258217
|
-
"shape": "
|
258749
|
+
"shape": "Sl2"
|
258218
258750
|
},
|
258219
258751
|
"OutputS3BucketName": {},
|
258220
258752
|
"OutputS3KeyPrefix": {},
|
@@ -258259,7 +258791,7 @@ module.exports={
|
|
258259
258791
|
}
|
258260
258792
|
}
|
258261
258793
|
},
|
258262
|
-
"
|
258794
|
+
"Sl2": {
|
258263
258795
|
"type": "structure",
|
258264
258796
|
"members": {
|
258265
258797
|
"NotificationArn": {},
|
@@ -258270,7 +258802,7 @@ module.exports={
|
|
258270
258802
|
"NotificationType": {}
|
258271
258803
|
}
|
258272
258804
|
},
|
258273
|
-
"
|
258805
|
+
"Sln": {
|
258274
258806
|
"type": "list",
|
258275
258807
|
"member": {
|
258276
258808
|
"type": "structure",
|
@@ -258288,7 +258820,7 @@ module.exports={
|
|
258288
258820
|
}
|
258289
258821
|
}
|
258290
258822
|
},
|
258291
|
-
"
|
258823
|
+
"Slt": {
|
258292
258824
|
"type": "list",
|
258293
258825
|
"member": {
|
258294
258826
|
"type": "structure",
|
@@ -258302,21 +258834,21 @@ module.exports={
|
|
258302
258834
|
"value": {}
|
258303
258835
|
},
|
258304
258836
|
"Filters": {
|
258305
|
-
"shape": "
|
258837
|
+
"shape": "Sln"
|
258306
258838
|
},
|
258307
258839
|
"Aggregators": {
|
258308
|
-
"shape": "
|
258840
|
+
"shape": "Slt"
|
258309
258841
|
}
|
258310
258842
|
}
|
258311
258843
|
}
|
258312
258844
|
},
|
258313
|
-
"
|
258845
|
+
"Smf": {
|
258314
258846
|
"type": "structure",
|
258315
258847
|
"members": {
|
258316
258848
|
"Name": {},
|
258317
258849
|
"Type": {},
|
258318
258850
|
"Value": {
|
258319
|
-
"shape": "
|
258851
|
+
"shape": "Smg"
|
258320
258852
|
},
|
258321
258853
|
"Version": {
|
258322
258854
|
"type": "long"
|
@@ -258330,21 +258862,21 @@ module.exports={
|
|
258330
258862
|
"DataType": {}
|
258331
258863
|
}
|
258332
258864
|
},
|
258333
|
-
"
|
258865
|
+
"Smg": {
|
258334
258866
|
"type": "string",
|
258335
258867
|
"sensitive": true
|
258336
258868
|
},
|
258337
|
-
"
|
258869
|
+
"Smm": {
|
258338
258870
|
"type": "list",
|
258339
258871
|
"member": {}
|
258340
258872
|
},
|
258341
|
-
"
|
258873
|
+
"Smq": {
|
258342
258874
|
"type": "list",
|
258343
258875
|
"member": {
|
258344
|
-
"shape": "
|
258876
|
+
"shape": "Smf"
|
258345
258877
|
}
|
258346
258878
|
},
|
258347
|
-
"
|
258879
|
+
"Sn8": {
|
258348
258880
|
"type": "structure",
|
258349
258881
|
"members": {
|
258350
258882
|
"SettingId": {},
|
@@ -258357,7 +258889,7 @@ module.exports={
|
|
258357
258889
|
"Status": {}
|
258358
258890
|
}
|
258359
258891
|
},
|
258360
|
-
"
|
258892
|
+
"Snq": {
|
258361
258893
|
"type": "list",
|
258362
258894
|
"member": {
|
258363
258895
|
"type": "structure",
|
@@ -258371,7 +258903,7 @@ module.exports={
|
|
258371
258903
|
}
|
258372
258904
|
}
|
258373
258905
|
},
|
258374
|
-
"
|
258906
|
+
"So6": {
|
258375
258907
|
"type": "structure",
|
258376
258908
|
"members": {
|
258377
258909
|
"CommandId": {},
|
@@ -258414,10 +258946,10 @@ module.exports={
|
|
258414
258946
|
},
|
258415
258947
|
"ServiceRole": {},
|
258416
258948
|
"NotificationConfig": {
|
258417
|
-
"shape": "
|
258949
|
+
"shape": "Sl2"
|
258418
258950
|
},
|
258419
258951
|
"CloudWatchOutputConfig": {
|
258420
|
-
"shape": "
|
258952
|
+
"shape": "Sj0"
|
258421
258953
|
},
|
258422
258954
|
"TimeoutSeconds": {
|
258423
258955
|
"type": "integer"
|
@@ -258430,7 +258962,7 @@ module.exports={
|
|
258430
258962
|
}
|
258431
258963
|
}
|
258432
258964
|
},
|
258433
|
-
"
|
258965
|
+
"Sod": {
|
258434
258966
|
"type": "list",
|
258435
258967
|
"member": {
|
258436
258968
|
"type": "structure",
|
@@ -258444,7 +258976,7 @@ module.exports={
|
|
258444
258976
|
}
|
258445
258977
|
}
|
258446
258978
|
},
|
258447
|
-
"
|
258979
|
+
"Sov": {
|
258448
258980
|
"type": "structure",
|
258449
258981
|
"required": [
|
258450
258982
|
"ExecutionTime"
|
@@ -258457,23 +258989,23 @@ module.exports={
|
|
258457
258989
|
"ExecutionType": {}
|
258458
258990
|
}
|
258459
258991
|
},
|
258460
|
-
"
|
258992
|
+
"Soy": {
|
258461
258993
|
"type": "map",
|
258462
258994
|
"key": {},
|
258463
258995
|
"value": {}
|
258464
258996
|
},
|
258465
|
-
"
|
258997
|
+
"Sp3": {
|
258466
258998
|
"type": "structure",
|
258467
258999
|
"members": {
|
258468
259000
|
"CompliantCount": {
|
258469
259001
|
"type": "integer"
|
258470
259002
|
},
|
258471
259003
|
"SeveritySummary": {
|
258472
|
-
"shape": "
|
259004
|
+
"shape": "Sp5"
|
258473
259005
|
}
|
258474
259006
|
}
|
258475
259007
|
},
|
258476
|
-
"
|
259008
|
+
"Sp5": {
|
258477
259009
|
"type": "structure",
|
258478
259010
|
"members": {
|
258479
259011
|
"CriticalCount": {
|
@@ -258496,18 +259028,18 @@ module.exports={
|
|
258496
259028
|
}
|
258497
259029
|
}
|
258498
259030
|
},
|
258499
|
-
"
|
259031
|
+
"Sp6": {
|
258500
259032
|
"type": "structure",
|
258501
259033
|
"members": {
|
258502
259034
|
"NonCompliantCount": {
|
258503
259035
|
"type": "integer"
|
258504
259036
|
},
|
258505
259037
|
"SeveritySummary": {
|
258506
|
-
"shape": "
|
259038
|
+
"shape": "Sp5"
|
258507
259039
|
}
|
258508
259040
|
}
|
258509
259041
|
},
|
258510
|
-
"
|
259042
|
+
"Spd": {
|
258511
259043
|
"type": "list",
|
258512
259044
|
"member": {
|
258513
259045
|
"type": "structure",
|
@@ -258517,7 +259049,7 @@ module.exports={
|
|
258517
259049
|
}
|
258518
259050
|
}
|
258519
259051
|
},
|
258520
|
-
"
|
259052
|
+
"Sqb": {
|
258521
259053
|
"type": "structure",
|
258522
259054
|
"members": {
|
258523
259055
|
"Arn": {}
|
@@ -258606,6 +259138,12 @@ module.exports={
|
|
258606
259138
|
"output_token": "NextToken",
|
258607
259139
|
"result_key": "Patches"
|
258608
259140
|
},
|
259141
|
+
"DescribeInstanceProperties": {
|
259142
|
+
"input_token": "NextToken",
|
259143
|
+
"limit_key": "MaxResults",
|
259144
|
+
"output_token": "NextToken",
|
259145
|
+
"result_key": "InstanceProperties"
|
259146
|
+
},
|
258609
259147
|
"DescribeInventoryDeletions": {
|
258610
259148
|
"input_token": "NextToken",
|
258611
259149
|
"limit_key": "MaxResults",
|
@@ -273634,7 +274172,7 @@ AWS.util.update(AWS, {
|
|
273634
274172
|
/**
|
273635
274173
|
* @constant
|
273636
274174
|
*/
|
273637
|
-
VERSION: '2.
|
274175
|
+
VERSION: '2.1607.0',
|
273638
274176
|
|
273639
274177
|
/**
|
273640
274178
|
* @api private
|
@@ -295893,7 +296431,7 @@ var LRUCache = /** @class */ (function () {
|
|
295893
296431
|
}());
|
295894
296432
|
exports.LRUCache = LRUCache;
|
295895
296433
|
},{}],467:[function(require,module,exports){
|
295896
|
-
// AWS SDK for JavaScript v2.
|
296434
|
+
// AWS SDK for JavaScript v2.1607.0
|
295897
296435
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
295898
296436
|
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
|
295899
296437
|
require('./browser_loader');
|