cdk-lambda-subminute 2.0.438 → 2.0.439
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/.jsii +4 -4
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +46 -35
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -0
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +182 -19
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.min.json +165 -93
- package/node_modules/aws-sdk/apis/gamelift-2015-10-01.min.json +586 -188
- package/node_modules/aws-sdk/apis/gamelift-2015-10-01.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +235 -129
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/datasync.d.ts +67 -42
- package/node_modules/aws-sdk/clients/ec2.d.ts +9 -1
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +205 -0
- package/node_modules/aws-sdk/clients/entityresolution.d.ts +64 -0
- package/node_modules/aws-sdk/clients/gamelift.d.ts +592 -88
- package/node_modules/aws-sdk/clients/ssm.d.ts +186 -6
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +843 -320
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -1,4 +1,4 @@
|
|
1
|
-
// AWS SDK for JavaScript v2.
|
1
|
+
// AWS SDK for JavaScript v2.1606.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",
|
@@ -251823,6 +252234,9 @@ module.exports={
|
|
251823
252234
|
"endpointPrefix": "ssm",
|
251824
252235
|
"jsonVersion": "1.1",
|
251825
252236
|
"protocol": "json",
|
252237
|
+
"protocols": [
|
252238
|
+
"json"
|
252239
|
+
],
|
251826
252240
|
"serviceAbbreviation": "Amazon SSM",
|
251827
252241
|
"serviceFullName": "Amazon Simple Systems Manager (SSM)",
|
251828
252242
|
"serviceId": "SSM",
|
@@ -253201,17 +253615,7 @@ module.exports={
|
|
253201
253615
|
"type": "timestamp"
|
253202
253616
|
},
|
253203
253617
|
"AssociationOverview": {
|
253204
|
-
"
|
253205
|
-
"members": {
|
253206
|
-
"DetailedStatus": {},
|
253207
|
-
"InstanceAssociationStatusAggregatedCount": {
|
253208
|
-
"type": "map",
|
253209
|
-
"key": {},
|
253210
|
-
"value": {
|
253211
|
-
"type": "integer"
|
253212
|
-
}
|
253213
|
-
}
|
253214
|
-
}
|
253618
|
+
"shape": "Scr"
|
253215
253619
|
},
|
253216
253620
|
"SourceId": {},
|
253217
253621
|
"SourceType": {}
|
@@ -253346,6 +253750,102 @@ module.exports={
|
|
253346
253750
|
}
|
253347
253751
|
}
|
253348
253752
|
},
|
253753
|
+
"DescribeInstanceProperties": {
|
253754
|
+
"input": {
|
253755
|
+
"type": "structure",
|
253756
|
+
"members": {
|
253757
|
+
"InstancePropertyFilterList": {
|
253758
|
+
"type": "list",
|
253759
|
+
"member": {
|
253760
|
+
"type": "structure",
|
253761
|
+
"required": [
|
253762
|
+
"key",
|
253763
|
+
"valueSet"
|
253764
|
+
],
|
253765
|
+
"members": {
|
253766
|
+
"key": {},
|
253767
|
+
"valueSet": {
|
253768
|
+
"shape": "Sdz"
|
253769
|
+
}
|
253770
|
+
}
|
253771
|
+
}
|
253772
|
+
},
|
253773
|
+
"FiltersWithOperator": {
|
253774
|
+
"type": "list",
|
253775
|
+
"member": {
|
253776
|
+
"type": "structure",
|
253777
|
+
"required": [
|
253778
|
+
"Key",
|
253779
|
+
"Values"
|
253780
|
+
],
|
253781
|
+
"members": {
|
253782
|
+
"Key": {},
|
253783
|
+
"Values": {
|
253784
|
+
"shape": "Sdz"
|
253785
|
+
},
|
253786
|
+
"Operator": {}
|
253787
|
+
}
|
253788
|
+
}
|
253789
|
+
},
|
253790
|
+
"MaxResults": {
|
253791
|
+
"type": "integer"
|
253792
|
+
},
|
253793
|
+
"NextToken": {}
|
253794
|
+
}
|
253795
|
+
},
|
253796
|
+
"output": {
|
253797
|
+
"type": "structure",
|
253798
|
+
"members": {
|
253799
|
+
"InstanceProperties": {
|
253800
|
+
"type": "list",
|
253801
|
+
"member": {
|
253802
|
+
"type": "structure",
|
253803
|
+
"members": {
|
253804
|
+
"Name": {},
|
253805
|
+
"InstanceId": {},
|
253806
|
+
"InstanceType": {},
|
253807
|
+
"InstanceRole": {},
|
253808
|
+
"KeyName": {},
|
253809
|
+
"InstanceState": {},
|
253810
|
+
"Architecture": {},
|
253811
|
+
"IPAddress": {},
|
253812
|
+
"LaunchTime": {
|
253813
|
+
"type": "timestamp"
|
253814
|
+
},
|
253815
|
+
"PingStatus": {},
|
253816
|
+
"LastPingDateTime": {
|
253817
|
+
"type": "timestamp"
|
253818
|
+
},
|
253819
|
+
"AgentVersion": {},
|
253820
|
+
"PlatformType": {},
|
253821
|
+
"PlatformName": {},
|
253822
|
+
"PlatformVersion": {},
|
253823
|
+
"ActivationId": {},
|
253824
|
+
"IamRole": {},
|
253825
|
+
"RegistrationDate": {
|
253826
|
+
"type": "timestamp"
|
253827
|
+
},
|
253828
|
+
"ResourceType": {},
|
253829
|
+
"ComputerName": {},
|
253830
|
+
"AssociationStatus": {},
|
253831
|
+
"LastAssociationExecutionDate": {
|
253832
|
+
"type": "timestamp"
|
253833
|
+
},
|
253834
|
+
"LastSuccessfulAssociationExecutionDate": {
|
253835
|
+
"type": "timestamp"
|
253836
|
+
},
|
253837
|
+
"AssociationOverview": {
|
253838
|
+
"shape": "Scr"
|
253839
|
+
},
|
253840
|
+
"SourceId": {},
|
253841
|
+
"SourceType": {}
|
253842
|
+
}
|
253843
|
+
}
|
253844
|
+
},
|
253845
|
+
"NextToken": {}
|
253846
|
+
}
|
253847
|
+
}
|
253848
|
+
},
|
253349
253849
|
"DescribeInventoryDeletions": {
|
253350
253850
|
"input": {
|
253351
253851
|
"type": "structure",
|
@@ -253396,7 +253896,7 @@ module.exports={
|
|
253396
253896
|
"WindowExecutionId": {},
|
253397
253897
|
"TaskId": {},
|
253398
253898
|
"Filters": {
|
253399
|
-
"shape": "
|
253899
|
+
"shape": "Ser"
|
253400
253900
|
},
|
253401
253901
|
"MaxResults": {
|
253402
253902
|
"type": "integer"
|
@@ -253418,7 +253918,7 @@ module.exports={
|
|
253418
253918
|
"ExecutionId": {},
|
253419
253919
|
"TaskType": {},
|
253420
253920
|
"Parameters": {
|
253421
|
-
"shape": "
|
253921
|
+
"shape": "Sf3"
|
253422
253922
|
},
|
253423
253923
|
"Status": {},
|
253424
253924
|
"StatusDetails": {},
|
@@ -253448,7 +253948,7 @@ module.exports={
|
|
253448
253948
|
"members": {
|
253449
253949
|
"WindowExecutionId": {},
|
253450
253950
|
"Filters": {
|
253451
|
-
"shape": "
|
253951
|
+
"shape": "Ser"
|
253452
253952
|
},
|
253453
253953
|
"MaxResults": {
|
253454
253954
|
"type": "integer"
|
@@ -253498,7 +253998,7 @@ module.exports={
|
|
253498
253998
|
"members": {
|
253499
253999
|
"WindowId": {},
|
253500
254000
|
"Filters": {
|
253501
|
-
"shape": "
|
254001
|
+
"shape": "Ser"
|
253502
254002
|
},
|
253503
254003
|
"MaxResults": {
|
253504
254004
|
"type": "integer"
|
@@ -253576,7 +254076,7 @@ module.exports={
|
|
253576
254076
|
"members": {
|
253577
254077
|
"WindowId": {},
|
253578
254078
|
"Filters": {
|
253579
|
-
"shape": "
|
254079
|
+
"shape": "Ser"
|
253580
254080
|
},
|
253581
254081
|
"MaxResults": {
|
253582
254082
|
"type": "integer"
|
@@ -253621,7 +254121,7 @@ module.exports={
|
|
253621
254121
|
"members": {
|
253622
254122
|
"WindowId": {},
|
253623
254123
|
"Filters": {
|
253624
|
-
"shape": "
|
254124
|
+
"shape": "Ser"
|
253625
254125
|
},
|
253626
254126
|
"MaxResults": {
|
253627
254127
|
"type": "integer"
|
@@ -253645,13 +254145,13 @@ module.exports={
|
|
253645
254145
|
"shape": "S18"
|
253646
254146
|
},
|
253647
254147
|
"TaskParameters": {
|
253648
|
-
"shape": "
|
254148
|
+
"shape": "Sfu"
|
253649
254149
|
},
|
253650
254150
|
"Priority": {
|
253651
254151
|
"type": "integer"
|
253652
254152
|
},
|
253653
254153
|
"LoggingInfo": {
|
253654
|
-
"shape": "
|
254154
|
+
"shape": "Sg0"
|
253655
254155
|
},
|
253656
254156
|
"ServiceRoleArn": {},
|
253657
254157
|
"MaxConcurrency": {},
|
@@ -253676,7 +254176,7 @@ module.exports={
|
|
253676
254176
|
"type": "structure",
|
253677
254177
|
"members": {
|
253678
254178
|
"Filters": {
|
253679
|
-
"shape": "
|
254179
|
+
"shape": "Ser"
|
253680
254180
|
},
|
253681
254181
|
"MaxResults": {
|
253682
254182
|
"type": "integer"
|
@@ -253855,7 +254355,7 @@ module.exports={
|
|
253855
254355
|
}
|
253856
254356
|
},
|
253857
254357
|
"ParameterFilters": {
|
253858
|
-
"shape": "
|
254358
|
+
"shape": "Sgu"
|
253859
254359
|
},
|
253860
254360
|
"MaxResults": {
|
253861
254361
|
"type": "integer"
|
@@ -253889,7 +254389,7 @@ module.exports={
|
|
253889
254389
|
},
|
253890
254390
|
"Tier": {},
|
253891
254391
|
"Policies": {
|
253892
|
-
"shape": "
|
254392
|
+
"shape": "Sh9"
|
253893
254393
|
},
|
253894
254394
|
"DataType": {}
|
253895
254395
|
}
|
@@ -253918,7 +254418,7 @@ module.exports={
|
|
253918
254418
|
"BaselineIdentities": {
|
253919
254419
|
"type": "list",
|
253920
254420
|
"member": {
|
253921
|
-
"shape": "
|
254421
|
+
"shape": "Shf"
|
253922
254422
|
}
|
253923
254423
|
},
|
253924
254424
|
"NextToken": {}
|
@@ -254000,7 +254500,7 @@ module.exports={
|
|
254000
254500
|
"members": {
|
254001
254501
|
"PatchGroup": {},
|
254002
254502
|
"BaselineIdentity": {
|
254003
|
-
"shape": "
|
254503
|
+
"shape": "Shf"
|
254004
254504
|
}
|
254005
254505
|
}
|
254006
254506
|
}
|
@@ -254283,7 +254783,7 @@ module.exports={
|
|
254283
254783
|
"StandardErrorContent": {},
|
254284
254784
|
"StandardErrorUrl": {},
|
254285
254785
|
"CloudWatchOutputConfig": {
|
254286
|
-
"shape": "
|
254786
|
+
"shape": "Sj0"
|
254287
254787
|
}
|
254288
254788
|
}
|
254289
254789
|
}
|
@@ -254424,10 +254924,10 @@ module.exports={
|
|
254424
254924
|
"type": "structure",
|
254425
254925
|
"members": {
|
254426
254926
|
"Filters": {
|
254427
|
-
"shape": "
|
254927
|
+
"shape": "Sjm"
|
254428
254928
|
},
|
254429
254929
|
"Aggregators": {
|
254430
|
-
"shape": "
|
254930
|
+
"shape": "Sjs"
|
254431
254931
|
},
|
254432
254932
|
"ResultAttributes": {
|
254433
254933
|
"type": "list",
|
@@ -254472,7 +254972,7 @@ module.exports={
|
|
254472
254972
|
"CaptureTime": {},
|
254473
254973
|
"ContentHash": {},
|
254474
254974
|
"Content": {
|
254475
|
-
"shape": "
|
254975
|
+
"shape": "Sk9"
|
254476
254976
|
}
|
254477
254977
|
}
|
254478
254978
|
}
|
@@ -254636,7 +255136,7 @@ module.exports={
|
|
254636
255136
|
"TaskParameters": {
|
254637
255137
|
"type": "list",
|
254638
255138
|
"member": {
|
254639
|
-
"shape": "
|
255139
|
+
"shape": "Sfu"
|
254640
255140
|
},
|
254641
255141
|
"sensitive": true
|
254642
255142
|
},
|
@@ -254685,7 +255185,7 @@ module.exports={
|
|
254685
255185
|
"ExecutionId": {},
|
254686
255186
|
"TaskType": {},
|
254687
255187
|
"Parameters": {
|
254688
|
-
"shape": "
|
255188
|
+
"shape": "Sf3"
|
254689
255189
|
},
|
254690
255190
|
"Status": {},
|
254691
255191
|
"StatusDetails": {},
|
@@ -254726,10 +255226,10 @@ module.exports={
|
|
254726
255226
|
"ServiceRoleArn": {},
|
254727
255227
|
"TaskType": {},
|
254728
255228
|
"TaskParameters": {
|
254729
|
-
"shape": "
|
255229
|
+
"shape": "Sfu"
|
254730
255230
|
},
|
254731
255231
|
"TaskInvocationParameters": {
|
254732
|
-
"shape": "
|
255232
|
+
"shape": "Sl0"
|
254733
255233
|
},
|
254734
255234
|
"Priority": {
|
254735
255235
|
"type": "integer"
|
@@ -254737,7 +255237,7 @@ module.exports={
|
|
254737
255237
|
"MaxConcurrency": {},
|
254738
255238
|
"MaxErrors": {},
|
254739
255239
|
"LoggingInfo": {
|
254740
|
-
"shape": "
|
255240
|
+
"shape": "Sg0"
|
254741
255241
|
},
|
254742
255242
|
"Name": {},
|
254743
255243
|
"Description": {
|
@@ -254845,10 +255345,10 @@ module.exports={
|
|
254845
255345
|
"members": {
|
254846
255346
|
"SyncName": {},
|
254847
255347
|
"Filters": {
|
254848
|
-
"shape": "
|
255348
|
+
"shape": "Sln"
|
254849
255349
|
},
|
254850
255350
|
"Aggregators": {
|
254851
|
-
"shape": "
|
255351
|
+
"shape": "Slt"
|
254852
255352
|
},
|
254853
255353
|
"ResultAttributes": {
|
254854
255354
|
"type": "list",
|
@@ -254919,7 +255419,7 @@ module.exports={
|
|
254919
255419
|
"type": "structure",
|
254920
255420
|
"members": {
|
254921
255421
|
"Parameter": {
|
254922
|
-
"shape": "
|
255422
|
+
"shape": "Smf"
|
254923
255423
|
}
|
254924
255424
|
}
|
254925
255425
|
}
|
@@ -254958,18 +255458,18 @@ module.exports={
|
|
254958
255458
|
"LastModifiedUser": {},
|
254959
255459
|
"Description": {},
|
254960
255460
|
"Value": {
|
254961
|
-
"shape": "
|
255461
|
+
"shape": "Smg"
|
254962
255462
|
},
|
254963
255463
|
"AllowedPattern": {},
|
254964
255464
|
"Version": {
|
254965
255465
|
"type": "long"
|
254966
255466
|
},
|
254967
255467
|
"Labels": {
|
254968
|
-
"shape": "
|
255468
|
+
"shape": "Smm"
|
254969
255469
|
},
|
254970
255470
|
"Tier": {},
|
254971
255471
|
"Policies": {
|
254972
|
-
"shape": "
|
255472
|
+
"shape": "Sh9"
|
254973
255473
|
},
|
254974
255474
|
"DataType": {}
|
254975
255475
|
}
|
@@ -254998,7 +255498,7 @@ module.exports={
|
|
254998
255498
|
"type": "structure",
|
254999
255499
|
"members": {
|
255000
255500
|
"Parameters": {
|
255001
|
-
"shape": "
|
255501
|
+
"shape": "Smq"
|
255002
255502
|
},
|
255003
255503
|
"InvalidParameters": {
|
255004
255504
|
"shape": "S7n"
|
@@ -255018,7 +255518,7 @@ module.exports={
|
|
255018
255518
|
"type": "boolean"
|
255019
255519
|
},
|
255020
255520
|
"ParameterFilters": {
|
255021
|
-
"shape": "
|
255521
|
+
"shape": "Sgu"
|
255022
255522
|
},
|
255023
255523
|
"WithDecryption": {
|
255024
255524
|
"type": "boolean"
|
@@ -255033,7 +255533,7 @@ module.exports={
|
|
255033
255533
|
"type": "structure",
|
255034
255534
|
"members": {
|
255035
255535
|
"Parameters": {
|
255036
|
-
"shape": "
|
255536
|
+
"shape": "Smq"
|
255037
255537
|
},
|
255038
255538
|
"NextToken": {}
|
255039
255539
|
}
|
@@ -255155,7 +255655,7 @@ module.exports={
|
|
255155
255655
|
"type": "structure",
|
255156
255656
|
"members": {
|
255157
255657
|
"ServiceSetting": {
|
255158
|
-
"shape": "
|
255658
|
+
"shape": "Sn8"
|
255159
255659
|
}
|
255160
255660
|
}
|
255161
255661
|
}
|
@@ -255173,7 +255673,7 @@ module.exports={
|
|
255173
255673
|
"type": "long"
|
255174
255674
|
},
|
255175
255675
|
"Labels": {
|
255176
|
-
"shape": "
|
255676
|
+
"shape": "Smm"
|
255177
255677
|
}
|
255178
255678
|
}
|
255179
255679
|
},
|
@@ -255181,7 +255681,7 @@ module.exports={
|
|
255181
255681
|
"type": "structure",
|
255182
255682
|
"members": {
|
255183
255683
|
"InvalidLabels": {
|
255184
|
-
"shape": "
|
255684
|
+
"shape": "Smm"
|
255185
255685
|
},
|
255186
255686
|
"ParameterVersion": {
|
255187
255687
|
"type": "long"
|
@@ -255333,7 +255833,7 @@ module.exports={
|
|
255333
255833
|
},
|
255334
255834
|
"NextToken": {},
|
255335
255835
|
"Filters": {
|
255336
|
-
"shape": "
|
255836
|
+
"shape": "Snq"
|
255337
255837
|
},
|
255338
255838
|
"Details": {
|
255339
255839
|
"type": "boolean"
|
@@ -255390,10 +255890,10 @@ module.exports={
|
|
255390
255890
|
},
|
255391
255891
|
"ServiceRole": {},
|
255392
255892
|
"NotificationConfig": {
|
255393
|
-
"shape": "
|
255893
|
+
"shape": "Sl2"
|
255394
255894
|
},
|
255395
255895
|
"CloudWatchOutputConfig": {
|
255396
|
-
"shape": "
|
255896
|
+
"shape": "Sj0"
|
255397
255897
|
}
|
255398
255898
|
}
|
255399
255899
|
}
|
@@ -255413,7 +255913,7 @@ module.exports={
|
|
255413
255913
|
},
|
255414
255914
|
"NextToken": {},
|
255415
255915
|
"Filters": {
|
255416
|
-
"shape": "
|
255916
|
+
"shape": "Snq"
|
255417
255917
|
}
|
255418
255918
|
}
|
255419
255919
|
},
|
@@ -255423,7 +255923,7 @@ module.exports={
|
|
255423
255923
|
"Commands": {
|
255424
255924
|
"type": "list",
|
255425
255925
|
"member": {
|
255426
|
-
"shape": "
|
255926
|
+
"shape": "So6"
|
255427
255927
|
}
|
255428
255928
|
},
|
255429
255929
|
"NextToken": {}
|
@@ -255435,7 +255935,7 @@ module.exports={
|
|
255435
255935
|
"type": "structure",
|
255436
255936
|
"members": {
|
255437
255937
|
"Filters": {
|
255438
|
-
"shape": "
|
255938
|
+
"shape": "Sod"
|
255439
255939
|
},
|
255440
255940
|
"ResourceIds": {
|
255441
255941
|
"type": "list",
|
@@ -255467,10 +255967,10 @@ module.exports={
|
|
255467
255967
|
"Status": {},
|
255468
255968
|
"Severity": {},
|
255469
255969
|
"ExecutionSummary": {
|
255470
|
-
"shape": "
|
255970
|
+
"shape": "Sov"
|
255471
255971
|
},
|
255472
255972
|
"Details": {
|
255473
|
-
"shape": "
|
255973
|
+
"shape": "Soy"
|
255474
255974
|
}
|
255475
255975
|
}
|
255476
255976
|
}
|
@@ -255484,7 +255984,7 @@ module.exports={
|
|
255484
255984
|
"type": "structure",
|
255485
255985
|
"members": {
|
255486
255986
|
"Filters": {
|
255487
|
-
"shape": "
|
255987
|
+
"shape": "Sod"
|
255488
255988
|
},
|
255489
255989
|
"NextToken": {},
|
255490
255990
|
"MaxResults": {
|
@@ -255502,10 +256002,10 @@ module.exports={
|
|
255502
256002
|
"members": {
|
255503
256003
|
"ComplianceType": {},
|
255504
256004
|
"CompliantSummary": {
|
255505
|
-
"shape": "
|
256005
|
+
"shape": "Sp3"
|
255506
256006
|
},
|
255507
256007
|
"NonCompliantSummary": {
|
255508
|
-
"shape": "
|
256008
|
+
"shape": "Sp6"
|
255509
256009
|
}
|
255510
256010
|
}
|
255511
256011
|
}
|
@@ -255553,7 +256053,7 @@ module.exports={
|
|
255553
256053
|
},
|
255554
256054
|
"ReviewStatus": {},
|
255555
256055
|
"Comment": {
|
255556
|
-
"shape": "
|
256056
|
+
"shape": "Spd"
|
255557
256057
|
},
|
255558
256058
|
"Reviewer": {}
|
255559
256059
|
}
|
@@ -255694,7 +256194,7 @@ module.exports={
|
|
255694
256194
|
"InstanceId": {},
|
255695
256195
|
"TypeName": {},
|
255696
256196
|
"Filters": {
|
255697
|
-
"shape": "
|
256197
|
+
"shape": "Sjm"
|
255698
256198
|
},
|
255699
256199
|
"NextToken": {},
|
255700
256200
|
"MaxResults": {
|
@@ -255710,7 +256210,7 @@ module.exports={
|
|
255710
256210
|
"SchemaVersion": {},
|
255711
256211
|
"CaptureTime": {},
|
255712
256212
|
"Entries": {
|
255713
|
-
"shape": "
|
256213
|
+
"shape": "Sk9"
|
255714
256214
|
},
|
255715
256215
|
"NextToken": {}
|
255716
256216
|
}
|
@@ -255760,7 +256260,7 @@ module.exports={
|
|
255760
256260
|
"DetailType": {},
|
255761
256261
|
"Detail": {},
|
255762
256262
|
"CreatedBy": {
|
255763
|
-
"shape": "
|
256263
|
+
"shape": "Sqb"
|
255764
256264
|
},
|
255765
256265
|
"CreatedTime": {
|
255766
256266
|
"type": "timestamp"
|
@@ -255816,13 +256316,13 @@ module.exports={
|
|
255816
256316
|
"AssociationType": {},
|
255817
256317
|
"ResourceUri": {},
|
255818
256318
|
"CreatedBy": {
|
255819
|
-
"shape": "
|
256319
|
+
"shape": "Sqb"
|
255820
256320
|
},
|
255821
256321
|
"CreatedTime": {
|
255822
256322
|
"type": "timestamp"
|
255823
256323
|
},
|
255824
256324
|
"LastModifiedBy": {
|
255825
|
-
"shape": "
|
256325
|
+
"shape": "Sqb"
|
255826
256326
|
},
|
255827
256327
|
"LastModifiedTime": {
|
255828
256328
|
"type": "timestamp"
|
@@ -255889,7 +256389,7 @@ module.exports={
|
|
255889
256389
|
"type": "structure",
|
255890
256390
|
"members": {
|
255891
256391
|
"Filters": {
|
255892
|
-
"shape": "
|
256392
|
+
"shape": "Sod"
|
255893
256393
|
},
|
255894
256394
|
"NextToken": {},
|
255895
256395
|
"MaxResults": {
|
@@ -255911,13 +256411,13 @@ module.exports={
|
|
255911
256411
|
"Status": {},
|
255912
256412
|
"OverallSeverity": {},
|
255913
256413
|
"ExecutionSummary": {
|
255914
|
-
"shape": "
|
256414
|
+
"shape": "Sov"
|
255915
256415
|
},
|
255916
256416
|
"CompliantSummary": {
|
255917
|
-
"shape": "
|
256417
|
+
"shape": "Sp3"
|
255918
256418
|
},
|
255919
256419
|
"NonCompliantSummary": {
|
255920
|
-
"shape": "
|
256420
|
+
"shape": "Sp6"
|
255921
256421
|
}
|
255922
256422
|
}
|
255923
256423
|
}
|
@@ -256050,7 +256550,7 @@ module.exports={
|
|
256050
256550
|
"ResourceType": {},
|
256051
256551
|
"ComplianceType": {},
|
256052
256552
|
"ExecutionSummary": {
|
256053
|
-
"shape": "
|
256553
|
+
"shape": "Sov"
|
256054
256554
|
},
|
256055
256555
|
"Items": {
|
256056
256556
|
"type": "list",
|
@@ -256066,7 +256566,7 @@ module.exports={
|
|
256066
256566
|
"Severity": {},
|
256067
256567
|
"Status": {},
|
256068
256568
|
"Details": {
|
256069
|
-
"shape": "
|
256569
|
+
"shape": "Soy"
|
256070
256570
|
}
|
256071
256571
|
}
|
256072
256572
|
}
|
@@ -256104,7 +256604,7 @@ module.exports={
|
|
256104
256604
|
"CaptureTime": {},
|
256105
256605
|
"ContentHash": {},
|
256106
256606
|
"Content": {
|
256107
|
-
"shape": "
|
256607
|
+
"shape": "Sk9"
|
256108
256608
|
},
|
256109
256609
|
"Context": {
|
256110
256610
|
"type": "map",
|
@@ -256134,7 +256634,7 @@ module.exports={
|
|
256134
256634
|
"Name": {},
|
256135
256635
|
"Description": {},
|
256136
256636
|
"Value": {
|
256137
|
-
"shape": "
|
256637
|
+
"shape": "Smg"
|
256138
256638
|
},
|
256139
256639
|
"Type": {},
|
256140
256640
|
"KeyId": {},
|
@@ -256269,10 +256769,10 @@ module.exports={
|
|
256269
256769
|
"ServiceRoleArn": {},
|
256270
256770
|
"TaskType": {},
|
256271
256771
|
"TaskParameters": {
|
256272
|
-
"shape": "
|
256772
|
+
"shape": "Sfu"
|
256273
256773
|
},
|
256274
256774
|
"TaskInvocationParameters": {
|
256275
|
-
"shape": "
|
256775
|
+
"shape": "Sl0"
|
256276
256776
|
},
|
256277
256777
|
"Priority": {
|
256278
256778
|
"type": "integer"
|
@@ -256280,7 +256780,7 @@ module.exports={
|
|
256280
256780
|
"MaxConcurrency": {},
|
256281
256781
|
"MaxErrors": {},
|
256282
256782
|
"LoggingInfo": {
|
256283
|
-
"shape": "
|
256783
|
+
"shape": "Sg0"
|
256284
256784
|
},
|
256285
256785
|
"Name": {},
|
256286
256786
|
"Description": {
|
@@ -256338,7 +256838,7 @@ module.exports={
|
|
256338
256838
|
"type": "structure",
|
256339
256839
|
"members": {
|
256340
256840
|
"ServiceSetting": {
|
256341
|
-
"shape": "
|
256841
|
+
"shape": "Sn8"
|
256342
256842
|
}
|
256343
256843
|
}
|
256344
256844
|
}
|
@@ -256413,10 +256913,10 @@ module.exports={
|
|
256413
256913
|
"MaxErrors": {},
|
256414
256914
|
"ServiceRoleArn": {},
|
256415
256915
|
"NotificationConfig": {
|
256416
|
-
"shape": "
|
256916
|
+
"shape": "Sl2"
|
256417
256917
|
},
|
256418
256918
|
"CloudWatchOutputConfig": {
|
256419
|
-
"shape": "
|
256919
|
+
"shape": "Sj0"
|
256420
256920
|
},
|
256421
256921
|
"AlarmConfiguration": {
|
256422
256922
|
"shape": "S1z"
|
@@ -256427,7 +256927,7 @@ module.exports={
|
|
256427
256927
|
"type": "structure",
|
256428
256928
|
"members": {
|
256429
256929
|
"Command": {
|
256430
|
-
"shape": "
|
256930
|
+
"shape": "So6"
|
256431
256931
|
}
|
256432
256932
|
}
|
256433
256933
|
}
|
@@ -256607,7 +257107,7 @@ module.exports={
|
|
256607
257107
|
"type": "long"
|
256608
257108
|
},
|
256609
257109
|
"Labels": {
|
256610
|
-
"shape": "
|
257110
|
+
"shape": "Smm"
|
256611
257111
|
}
|
256612
257112
|
}
|
256613
257113
|
},
|
@@ -256615,10 +257115,10 @@ module.exports={
|
|
256615
257115
|
"type": "structure",
|
256616
257116
|
"members": {
|
256617
257117
|
"RemovedLabels": {
|
256618
|
-
"shape": "
|
257118
|
+
"shape": "Smm"
|
256619
257119
|
},
|
256620
257120
|
"InvalidLabels": {
|
256621
|
-
"shape": "
|
257121
|
+
"shape": "Smm"
|
256622
257122
|
}
|
256623
257123
|
}
|
256624
257124
|
}
|
@@ -256780,7 +257280,7 @@ module.exports={
|
|
256780
257280
|
"members": {
|
256781
257281
|
"Action": {},
|
256782
257282
|
"Comment": {
|
256783
|
-
"shape": "
|
257283
|
+
"shape": "Spd"
|
256784
257284
|
}
|
256785
257285
|
}
|
256786
257286
|
}
|
@@ -256916,10 +257416,10 @@ module.exports={
|
|
256916
257416
|
"TaskArn": {},
|
256917
257417
|
"ServiceRoleArn": {},
|
256918
257418
|
"TaskParameters": {
|
256919
|
-
"shape": "
|
257419
|
+
"shape": "Sfu"
|
256920
257420
|
},
|
256921
257421
|
"TaskInvocationParameters": {
|
256922
|
-
"shape": "
|
257422
|
+
"shape": "Sl0"
|
256923
257423
|
},
|
256924
257424
|
"Priority": {
|
256925
257425
|
"type": "integer"
|
@@ -256927,7 +257427,7 @@ module.exports={
|
|
256927
257427
|
"MaxConcurrency": {},
|
256928
257428
|
"MaxErrors": {},
|
256929
257429
|
"LoggingInfo": {
|
256930
|
-
"shape": "
|
257430
|
+
"shape": "Sg0"
|
256931
257431
|
},
|
256932
257432
|
"Name": {},
|
256933
257433
|
"Description": {
|
@@ -256953,10 +257453,10 @@ module.exports={
|
|
256953
257453
|
"TaskArn": {},
|
256954
257454
|
"ServiceRoleArn": {},
|
256955
257455
|
"TaskParameters": {
|
256956
|
-
"shape": "
|
257456
|
+
"shape": "Sfu"
|
256957
257457
|
},
|
256958
257458
|
"TaskInvocationParameters": {
|
256959
|
-
"shape": "
|
257459
|
+
"shape": "Sl0"
|
256960
257460
|
},
|
256961
257461
|
"Priority": {
|
256962
257462
|
"type": "integer"
|
@@ -256964,7 +257464,7 @@ module.exports={
|
|
256964
257464
|
"MaxConcurrency": {},
|
256965
257465
|
"MaxErrors": {},
|
256966
257466
|
"LoggingInfo": {
|
256967
|
-
"shape": "
|
257467
|
+
"shape": "Sg0"
|
256968
257468
|
},
|
256969
257469
|
"Name": {},
|
256970
257470
|
"Description": {
|
@@ -257980,6 +258480,19 @@ module.exports={
|
|
257980
258480
|
"type": "list",
|
257981
258481
|
"member": {}
|
257982
258482
|
},
|
258483
|
+
"Scr": {
|
258484
|
+
"type": "structure",
|
258485
|
+
"members": {
|
258486
|
+
"DetailedStatus": {},
|
258487
|
+
"InstanceAssociationStatusAggregatedCount": {
|
258488
|
+
"type": "map",
|
258489
|
+
"key": {},
|
258490
|
+
"value": {
|
258491
|
+
"type": "integer"
|
258492
|
+
}
|
258493
|
+
}
|
258494
|
+
}
|
258495
|
+
},
|
257983
258496
|
"Scz": {
|
257984
258497
|
"type": "structure",
|
257985
258498
|
"required": [
|
@@ -258049,7 +258562,11 @@ module.exports={
|
|
258049
258562
|
"type": "string",
|
258050
258563
|
"sensitive": true
|
258051
258564
|
},
|
258052
|
-
"
|
258565
|
+
"Sdz": {
|
258566
|
+
"type": "list",
|
258567
|
+
"member": {}
|
258568
|
+
},
|
258569
|
+
"Ser": {
|
258053
258570
|
"type": "list",
|
258054
258571
|
"member": {
|
258055
258572
|
"type": "structure",
|
@@ -258062,11 +258579,11 @@ module.exports={
|
|
258062
258579
|
}
|
258063
258580
|
}
|
258064
258581
|
},
|
258065
|
-
"
|
258582
|
+
"Sf3": {
|
258066
258583
|
"type": "string",
|
258067
258584
|
"sensitive": true
|
258068
258585
|
},
|
258069
|
-
"
|
258586
|
+
"Sfu": {
|
258070
258587
|
"type": "map",
|
258071
258588
|
"key": {},
|
258072
258589
|
"value": {
|
@@ -258085,7 +258602,7 @@ module.exports={
|
|
258085
258602
|
},
|
258086
258603
|
"sensitive": true
|
258087
258604
|
},
|
258088
|
-
"
|
258605
|
+
"Sg0": {
|
258089
258606
|
"type": "structure",
|
258090
258607
|
"required": [
|
258091
258608
|
"S3BucketName",
|
@@ -258097,7 +258614,7 @@ module.exports={
|
|
258097
258614
|
"S3Region": {}
|
258098
258615
|
}
|
258099
258616
|
},
|
258100
|
-
"
|
258617
|
+
"Sgu": {
|
258101
258618
|
"type": "list",
|
258102
258619
|
"member": {
|
258103
258620
|
"type": "structure",
|
@@ -258114,7 +258631,7 @@ module.exports={
|
|
258114
258631
|
}
|
258115
258632
|
}
|
258116
258633
|
},
|
258117
|
-
"
|
258634
|
+
"Sh9": {
|
258118
258635
|
"type": "list",
|
258119
258636
|
"member": {
|
258120
258637
|
"type": "structure",
|
@@ -258125,7 +258642,7 @@ module.exports={
|
|
258125
258642
|
}
|
258126
258643
|
}
|
258127
258644
|
},
|
258128
|
-
"
|
258645
|
+
"Shf": {
|
258129
258646
|
"type": "structure",
|
258130
258647
|
"members": {
|
258131
258648
|
"BaselineId": {},
|
@@ -258137,7 +258654,7 @@ module.exports={
|
|
258137
258654
|
}
|
258138
258655
|
}
|
258139
258656
|
},
|
258140
|
-
"
|
258657
|
+
"Sj0": {
|
258141
258658
|
"type": "structure",
|
258142
258659
|
"members": {
|
258143
258660
|
"CloudWatchLogGroupName": {},
|
@@ -258146,7 +258663,7 @@ module.exports={
|
|
258146
258663
|
}
|
258147
258664
|
}
|
258148
258665
|
},
|
258149
|
-
"
|
258666
|
+
"Sjm": {
|
258150
258667
|
"type": "list",
|
258151
258668
|
"member": {
|
258152
258669
|
"type": "structure",
|
@@ -258164,14 +258681,14 @@ module.exports={
|
|
258164
258681
|
}
|
258165
258682
|
}
|
258166
258683
|
},
|
258167
|
-
"
|
258684
|
+
"Sjs": {
|
258168
258685
|
"type": "list",
|
258169
258686
|
"member": {
|
258170
258687
|
"type": "structure",
|
258171
258688
|
"members": {
|
258172
258689
|
"Expression": {},
|
258173
258690
|
"Aggregators": {
|
258174
|
-
"shape": "
|
258691
|
+
"shape": "Sjs"
|
258175
258692
|
},
|
258176
258693
|
"Groups": {
|
258177
258694
|
"type": "list",
|
@@ -258184,7 +258701,7 @@ module.exports={
|
|
258184
258701
|
"members": {
|
258185
258702
|
"Name": {},
|
258186
258703
|
"Filters": {
|
258187
|
-
"shape": "
|
258704
|
+
"shape": "Sjm"
|
258188
258705
|
}
|
258189
258706
|
}
|
258190
258707
|
}
|
@@ -258192,7 +258709,7 @@ module.exports={
|
|
258192
258709
|
}
|
258193
258710
|
}
|
258194
258711
|
},
|
258195
|
-
"
|
258712
|
+
"Sk9": {
|
258196
258713
|
"type": "list",
|
258197
258714
|
"member": {
|
258198
258715
|
"type": "map",
|
@@ -258200,7 +258717,7 @@ module.exports={
|
|
258200
258717
|
"value": {}
|
258201
258718
|
}
|
258202
258719
|
},
|
258203
|
-
"
|
258720
|
+
"Sl0": {
|
258204
258721
|
"type": "structure",
|
258205
258722
|
"members": {
|
258206
258723
|
"RunCommand": {
|
@@ -258208,13 +258725,13 @@ module.exports={
|
|
258208
258725
|
"members": {
|
258209
258726
|
"Comment": {},
|
258210
258727
|
"CloudWatchOutputConfig": {
|
258211
|
-
"shape": "
|
258728
|
+
"shape": "Sj0"
|
258212
258729
|
},
|
258213
258730
|
"DocumentHash": {},
|
258214
258731
|
"DocumentHashType": {},
|
258215
258732
|
"DocumentVersion": {},
|
258216
258733
|
"NotificationConfig": {
|
258217
|
-
"shape": "
|
258734
|
+
"shape": "Sl2"
|
258218
258735
|
},
|
258219
258736
|
"OutputS3BucketName": {},
|
258220
258737
|
"OutputS3KeyPrefix": {},
|
@@ -258259,7 +258776,7 @@ module.exports={
|
|
258259
258776
|
}
|
258260
258777
|
}
|
258261
258778
|
},
|
258262
|
-
"
|
258779
|
+
"Sl2": {
|
258263
258780
|
"type": "structure",
|
258264
258781
|
"members": {
|
258265
258782
|
"NotificationArn": {},
|
@@ -258270,7 +258787,7 @@ module.exports={
|
|
258270
258787
|
"NotificationType": {}
|
258271
258788
|
}
|
258272
258789
|
},
|
258273
|
-
"
|
258790
|
+
"Sln": {
|
258274
258791
|
"type": "list",
|
258275
258792
|
"member": {
|
258276
258793
|
"type": "structure",
|
@@ -258288,7 +258805,7 @@ module.exports={
|
|
258288
258805
|
}
|
258289
258806
|
}
|
258290
258807
|
},
|
258291
|
-
"
|
258808
|
+
"Slt": {
|
258292
258809
|
"type": "list",
|
258293
258810
|
"member": {
|
258294
258811
|
"type": "structure",
|
@@ -258302,21 +258819,21 @@ module.exports={
|
|
258302
258819
|
"value": {}
|
258303
258820
|
},
|
258304
258821
|
"Filters": {
|
258305
|
-
"shape": "
|
258822
|
+
"shape": "Sln"
|
258306
258823
|
},
|
258307
258824
|
"Aggregators": {
|
258308
|
-
"shape": "
|
258825
|
+
"shape": "Slt"
|
258309
258826
|
}
|
258310
258827
|
}
|
258311
258828
|
}
|
258312
258829
|
},
|
258313
|
-
"
|
258830
|
+
"Smf": {
|
258314
258831
|
"type": "structure",
|
258315
258832
|
"members": {
|
258316
258833
|
"Name": {},
|
258317
258834
|
"Type": {},
|
258318
258835
|
"Value": {
|
258319
|
-
"shape": "
|
258836
|
+
"shape": "Smg"
|
258320
258837
|
},
|
258321
258838
|
"Version": {
|
258322
258839
|
"type": "long"
|
@@ -258330,21 +258847,21 @@ module.exports={
|
|
258330
258847
|
"DataType": {}
|
258331
258848
|
}
|
258332
258849
|
},
|
258333
|
-
"
|
258850
|
+
"Smg": {
|
258334
258851
|
"type": "string",
|
258335
258852
|
"sensitive": true
|
258336
258853
|
},
|
258337
|
-
"
|
258854
|
+
"Smm": {
|
258338
258855
|
"type": "list",
|
258339
258856
|
"member": {}
|
258340
258857
|
},
|
258341
|
-
"
|
258858
|
+
"Smq": {
|
258342
258859
|
"type": "list",
|
258343
258860
|
"member": {
|
258344
|
-
"shape": "
|
258861
|
+
"shape": "Smf"
|
258345
258862
|
}
|
258346
258863
|
},
|
258347
|
-
"
|
258864
|
+
"Sn8": {
|
258348
258865
|
"type": "structure",
|
258349
258866
|
"members": {
|
258350
258867
|
"SettingId": {},
|
@@ -258357,7 +258874,7 @@ module.exports={
|
|
258357
258874
|
"Status": {}
|
258358
258875
|
}
|
258359
258876
|
},
|
258360
|
-
"
|
258877
|
+
"Snq": {
|
258361
258878
|
"type": "list",
|
258362
258879
|
"member": {
|
258363
258880
|
"type": "structure",
|
@@ -258371,7 +258888,7 @@ module.exports={
|
|
258371
258888
|
}
|
258372
258889
|
}
|
258373
258890
|
},
|
258374
|
-
"
|
258891
|
+
"So6": {
|
258375
258892
|
"type": "structure",
|
258376
258893
|
"members": {
|
258377
258894
|
"CommandId": {},
|
@@ -258414,10 +258931,10 @@ module.exports={
|
|
258414
258931
|
},
|
258415
258932
|
"ServiceRole": {},
|
258416
258933
|
"NotificationConfig": {
|
258417
|
-
"shape": "
|
258934
|
+
"shape": "Sl2"
|
258418
258935
|
},
|
258419
258936
|
"CloudWatchOutputConfig": {
|
258420
|
-
"shape": "
|
258937
|
+
"shape": "Sj0"
|
258421
258938
|
},
|
258422
258939
|
"TimeoutSeconds": {
|
258423
258940
|
"type": "integer"
|
@@ -258430,7 +258947,7 @@ module.exports={
|
|
258430
258947
|
}
|
258431
258948
|
}
|
258432
258949
|
},
|
258433
|
-
"
|
258950
|
+
"Sod": {
|
258434
258951
|
"type": "list",
|
258435
258952
|
"member": {
|
258436
258953
|
"type": "structure",
|
@@ -258444,7 +258961,7 @@ module.exports={
|
|
258444
258961
|
}
|
258445
258962
|
}
|
258446
258963
|
},
|
258447
|
-
"
|
258964
|
+
"Sov": {
|
258448
258965
|
"type": "structure",
|
258449
258966
|
"required": [
|
258450
258967
|
"ExecutionTime"
|
@@ -258457,23 +258974,23 @@ module.exports={
|
|
258457
258974
|
"ExecutionType": {}
|
258458
258975
|
}
|
258459
258976
|
},
|
258460
|
-
"
|
258977
|
+
"Soy": {
|
258461
258978
|
"type": "map",
|
258462
258979
|
"key": {},
|
258463
258980
|
"value": {}
|
258464
258981
|
},
|
258465
|
-
"
|
258982
|
+
"Sp3": {
|
258466
258983
|
"type": "structure",
|
258467
258984
|
"members": {
|
258468
258985
|
"CompliantCount": {
|
258469
258986
|
"type": "integer"
|
258470
258987
|
},
|
258471
258988
|
"SeveritySummary": {
|
258472
|
-
"shape": "
|
258989
|
+
"shape": "Sp5"
|
258473
258990
|
}
|
258474
258991
|
}
|
258475
258992
|
},
|
258476
|
-
"
|
258993
|
+
"Sp5": {
|
258477
258994
|
"type": "structure",
|
258478
258995
|
"members": {
|
258479
258996
|
"CriticalCount": {
|
@@ -258496,18 +259013,18 @@ module.exports={
|
|
258496
259013
|
}
|
258497
259014
|
}
|
258498
259015
|
},
|
258499
|
-
"
|
259016
|
+
"Sp6": {
|
258500
259017
|
"type": "structure",
|
258501
259018
|
"members": {
|
258502
259019
|
"NonCompliantCount": {
|
258503
259020
|
"type": "integer"
|
258504
259021
|
},
|
258505
259022
|
"SeveritySummary": {
|
258506
|
-
"shape": "
|
259023
|
+
"shape": "Sp5"
|
258507
259024
|
}
|
258508
259025
|
}
|
258509
259026
|
},
|
258510
|
-
"
|
259027
|
+
"Spd": {
|
258511
259028
|
"type": "list",
|
258512
259029
|
"member": {
|
258513
259030
|
"type": "structure",
|
@@ -258517,7 +259034,7 @@ module.exports={
|
|
258517
259034
|
}
|
258518
259035
|
}
|
258519
259036
|
},
|
258520
|
-
"
|
259037
|
+
"Sqb": {
|
258521
259038
|
"type": "structure",
|
258522
259039
|
"members": {
|
258523
259040
|
"Arn": {}
|
@@ -258606,6 +259123,12 @@ module.exports={
|
|
258606
259123
|
"output_token": "NextToken",
|
258607
259124
|
"result_key": "Patches"
|
258608
259125
|
},
|
259126
|
+
"DescribeInstanceProperties": {
|
259127
|
+
"input_token": "NextToken",
|
259128
|
+
"limit_key": "MaxResults",
|
259129
|
+
"output_token": "NextToken",
|
259130
|
+
"result_key": "InstanceProperties"
|
259131
|
+
},
|
258609
259132
|
"DescribeInventoryDeletions": {
|
258610
259133
|
"input_token": "NextToken",
|
258611
259134
|
"limit_key": "MaxResults",
|
@@ -273634,7 +274157,7 @@ AWS.util.update(AWS, {
|
|
273634
274157
|
/**
|
273635
274158
|
* @constant
|
273636
274159
|
*/
|
273637
|
-
VERSION: '2.
|
274160
|
+
VERSION: '2.1606.0',
|
273638
274161
|
|
273639
274162
|
/**
|
273640
274163
|
* @api private
|
@@ -295893,7 +296416,7 @@ var LRUCache = /** @class */ (function () {
|
|
295893
296416
|
}());
|
295894
296417
|
exports.LRUCache = LRUCache;
|
295895
296418
|
},{}],467:[function(require,module,exports){
|
295896
|
-
// AWS SDK for JavaScript v2.
|
296419
|
+
// AWS SDK for JavaScript v2.1606.0
|
295897
296420
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
295898
296421
|
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
|
295899
296422
|
require('./browser_loader');
|