aws-sdk-core 2.11.404 → 2.11.405

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/apis/alexaforbusiness/2017-11-09/api-2.json +130 -4
  3. data/apis/appconfig/2019-10-09/api-2.json +1391 -0
  4. data/apis/appconfig/2019-10-09/examples-1.json +5 -0
  5. data/apis/appconfig/2019-10-09/paginators-1.json +29 -0
  6. data/apis/application-autoscaling/2016-02-06/api-2.json +7 -3
  7. data/apis/application-insights/2018-11-25/api-2.json +432 -12
  8. data/apis/application-insights/2018-11-25/paginators-1.json +10 -0
  9. data/apis/athena/2017-05-18/api-2.json +5 -1
  10. data/apis/ce/2017-10-25/api-2.json +248 -2
  11. data/apis/codebuild/2016-10-06/api-2.json +444 -1
  12. data/apis/cognito-idp/2016-04-18/api-2.json +1 -0
  13. data/apis/comprehend/2017-11-27/api-2.json +265 -0
  14. data/apis/dlm/2018-01-12/api-2.json +15 -6
  15. data/apis/ec2/2016-11-15/api-2.json +77 -0
  16. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +5 -2
  17. data/apis/greengrass/2017-06-07/api-2.json +21 -3
  18. data/apis/iot/2015-05-28/api-2.json +909 -20
  19. data/apis/iotsecuretunneling/2018-10-05/api-2.json +388 -0
  20. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +5 -0
  21. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +9 -0
  22. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +149 -5
  23. data/apis/kms/2014-11-01/api-2.json +315 -8
  24. data/apis/lambda/2015-03-31/api-2.json +336 -10
  25. data/apis/lambda/2015-03-31/paginators-1.json +6 -0
  26. data/apis/lambda/2015-03-31/waiters-2.json +52 -0
  27. data/apis/mediaconvert/2017-08-29/api-2.json +28 -6
  28. data/apis/medialive/2017-10-14/api-2.json +1696 -106
  29. data/apis/medialive/2017-10-14/paginators-1.json +12 -0
  30. data/apis/medialive/2017-10-14/waiters-2.json +106 -0
  31. data/apis/mediapackage-vod/2018-11-07/api-2.json +12 -0
  32. data/apis/monitoring/2010-08-01/api-2.json +341 -0
  33. data/apis/monitoring/2010-08-01/paginators-1.json +5 -0
  34. data/apis/ram/2018-01-04/api-2.json +253 -2
  35. data/apis/rds/2014-10-31/api-2.json +2 -1
  36. data/apis/redshift/2012-12-01/api-2.json +273 -5
  37. data/apis/redshift/2012-12-01/paginators-1.json +6 -0
  38. data/apis/runtime.lex/2016-11-28/api-2.json +8 -2
  39. data/apis/sesv2/2019-09-27/api-2.json +274 -5
  40. data/apis/sesv2/2019-09-27/paginators-1.json +5 -0
  41. data/apis/ssm/2014-11-06/api-2.json +46 -7
  42. data/apis/wafv2/2019-07-29/api-2.json +2418 -0
  43. data/apis/wafv2/2019-07-29/examples-1.json +5 -0
  44. data/apis/wafv2/2019-07-29/paginators-1.json +4 -0
  45. data/apis/wafv2/2019-07-29/smoke.json +21 -0
  46. data/endpoints.json +2 -0
  47. data/lib/aws-sdk-core.rb +3 -0
  48. data/lib/aws-sdk-core/appconfig.rb +6 -0
  49. data/lib/aws-sdk-core/iotsecuretunneling.rb +6 -0
  50. data/lib/aws-sdk-core/version.rb +1 -1
  51. data/lib/aws-sdk-core/wafv2.rb +6 -0
  52. data/service-models.json +12 -0
  53. metadata +15 -2
@@ -35,6 +35,18 @@
35
35
  "output_token": "NextToken",
36
36
  "limit_key": "MaxResults",
37
37
  "result_key": "Reservations"
38
+ },
39
+ "ListMultiplexPrograms": {
40
+ "input_token": "NextToken",
41
+ "output_token": "NextToken",
42
+ "limit_key": "MaxResults",
43
+ "result_key": "MultiplexPrograms"
44
+ },
45
+ "ListMultiplexes": {
46
+ "input_token": "NextToken",
47
+ "output_token": "NextToken",
48
+ "limit_key": "MaxResults",
49
+ "result_key": "Multiplexes"
38
50
  }
39
51
  }
40
52
  }
@@ -106,6 +106,112 @@
106
106
  "expected": 500
107
107
  }
108
108
  ]
109
+ },
110
+ "MultiplexCreated": {
111
+ "description": "Wait until a multiplex has been created",
112
+ "operation": "DescribeMultiplex",
113
+ "delay": 3,
114
+ "maxAttempts": 5,
115
+ "acceptors": [
116
+ {
117
+ "state": "success",
118
+ "matcher": "path",
119
+ "argument": "State",
120
+ "expected": "IDLE"
121
+ },
122
+ {
123
+ "state": "retry",
124
+ "matcher": "path",
125
+ "argument": "State",
126
+ "expected": "CREATING"
127
+ },
128
+ {
129
+ "state": "retry",
130
+ "matcher": "status",
131
+ "expected": 500
132
+ },
133
+ {
134
+ "state": "failure",
135
+ "matcher": "path",
136
+ "argument": "State",
137
+ "expected": "CREATE_FAILED"
138
+ }
139
+ ]
140
+ },
141
+ "MultiplexRunning": {
142
+ "description": "Wait until a multiplex is running",
143
+ "operation": "DescribeMultiplex",
144
+ "delay": 5,
145
+ "maxAttempts": 120,
146
+ "acceptors": [
147
+ {
148
+ "state": "success",
149
+ "matcher": "path",
150
+ "argument": "State",
151
+ "expected": "RUNNING"
152
+ },
153
+ {
154
+ "state": "retry",
155
+ "matcher": "path",
156
+ "argument": "State",
157
+ "expected": "STARTING"
158
+ },
159
+ {
160
+ "state": "retry",
161
+ "matcher": "status",
162
+ "expected": 500
163
+ }
164
+ ]
165
+ },
166
+ "MultiplexStopped": {
167
+ "description": "Wait until a multiplex has is stopped",
168
+ "operation": "DescribeMultiplex",
169
+ "delay": 5,
170
+ "maxAttempts": 28,
171
+ "acceptors": [
172
+ {
173
+ "state": "success",
174
+ "matcher": "path",
175
+ "argument": "State",
176
+ "expected": "IDLE"
177
+ },
178
+ {
179
+ "state": "retry",
180
+ "matcher": "path",
181
+ "argument": "State",
182
+ "expected": "STOPPING"
183
+ },
184
+ {
185
+ "state": "retry",
186
+ "matcher": "status",
187
+ "expected": 500
188
+ }
189
+ ]
190
+ },
191
+ "MultiplexDeleted": {
192
+ "description": "Wait until a multiplex has been deleted",
193
+ "operation": "DescribeMultiplex",
194
+ "delay": 5,
195
+ "maxAttempts": 20,
196
+ "acceptors": [
197
+ {
198
+ "state": "success",
199
+ "matcher": "path",
200
+ "argument": "State",
201
+ "expected": "DELETED"
202
+ },
203
+ {
204
+ "state": "retry",
205
+ "matcher": "path",
206
+ "argument": "State",
207
+ "expected": "DELETING"
208
+ },
209
+ {
210
+ "state": "retry",
211
+ "matcher": "status",
212
+ "expected": 500
213
+ }
214
+ ]
109
215
  }
110
216
  }
111
217
  }
@@ -728,6 +728,10 @@
728
728
  "locationName": "arn",
729
729
  "shape": "__string"
730
730
  },
731
+ "DomainName": {
732
+ "locationName": "domainName",
733
+ "shape": "__string"
734
+ },
731
735
  "Id": {
732
736
  "locationName": "id",
733
737
  "shape": "__string"
@@ -954,6 +958,10 @@
954
958
  "locationName": "arn",
955
959
  "shape": "__string"
956
960
  },
961
+ "DomainName": {
962
+ "locationName": "domainName",
963
+ "shape": "__string"
964
+ },
957
965
  "Id": {
958
966
  "locationName": "id",
959
967
  "shape": "__string"
@@ -1322,6 +1330,10 @@
1322
1330
  "locationName": "arn",
1323
1331
  "shape": "__string"
1324
1332
  },
1333
+ "DomainName": {
1334
+ "locationName": "domainName",
1335
+ "shape": "__string"
1336
+ },
1325
1337
  "Id": {
1326
1338
  "locationName": "id",
1327
1339
  "shape": "__string"
@@ -58,6 +58,22 @@
58
58
  {"shape":"InternalServiceFault"}
59
59
  ]
60
60
  },
61
+ "DeleteInsightRules":{
62
+ "name":"DeleteInsightRules",
63
+ "http":{
64
+ "method":"POST",
65
+ "requestUri":"/"
66
+ },
67
+ "input":{"shape":"DeleteInsightRulesInput"},
68
+ "output":{
69
+ "shape":"DeleteInsightRulesOutput",
70
+ "resultWrapper":"DeleteInsightRulesResult"
71
+ },
72
+ "errors":[
73
+ {"shape":"InvalidParameterValueException"},
74
+ {"shape":"MissingRequiredParameterException"}
75
+ ]
76
+ },
61
77
  "DescribeAlarmHistory":{
62
78
  "name":"DescribeAlarmHistory",
63
79
  "http":{
@@ -117,6 +133,21 @@
117
133
  {"shape":"InvalidParameterValueException"}
118
134
  ]
119
135
  },
136
+ "DescribeInsightRules":{
137
+ "name":"DescribeInsightRules",
138
+ "http":{
139
+ "method":"POST",
140
+ "requestUri":"/"
141
+ },
142
+ "input":{"shape":"DescribeInsightRulesInput"},
143
+ "output":{
144
+ "shape":"DescribeInsightRulesOutput",
145
+ "resultWrapper":"DescribeInsightRulesResult"
146
+ },
147
+ "errors":[
148
+ {"shape":"InvalidNextToken"}
149
+ ]
150
+ },
120
151
  "DisableAlarmActions":{
121
152
  "name":"DisableAlarmActions",
122
153
  "http":{
@@ -125,6 +156,22 @@
125
156
  },
126
157
  "input":{"shape":"DisableAlarmActionsInput"}
127
158
  },
159
+ "DisableInsightRules":{
160
+ "name":"DisableInsightRules",
161
+ "http":{
162
+ "method":"POST",
163
+ "requestUri":"/"
164
+ },
165
+ "input":{"shape":"DisableInsightRulesInput"},
166
+ "output":{
167
+ "shape":"DisableInsightRulesOutput",
168
+ "resultWrapper":"DisableInsightRulesResult"
169
+ },
170
+ "errors":[
171
+ {"shape":"InvalidParameterValueException"},
172
+ {"shape":"MissingRequiredParameterException"}
173
+ ]
174
+ },
128
175
  "EnableAlarmActions":{
129
176
  "name":"EnableAlarmActions",
130
177
  "http":{
@@ -133,6 +180,23 @@
133
180
  },
134
181
  "input":{"shape":"EnableAlarmActionsInput"}
135
182
  },
183
+ "EnableInsightRules":{
184
+ "name":"EnableInsightRules",
185
+ "http":{
186
+ "method":"POST",
187
+ "requestUri":"/"
188
+ },
189
+ "input":{"shape":"EnableInsightRulesInput"},
190
+ "output":{
191
+ "shape":"EnableInsightRulesOutput",
192
+ "resultWrapper":"EnableInsightRulesResult"
193
+ },
194
+ "errors":[
195
+ {"shape":"InvalidParameterValueException"},
196
+ {"shape":"MissingRequiredParameterException"},
197
+ {"shape":"LimitExceededException"}
198
+ ]
199
+ },
136
200
  "GetDashboard":{
137
201
  "name":"GetDashboard",
138
202
  "http":{
@@ -150,6 +214,23 @@
150
214
  {"shape":"InternalServiceFault"}
151
215
  ]
152
216
  },
217
+ "GetInsightRuleReport":{
218
+ "name":"GetInsightRuleReport",
219
+ "http":{
220
+ "method":"POST",
221
+ "requestUri":"/"
222
+ },
223
+ "input":{"shape":"GetInsightRuleReportInput"},
224
+ "output":{
225
+ "shape":"GetInsightRuleReportOutput",
226
+ "resultWrapper":"GetInsightRuleReportResult"
227
+ },
228
+ "errors":[
229
+ {"shape":"InvalidParameterValueException"},
230
+ {"shape":"MissingRequiredParameterException"},
231
+ {"shape":"ResourceNotFoundException"}
232
+ ]
233
+ },
153
234
  "GetMetricData":{
154
235
  "name":"GetMetricData",
155
236
  "http":{
@@ -278,6 +359,23 @@
278
359
  {"shape":"InternalServiceFault"}
279
360
  ]
280
361
  },
362
+ "PutInsightRule":{
363
+ "name":"PutInsightRule",
364
+ "http":{
365
+ "method":"POST",
366
+ "requestUri":"/"
367
+ },
368
+ "input":{"shape":"PutInsightRuleInput"},
369
+ "output":{
370
+ "shape":"PutInsightRuleOutput",
371
+ "resultWrapper":"PutInsightRuleResult"
372
+ },
373
+ "errors":[
374
+ {"shape":"InvalidParameterValueException"},
375
+ {"shape":"MissingRequiredParameterException"},
376
+ {"shape":"LimitExceededException"}
377
+ ]
378
+ },
281
379
  "PutMetricAlarm":{
282
380
  "name":"PutMetricAlarm",
283
381
  "http":{
@@ -430,6 +528,10 @@
430
528
  "member":{"shape":"AnomalyDetector"}
431
529
  },
432
530
  "AwsQueryErrorMessage":{"type":"string"},
531
+ "BatchFailures":{
532
+ "type":"list",
533
+ "member":{"shape":"PartialFailure"}
534
+ },
433
535
  "ComparisonOperator":{
434
536
  "type":"string",
435
537
  "enum":[
@@ -595,6 +697,19 @@
595
697
  "members":{
596
698
  }
597
699
  },
700
+ "DeleteInsightRulesInput":{
701
+ "type":"structure",
702
+ "required":["RuleNames"],
703
+ "members":{
704
+ "RuleNames":{"shape":"InsightRuleNames"}
705
+ }
706
+ },
707
+ "DeleteInsightRulesOutput":{
708
+ "type":"structure",
709
+ "members":{
710
+ "Failures":{"shape":"BatchFailures"}
711
+ }
712
+ },
598
713
  "DescribeAlarmHistoryInput":{
599
714
  "type":"structure",
600
715
  "members":{
@@ -670,6 +785,20 @@
670
785
  "NextToken":{"shape":"NextToken"}
671
786
  }
672
787
  },
788
+ "DescribeInsightRulesInput":{
789
+ "type":"structure",
790
+ "members":{
791
+ "NextToken":{"shape":"NextToken"},
792
+ "MaxResults":{"shape":"InsightRuleMaxResults"}
793
+ }
794
+ },
795
+ "DescribeInsightRulesOutput":{
796
+ "type":"structure",
797
+ "members":{
798
+ "NextToken":{"shape":"NextToken"},
799
+ "InsightRules":{"shape":"InsightRules"}
800
+ }
801
+ },
673
802
  "Dimension":{
674
803
  "type":"structure",
675
804
  "required":[
@@ -720,6 +849,19 @@
720
849
  "AlarmNames":{"shape":"AlarmNames"}
721
850
  }
722
851
  },
852
+ "DisableInsightRulesInput":{
853
+ "type":"structure",
854
+ "required":["RuleNames"],
855
+ "members":{
856
+ "RuleNames":{"shape":"InsightRuleNames"}
857
+ }
858
+ },
859
+ "DisableInsightRulesOutput":{
860
+ "type":"structure",
861
+ "members":{
862
+ "Failures":{"shape":"BatchFailures"}
863
+ }
864
+ },
723
865
  "EnableAlarmActionsInput":{
724
866
  "type":"structure",
725
867
  "required":["AlarmNames"],
@@ -727,6 +869,19 @@
727
869
  "AlarmNames":{"shape":"AlarmNames"}
728
870
  }
729
871
  },
872
+ "EnableInsightRulesInput":{
873
+ "type":"structure",
874
+ "required":["RuleNames"],
875
+ "members":{
876
+ "RuleNames":{"shape":"InsightRuleNames"}
877
+ }
878
+ },
879
+ "EnableInsightRulesOutput":{
880
+ "type":"structure",
881
+ "members":{
882
+ "Failures":{"shape":"BatchFailures"}
883
+ }
884
+ },
730
885
  "ErrorMessage":{
731
886
  "type":"string",
732
887
  "max":255,
@@ -741,6 +896,7 @@
741
896
  "type":"integer",
742
897
  "min":1
743
898
  },
899
+ "ExceptionType":{"type":"string"},
744
900
  "ExtendedStatistic":{
745
901
  "type":"string",
746
902
  "pattern":"p(\\d{1,2}(\\.\\d{0,2})?|100)"
@@ -751,6 +907,9 @@
751
907
  "max":10,
752
908
  "min":1
753
909
  },
910
+ "FailureCode":{"type":"string"},
911
+ "FailureDescription":{"type":"string"},
912
+ "FailureResource":{"type":"string"},
754
913
  "FaultDescription":{"type":"string"},
755
914
  "GetDashboardInput":{
756
915
  "type":"structure",
@@ -767,6 +926,35 @@
767
926
  "DashboardName":{"shape":"DashboardName"}
768
927
  }
769
928
  },
929
+ "GetInsightRuleReportInput":{
930
+ "type":"structure",
931
+ "required":[
932
+ "RuleName",
933
+ "StartTime",
934
+ "EndTime",
935
+ "Period"
936
+ ],
937
+ "members":{
938
+ "RuleName":{"shape":"InsightRuleName"},
939
+ "StartTime":{"shape":"Timestamp"},
940
+ "EndTime":{"shape":"Timestamp"},
941
+ "Period":{"shape":"Period"},
942
+ "MaxContributorCount":{"shape":"InsightRuleUnboundInteger"},
943
+ "Metrics":{"shape":"InsightRuleMetricList"},
944
+ "OrderBy":{"shape":"InsightRuleOrderBy"}
945
+ }
946
+ },
947
+ "GetInsightRuleReportOutput":{
948
+ "type":"structure",
949
+ "members":{
950
+ "KeyLabels":{"shape":"InsightRuleContributorKeyLabels"},
951
+ "AggregationStatistic":{"shape":"InsightRuleAggregationStatistic"},
952
+ "AggregateValue":{"shape":"InsightRuleUnboundDouble"},
953
+ "ApproximateUniqueCount":{"shape":"InsightRuleUnboundLong"},
954
+ "Contributors":{"shape":"InsightRuleContributors"},
955
+ "MetricDatapoints":{"shape":"InsightRuleMetricDatapoints"}
956
+ }
957
+ },
770
958
  "GetMetricDataInput":{
771
959
  "type":"structure",
772
960
  "required":[
@@ -852,6 +1040,133 @@
852
1040
  "max":255,
853
1041
  "min":1
854
1042
  },
1043
+ "InsightRule":{
1044
+ "type":"structure",
1045
+ "required":[
1046
+ "Name",
1047
+ "State",
1048
+ "Schema",
1049
+ "Definition"
1050
+ ],
1051
+ "members":{
1052
+ "Name":{"shape":"InsightRuleName"},
1053
+ "State":{"shape":"InsightRuleState"},
1054
+ "Schema":{"shape":"InsightRuleSchema"},
1055
+ "Definition":{"shape":"InsightRuleDefinition"}
1056
+ }
1057
+ },
1058
+ "InsightRuleAggregationStatistic":{"type":"string"},
1059
+ "InsightRuleContributor":{
1060
+ "type":"structure",
1061
+ "required":[
1062
+ "Keys",
1063
+ "ApproximateAggregateValue",
1064
+ "Datapoints"
1065
+ ],
1066
+ "members":{
1067
+ "Keys":{"shape":"InsightRuleContributorKeys"},
1068
+ "ApproximateAggregateValue":{"shape":"InsightRuleUnboundDouble"},
1069
+ "Datapoints":{"shape":"InsightRuleContributorDatapoints"}
1070
+ }
1071
+ },
1072
+ "InsightRuleContributorDatapoint":{
1073
+ "type":"structure",
1074
+ "required":[
1075
+ "Timestamp",
1076
+ "ApproximateValue"
1077
+ ],
1078
+ "members":{
1079
+ "Timestamp":{"shape":"Timestamp"},
1080
+ "ApproximateValue":{"shape":"InsightRuleUnboundDouble"}
1081
+ }
1082
+ },
1083
+ "InsightRuleContributorDatapoints":{
1084
+ "type":"list",
1085
+ "member":{"shape":"InsightRuleContributorDatapoint"}
1086
+ },
1087
+ "InsightRuleContributorKey":{"type":"string"},
1088
+ "InsightRuleContributorKeyLabel":{"type":"string"},
1089
+ "InsightRuleContributorKeyLabels":{
1090
+ "type":"list",
1091
+ "member":{"shape":"InsightRuleContributorKeyLabel"}
1092
+ },
1093
+ "InsightRuleContributorKeys":{
1094
+ "type":"list",
1095
+ "member":{"shape":"InsightRuleContributorKey"}
1096
+ },
1097
+ "InsightRuleContributors":{
1098
+ "type":"list",
1099
+ "member":{"shape":"InsightRuleContributor"}
1100
+ },
1101
+ "InsightRuleDefinition":{
1102
+ "type":"string",
1103
+ "max":8192,
1104
+ "min":1,
1105
+ "pattern":"[\\x00-\\x7F]+"
1106
+ },
1107
+ "InsightRuleMaxResults":{
1108
+ "type":"integer",
1109
+ "max":500,
1110
+ "min":1
1111
+ },
1112
+ "InsightRuleMetricDatapoint":{
1113
+ "type":"structure",
1114
+ "required":["Timestamp"],
1115
+ "members":{
1116
+ "Timestamp":{"shape":"Timestamp"},
1117
+ "UniqueContributors":{"shape":"InsightRuleUnboundDouble"},
1118
+ "MaxContributorValue":{"shape":"InsightRuleUnboundDouble"},
1119
+ "SampleCount":{"shape":"InsightRuleUnboundDouble"},
1120
+ "Average":{"shape":"InsightRuleUnboundDouble"},
1121
+ "Sum":{"shape":"InsightRuleUnboundDouble"},
1122
+ "Minimum":{"shape":"InsightRuleUnboundDouble"},
1123
+ "Maximum":{"shape":"InsightRuleUnboundDouble"}
1124
+ }
1125
+ },
1126
+ "InsightRuleMetricDatapoints":{
1127
+ "type":"list",
1128
+ "member":{"shape":"InsightRuleMetricDatapoint"}
1129
+ },
1130
+ "InsightRuleMetricList":{
1131
+ "type":"list",
1132
+ "member":{"shape":"InsightRuleMetricName"}
1133
+ },
1134
+ "InsightRuleMetricName":{
1135
+ "type":"string",
1136
+ "max":32,
1137
+ "min":1,
1138
+ "pattern":"[\\x20-\\x7E]+"
1139
+ },
1140
+ "InsightRuleName":{
1141
+ "type":"string",
1142
+ "max":128,
1143
+ "min":1,
1144
+ "pattern":"[\\x20-\\x7E]+"
1145
+ },
1146
+ "InsightRuleNames":{
1147
+ "type":"list",
1148
+ "member":{"shape":"InsightRuleName"}
1149
+ },
1150
+ "InsightRuleOrderBy":{
1151
+ "type":"string",
1152
+ "max":32,
1153
+ "min":1,
1154
+ "pattern":"[\\x20-\\x7E]+"
1155
+ },
1156
+ "InsightRuleSchema":{"type":"string"},
1157
+ "InsightRuleState":{
1158
+ "type":"string",
1159
+ "max":32,
1160
+ "min":1,
1161
+ "pattern":"[\\x20-\\x7E]+"
1162
+ },
1163
+ "InsightRuleUnboundDouble":{"type":"double"},
1164
+ "InsightRuleUnboundInteger":{"type":"integer"},
1165
+ "InsightRuleUnboundLong":{"type":"long"},
1166
+ "InsightRules":{
1167
+ "type":"list",
1168
+ "member":{"shape":"InsightRule"}
1169
+ },
855
1170
  "InternalServiceFault":{
856
1171
  "type":"structure",
857
1172
  "members":{
@@ -1193,6 +1508,15 @@
1193
1508
  },
1194
1509
  "NextToken":{"type":"string"},
1195
1510
  "OutputFormat":{"type":"string"},
1511
+ "PartialFailure":{
1512
+ "type":"structure",
1513
+ "members":{
1514
+ "FailureResource":{"shape":"FailureResource"},
1515
+ "ExceptionType":{"shape":"ExceptionType"},
1516
+ "FailureCode":{"shape":"FailureCode"},
1517
+ "FailureDescription":{"shape":"FailureDescription"}
1518
+ }
1519
+ },
1196
1520
  "Period":{
1197
1521
  "type":"integer",
1198
1522
  "min":1
@@ -1234,6 +1558,23 @@
1234
1558
  "DashboardValidationMessages":{"shape":"DashboardValidationMessages"}
1235
1559
  }
1236
1560
  },
1561
+ "PutInsightRuleInput":{
1562
+ "type":"structure",
1563
+ "required":[
1564
+ "RuleName",
1565
+ "RuleDefinition"
1566
+ ],
1567
+ "members":{
1568
+ "RuleName":{"shape":"InsightRuleName"},
1569
+ "RuleState":{"shape":"InsightRuleState"},
1570
+ "RuleDefinition":{"shape":"InsightRuleDefinition"}
1571
+ }
1572
+ },
1573
+ "PutInsightRuleOutput":{
1574
+ "type":"structure",
1575
+ "members":{
1576
+ }
1577
+ },
1237
1578
  "PutMetricAlarmInput":{
1238
1579
  "type":"structure",
1239
1580
  "required":[