aws-sdk-core 2.11.571 → 2.11.576

Sign up to get free protection for your applications and to get access to all the features.
@@ -2662,10 +2662,7 @@
2662
2662
  },
2663
2663
  "ListAssociatedAssetsRequest":{
2664
2664
  "type":"structure",
2665
- "required":[
2666
- "assetId",
2667
- "hierarchyId"
2668
- ],
2665
+ "required":["assetId"],
2669
2666
  "members":{
2670
2667
  "assetId":{
2671
2668
  "shape":"ID",
@@ -2677,6 +2674,11 @@
2677
2674
  "location":"querystring",
2678
2675
  "locationName":"hierarchyId"
2679
2676
  },
2677
+ "traversalDirection":{
2678
+ "shape":"TraversalDirection",
2679
+ "location":"querystring",
2680
+ "locationName":"traversalDirection"
2681
+ },
2680
2682
  "nextToken":{
2681
2683
  "shape":"NextToken",
2682
2684
  "location":"querystring",
@@ -2898,7 +2900,11 @@
2898
2900
  },
2899
2901
  "MonitorErrorCode":{
2900
2902
  "type":"string",
2901
- "enum":["INTERNAL_FAILURE"]
2903
+ "enum":[
2904
+ "INTERNAL_FAILURE",
2905
+ "VALIDATION_ERROR",
2906
+ "LIMIT_EXCEEDED"
2907
+ ]
2902
2908
  },
2903
2909
  "MonitorErrorDetails":{
2904
2910
  "type":"structure",
@@ -2972,7 +2978,8 @@
2972
2978
  "required":[
2973
2979
  "id",
2974
2980
  "name",
2975
- "startUrl"
2981
+ "startUrl",
2982
+ "status"
2976
2983
  ],
2977
2984
  "members":{
2978
2985
  "id":{"shape":"ID"},
@@ -2981,7 +2988,8 @@
2981
2988
  "startUrl":{"shape":"Url"},
2982
2989
  "creationDate":{"shape":"Timestamp"},
2983
2990
  "lastUpdateDate":{"shape":"Timestamp"},
2984
- "roleArn":{"shape":"ARN"}
2991
+ "roleArn":{"shape":"ARN"},
2992
+ "status":{"shape":"PortalStatus"}
2985
2993
  }
2986
2994
  },
2987
2995
  "ProjectResource":{
@@ -3028,7 +3036,6 @@
3028
3036
  },
3029
3037
  "PropertyAlias":{
3030
3038
  "type":"string",
3031
- "max":2048,
3032
3039
  "min":1,
3033
3040
  "pattern":"[^\\u0000-\\u001F\\u007F]+"
3034
3041
  },
@@ -3287,6 +3294,13 @@
3287
3294
  "variables":{"shape":"ExpressionVariables"}
3288
3295
  }
3289
3296
  },
3297
+ "TraversalDirection":{
3298
+ "type":"string",
3299
+ "enum":[
3300
+ "PARENT",
3301
+ "CHILD"
3302
+ ]
3303
+ },
3290
3304
  "TumblingWindow":{
3291
3305
  "type":"structure",
3292
3306
  "required":["interval"],
@@ -114,6 +114,34 @@
114
114
  }
115
115
  ]
116
116
  },
117
+ "DeleteConfiguration": {
118
+ "name": "DeleteConfiguration",
119
+ "http": {
120
+ "method": "DELETE",
121
+ "requestUri": "/v1/configurations/{arn}",
122
+ "responseCode": 200
123
+ },
124
+ "input": {
125
+ "shape": "DeleteConfigurationRequest"
126
+ },
127
+ "output": {
128
+ "shape": "DeleteConfigurationResponse"
129
+ },
130
+ "errors": [
131
+ {
132
+ "shape": "NotFoundException"
133
+ },
134
+ {
135
+ "shape": "BadRequestException"
136
+ },
137
+ {
138
+ "shape": "InternalServerErrorException"
139
+ },
140
+ {
141
+ "shape": "ForbiddenException"
142
+ }
143
+ ]
144
+ },
117
145
  "DescribeCluster": {
118
146
  "name": "DescribeCluster",
119
147
  "http": {
@@ -657,6 +685,37 @@
657
685
  }
658
686
  ]
659
687
  },
688
+ "UpdateConfiguration": {
689
+ "name": "UpdateConfiguration",
690
+ "http": {
691
+ "method": "PUT",
692
+ "requestUri": "/v1/configurations/{arn}",
693
+ "responseCode": 200
694
+ },
695
+ "input": {
696
+ "shape": "UpdateConfigurationRequest"
697
+ },
698
+ "output": {
699
+ "shape": "UpdateConfigurationResponse"
700
+ },
701
+ "errors": [
702
+ {
703
+ "shape": "ServiceUnavailableException"
704
+ },
705
+ {
706
+ "shape": "BadRequestException"
707
+ },
708
+ {
709
+ "shape": "UnauthorizedException"
710
+ },
711
+ {
712
+ "shape": "InternalServerErrorException"
713
+ },
714
+ {
715
+ "shape": "ForbiddenException"
716
+ }
717
+ ]
718
+ },
660
719
  "UpdateClusterConfiguration": {
661
720
  "name": "UpdateClusterConfiguration",
662
721
  "http": {
@@ -1107,6 +1166,10 @@
1107
1166
  "Name": {
1108
1167
  "shape": "__string",
1109
1168
  "locationName": "name"
1169
+ },
1170
+ "State": {
1171
+ "shape": "ConfigurationState",
1172
+ "locationName": "state"
1110
1173
  }
1111
1174
  },
1112
1175
  "required": [
@@ -1115,7 +1178,8 @@
1115
1178
  "CreationTime",
1116
1179
  "KafkaVersions",
1117
1180
  "Arn",
1118
- "Name"
1181
+ "Name",
1182
+ "State"
1119
1183
  ]
1120
1184
  },
1121
1185
  "ConfigurationInfo": {
@@ -1156,6 +1220,14 @@
1156
1220
  "CreationTime"
1157
1221
  ]
1158
1222
  },
1223
+ "ConfigurationState": {
1224
+ "type": "string",
1225
+ "enum": [
1226
+ "ACTIVE",
1227
+ "DELETING",
1228
+ "DELETE_FAILED"
1229
+ ]
1230
+ },
1159
1231
  "ConflictException": {
1160
1232
  "type": "structure",
1161
1233
  "members": {
@@ -1288,6 +1360,10 @@
1288
1360
  "Name": {
1289
1361
  "shape": "__string",
1290
1362
  "locationName": "name"
1363
+ },
1364
+ "State": {
1365
+ "shape": "ConfigurationState",
1366
+ "locationName": "state"
1291
1367
  }
1292
1368
  }
1293
1369
  },
@@ -1322,6 +1398,32 @@
1322
1398
  }
1323
1399
  }
1324
1400
  },
1401
+ "DeleteConfigurationRequest": {
1402
+ "type": "structure",
1403
+ "members": {
1404
+ "Arn": {
1405
+ "shape": "__string",
1406
+ "location": "uri",
1407
+ "locationName": "arn"
1408
+ }
1409
+ },
1410
+ "required": [
1411
+ "Arn"
1412
+ ]
1413
+ },
1414
+ "DeleteConfigurationResponse": {
1415
+ "type": "structure",
1416
+ "members": {
1417
+ "Arn": {
1418
+ "shape": "__string",
1419
+ "locationName": "arn"
1420
+ },
1421
+ "State": {
1422
+ "shape": "ConfigurationState",
1423
+ "locationName": "state"
1424
+ }
1425
+ }
1426
+ },
1325
1427
  "DescribeClusterOperationRequest": {
1326
1428
  "type": "structure",
1327
1429
  "members": {
@@ -1405,6 +1507,10 @@
1405
1507
  "Name": {
1406
1508
  "shape": "__string",
1407
1509
  "locationName": "name"
1510
+ },
1511
+ "State": {
1512
+ "shape": "ConfigurationState",
1513
+ "locationName": "state"
1408
1514
  }
1409
1515
  }
1410
1516
  },
@@ -2228,6 +2334,41 @@
2228
2334
  }
2229
2335
  }
2230
2336
  },
2337
+ "UpdateConfigurationRequest" : {
2338
+ "type": "structure",
2339
+ "members": {
2340
+ "Arn": {
2341
+ "shape": "__string",
2342
+ "location": "uri",
2343
+ "locationName": "arn"
2344
+ },
2345
+ "Description": {
2346
+ "shape": "__string",
2347
+ "locationName": "description"
2348
+ },
2349
+ "ServerProperties": {
2350
+ "shape": "__blob",
2351
+ "locationName": "serverProperties"
2352
+ }
2353
+ },
2354
+ "required": [
2355
+ "Arn",
2356
+ "ServerProperties"
2357
+ ]
2358
+ },
2359
+ "UpdateConfigurationResponse" : {
2360
+ "type": "structure",
2361
+ "members": {
2362
+ "Arn": {
2363
+ "shape": "__string",
2364
+ "locationName": "arn"
2365
+ },
2366
+ "LatestRevision": {
2367
+ "shape": "ConfigurationRevision",
2368
+ "locationName": "latestRevision"
2369
+ }
2370
+ }
2371
+ },
2231
2372
  "UpdateMonitoringRequest" : {
2232
2373
  "type" : "structure",
2233
2374
  "members" : {
@@ -1156,6 +1156,35 @@
1156
1156
  "members": {
1157
1157
  }
1158
1158
  },
1159
+ "AudioChannelTag": {
1160
+ "type": "string",
1161
+ "enum": [
1162
+ "L",
1163
+ "R",
1164
+ "C",
1165
+ "LFE",
1166
+ "LS",
1167
+ "RS",
1168
+ "LC",
1169
+ "RC",
1170
+ "CS",
1171
+ "LSD",
1172
+ "RSD",
1173
+ "TCS",
1174
+ "VHL",
1175
+ "VHC",
1176
+ "VHR"
1177
+ ]
1178
+ },
1179
+ "AudioChannelTaggingSettings": {
1180
+ "type": "structure",
1181
+ "members": {
1182
+ "ChannelTag": {
1183
+ "shape": "AudioChannelTag",
1184
+ "locationName": "channelTag"
1185
+ }
1186
+ }
1187
+ },
1159
1188
  "AudioCodec": {
1160
1189
  "type": "string",
1161
1190
  "enum": [
@@ -1231,6 +1260,10 @@
1231
1260
  "AudioDescription": {
1232
1261
  "type": "structure",
1233
1262
  "members": {
1263
+ "AudioChannelTaggingSettings": {
1264
+ "shape": "AudioChannelTaggingSettings",
1265
+ "locationName": "audioChannelTaggingSettings"
1266
+ },
1234
1267
  "AudioNormalizationSettings": {
1235
1268
  "shape": "AudioNormalizationSettings",
1236
1269
  "locationName": "audioNormalizationSettings"
@@ -1351,7 +1384,7 @@
1351
1384
  "locationName": "defaultSelection"
1352
1385
  },
1353
1386
  "ExternalAudioFileInput": {
1354
- "shape": "__stringPatternS3WWEEBBMMMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEEHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEE",
1387
+ "shape": "__stringPatternS3MM2PPWWEEBBMMMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEEHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEE",
1355
1388
  "locationName": "externalAudioFileInput"
1356
1389
  },
1357
1390
  "LanguageCode": {
@@ -4436,6 +4469,13 @@
4436
4469
  "M2TS"
4437
4470
  ]
4438
4471
  },
4472
+ "HlsAudioOnlyHeader": {
4473
+ "type": "string",
4474
+ "enum": [
4475
+ "INCLUDE",
4476
+ "EXCLUDE"
4477
+ ]
4478
+ },
4439
4479
  "HlsAudioTrackType": {
4440
4480
  "type": "string",
4441
4481
  "enum": [
@@ -4546,6 +4586,10 @@
4546
4586
  "shape": "__listOfHlsAdditionalManifest",
4547
4587
  "locationName": "additionalManifests"
4548
4588
  },
4589
+ "AudioOnlyHeader": {
4590
+ "shape": "HlsAudioOnlyHeader",
4591
+ "locationName": "audioOnlyHeader"
4592
+ },
4549
4593
  "BaseUrl": {
4550
4594
  "shape": "__string",
4551
4595
  "locationName": "baseUrl"
@@ -4834,7 +4878,7 @@
4834
4878
  "locationName": "denoiseFilter"
4835
4879
  },
4836
4880
  "FileInput": {
4837
- "shape": "__stringPatternS3MM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLLHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLL",
4881
+ "shape": "__stringPatternS3MM2PPMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLLHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLL",
4838
4882
  "locationName": "fileInput"
4839
4883
  },
4840
4884
  "FilterEnable": {
@@ -9208,13 +9252,13 @@
9208
9252
  "type": "string",
9209
9253
  "pattern": "^s3:\\/\\/.*\\/(ASSETMAP.xml)?$"
9210
9254
  },
9211
- "__stringPatternS3MM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLLHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLL": {
9255
+ "__stringPatternS3MM2PPMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLLHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLL": {
9212
9256
  "type": "string",
9213
- "pattern": "^((s3://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[wW][eE][bB][mM]|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL]))))|(https?://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[wW][eE][bB][mM]|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL])))(\\?([^&=]+=[^&]+&)*[^&=]+=[^&]+)?))$"
9257
+ "pattern": "^((s3://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[pP]|[mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][kK][aA]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[wW][eE][bB][mM]|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL]))))|(https?://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][kK][aA]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[wW][eE][bB][mM]|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL])))(\\?([^&=]+=[^&]+&)*[^&=]+=[^&]+)?))$"
9214
9258
  },
9215
- "__stringPatternS3WWEEBBMMMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEEHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEE": {
9259
+ "__stringPatternS3MM2PPWWEEBBMMMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEEHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEE": {
9216
9260
  "type": "string",
9217
- "pattern": "^((s3://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([wW][eE][bB][mM]|[mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[aA][aA][cC]|[aA][iI][fF][fF]|[mM][pP]2|[aA][cC]3|[eE][cC]3|[dD][tT][sS][eE]))))|(https?://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[aA][aA][cC]|[aA][iI][fF][fF]|[mM][pP]2|[aA][cC]3|[eE][cC]3|[dD][tT][sS][eE])))(\\?([^&=]+=[^&]+&)*[^&=]+=[^&]+)?))$"
9261
+ "pattern": "^((s3://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[pP]|[wW][eE][bB][mM]|[mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][kK][aA]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[aA][aA][cC]|[aA][iI][fF][fF]|[mM][pP]2|[aA][cC]3|[eE][cC]3|[dD][tT][sS][eE]))))|(https?://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][kK][aA]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[aA][aA][cC]|[aA][iI][fF][fF]|[mM][pP]2|[aA][cC]3|[eE][cC]3|[dD][tT][sS][eE])))(\\?([^&=]+=[^&]+&)*[^&=]+=[^&]+)?))$"
9218
9262
  },
9219
9263
  "__stringPatternSNManifestConfirmConditionNotificationNS": {
9220
9264
  "type": "string",
@@ -9241,4 +9285,4 @@
9241
9285
  "timestampFormat": "unixTimestamp"
9242
9286
  }
9243
9287
  }
9244
- }
9288
+ }
@@ -31,6 +31,25 @@
31
31
  {"shape":"ThrottlingException"}
32
32
  ]
33
33
  },
34
+ "AssociateResolverQueryLogConfig":{
35
+ "name":"AssociateResolverQueryLogConfig",
36
+ "http":{
37
+ "method":"POST",
38
+ "requestUri":"/"
39
+ },
40
+ "input":{"shape":"AssociateResolverQueryLogConfigRequest"},
41
+ "output":{"shape":"AssociateResolverQueryLogConfigResponse"},
42
+ "errors":[
43
+ {"shape":"InvalidParameterException"},
44
+ {"shape":"ResourceNotFoundException"},
45
+ {"shape":"InvalidRequestException"},
46
+ {"shape":"ResourceExistsException"},
47
+ {"shape":"LimitExceededException"},
48
+ {"shape":"InternalServiceErrorException"},
49
+ {"shape":"ThrottlingException"},
50
+ {"shape":"AccessDeniedException"}
51
+ ]
52
+ },
34
53
  "AssociateResolverRule":{
35
54
  "name":"AssociateResolverRule",
36
55
  "http":{
@@ -42,6 +61,7 @@
42
61
  "errors":[
43
62
  {"shape":"ResourceNotFoundException"},
44
63
  {"shape":"InvalidRequestException"},
64
+ {"shape":"LimitExceededException"},
45
65
  {"shape":"InvalidParameterException"},
46
66
  {"shape":"ResourceUnavailableException"},
47
67
  {"shape":"ResourceExistsException"},
@@ -67,6 +87,25 @@
67
87
  {"shape":"ThrottlingException"}
68
88
  ]
69
89
  },
90
+ "CreateResolverQueryLogConfig":{
91
+ "name":"CreateResolverQueryLogConfig",
92
+ "http":{
93
+ "method":"POST",
94
+ "requestUri":"/"
95
+ },
96
+ "input":{"shape":"CreateResolverQueryLogConfigRequest"},
97
+ "output":{"shape":"CreateResolverQueryLogConfigResponse"},
98
+ "errors":[
99
+ {"shape":"InvalidParameterException"},
100
+ {"shape":"ResourceNotFoundException"},
101
+ {"shape":"InvalidRequestException"},
102
+ {"shape":"ResourceExistsException"},
103
+ {"shape":"LimitExceededException"},
104
+ {"shape":"InternalServiceErrorException"},
105
+ {"shape":"ThrottlingException"},
106
+ {"shape":"AccessDeniedException"}
107
+ ]
108
+ },
70
109
  "CreateResolverRule":{
71
110
  "name":"CreateResolverRule",
72
111
  "http":{
@@ -102,6 +141,23 @@
102
141
  {"shape":"ThrottlingException"}
103
142
  ]
104
143
  },
144
+ "DeleteResolverQueryLogConfig":{
145
+ "name":"DeleteResolverQueryLogConfig",
146
+ "http":{
147
+ "method":"POST",
148
+ "requestUri":"/"
149
+ },
150
+ "input":{"shape":"DeleteResolverQueryLogConfigRequest"},
151
+ "output":{"shape":"DeleteResolverQueryLogConfigResponse"},
152
+ "errors":[
153
+ {"shape":"ResourceNotFoundException"},
154
+ {"shape":"InvalidParameterException"},
155
+ {"shape":"InvalidRequestException"},
156
+ {"shape":"InternalServiceErrorException"},
157
+ {"shape":"ThrottlingException"},
158
+ {"shape":"AccessDeniedException"}
159
+ ]
160
+ },
105
161
  "DeleteResolverRule":{
106
162
  "name":"DeleteResolverRule",
107
163
  "http":{
@@ -135,6 +191,23 @@
135
191
  {"shape":"ThrottlingException"}
136
192
  ]
137
193
  },
194
+ "DisassociateResolverQueryLogConfig":{
195
+ "name":"DisassociateResolverQueryLogConfig",
196
+ "http":{
197
+ "method":"POST",
198
+ "requestUri":"/"
199
+ },
200
+ "input":{"shape":"DisassociateResolverQueryLogConfigRequest"},
201
+ "output":{"shape":"DisassociateResolverQueryLogConfigResponse"},
202
+ "errors":[
203
+ {"shape":"ResourceNotFoundException"},
204
+ {"shape":"InvalidParameterException"},
205
+ {"shape":"InvalidRequestException"},
206
+ {"shape":"InternalServiceErrorException"},
207
+ {"shape":"ThrottlingException"},
208
+ {"shape":"AccessDeniedException"}
209
+ ]
210
+ },
138
211
  "DisassociateResolverRule":{
139
212
  "name":"DisassociateResolverRule",
140
213
  "http":{
@@ -165,6 +238,56 @@
165
238
  {"shape":"ThrottlingException"}
166
239
  ]
167
240
  },
241
+ "GetResolverQueryLogConfig":{
242
+ "name":"GetResolverQueryLogConfig",
243
+ "http":{
244
+ "method":"POST",
245
+ "requestUri":"/"
246
+ },
247
+ "input":{"shape":"GetResolverQueryLogConfigRequest"},
248
+ "output":{"shape":"GetResolverQueryLogConfigResponse"},
249
+ "errors":[
250
+ {"shape":"ResourceNotFoundException"},
251
+ {"shape":"InvalidRequestException"},
252
+ {"shape":"InvalidParameterException"},
253
+ {"shape":"InternalServiceErrorException"},
254
+ {"shape":"ThrottlingException"},
255
+ {"shape":"AccessDeniedException"}
256
+ ]
257
+ },
258
+ "GetResolverQueryLogConfigAssociation":{
259
+ "name":"GetResolverQueryLogConfigAssociation",
260
+ "http":{
261
+ "method":"POST",
262
+ "requestUri":"/"
263
+ },
264
+ "input":{"shape":"GetResolverQueryLogConfigAssociationRequest"},
265
+ "output":{"shape":"GetResolverQueryLogConfigAssociationResponse"},
266
+ "errors":[
267
+ {"shape":"ResourceNotFoundException"},
268
+ {"shape":"InvalidRequestException"},
269
+ {"shape":"InvalidParameterException"},
270
+ {"shape":"InternalServiceErrorException"},
271
+ {"shape":"ThrottlingException"},
272
+ {"shape":"AccessDeniedException"}
273
+ ]
274
+ },
275
+ "GetResolverQueryLogConfigPolicy":{
276
+ "name":"GetResolverQueryLogConfigPolicy",
277
+ "http":{
278
+ "method":"POST",
279
+ "requestUri":"/"
280
+ },
281
+ "input":{"shape":"GetResolverQueryLogConfigPolicyRequest"},
282
+ "output":{"shape":"GetResolverQueryLogConfigPolicyResponse"},
283
+ "errors":[
284
+ {"shape":"InvalidParameterException"},
285
+ {"shape":"InvalidRequestException"},
286
+ {"shape":"UnknownResourceException"},
287
+ {"shape":"InternalServiceErrorException"},
288
+ {"shape":"AccessDeniedException"}
289
+ ]
290
+ },
168
291
  "GetResolverRule":{
169
292
  "name":"GetResolverRule",
170
293
  "http":{
@@ -241,6 +364,40 @@
241
364
  {"shape":"ThrottlingException"}
242
365
  ]
243
366
  },
367
+ "ListResolverQueryLogConfigAssociations":{
368
+ "name":"ListResolverQueryLogConfigAssociations",
369
+ "http":{
370
+ "method":"POST",
371
+ "requestUri":"/"
372
+ },
373
+ "input":{"shape":"ListResolverQueryLogConfigAssociationsRequest"},
374
+ "output":{"shape":"ListResolverQueryLogConfigAssociationsResponse"},
375
+ "errors":[
376
+ {"shape":"InvalidParameterException"},
377
+ {"shape":"InvalidRequestException"},
378
+ {"shape":"LimitExceededException"},
379
+ {"shape":"InternalServiceErrorException"},
380
+ {"shape":"ThrottlingException"},
381
+ {"shape":"AccessDeniedException"}
382
+ ]
383
+ },
384
+ "ListResolverQueryLogConfigs":{
385
+ "name":"ListResolverQueryLogConfigs",
386
+ "http":{
387
+ "method":"POST",
388
+ "requestUri":"/"
389
+ },
390
+ "input":{"shape":"ListResolverQueryLogConfigsRequest"},
391
+ "output":{"shape":"ListResolverQueryLogConfigsResponse"},
392
+ "errors":[
393
+ {"shape":"InvalidNextTokenException"},
394
+ {"shape":"InvalidRequestException"},
395
+ {"shape":"InvalidParameterException"},
396
+ {"shape":"InternalServiceErrorException"},
397
+ {"shape":"ThrottlingException"},
398
+ {"shape":"AccessDeniedException"}
399
+ ]
400
+ },
244
401
  "ListResolverRuleAssociations":{
245
402
  "name":"ListResolverRuleAssociations",
246
403
  "http":{
@@ -290,6 +447,23 @@
290
447
  {"shape":"ThrottlingException"}
291
448
  ]
292
449
  },
450
+ "PutResolverQueryLogConfigPolicy":{
451
+ "name":"PutResolverQueryLogConfigPolicy",
452
+ "http":{
453
+ "method":"POST",
454
+ "requestUri":"/"
455
+ },
456
+ "input":{"shape":"PutResolverQueryLogConfigPolicyRequest"},
457
+ "output":{"shape":"PutResolverQueryLogConfigPolicyResponse"},
458
+ "errors":[
459
+ {"shape":"InvalidPolicyDocument"},
460
+ {"shape":"InvalidParameterException"},
461
+ {"shape":"InvalidRequestException"},
462
+ {"shape":"UnknownResourceException"},
463
+ {"shape":"InternalServiceErrorException"},
464
+ {"shape":"AccessDeniedException"}
465
+ ]
466
+ },
293
467
  "PutResolverRulePolicy":{
294
468
  "name":"PutResolverRulePolicy",
295
469
  "http":{
@@ -317,6 +491,7 @@
317
491
  {"shape":"LimitExceededException"},
318
492
  {"shape":"ResourceNotFoundException"},
319
493
  {"shape":"InvalidParameterException"},
494
+ {"shape":"InvalidRequestException"},
320
495
  {"shape":"InvalidTagException"},
321
496
  {"shape":"InternalServiceErrorException"},
322
497
  {"shape":"ThrottlingException"}
@@ -333,6 +508,7 @@
333
508
  "errors":[
334
509
  {"shape":"ResourceNotFoundException"},
335
510
  {"shape":"InvalidParameterException"},
511
+ {"shape":"InvalidRequestException"},
336
512
  {"shape":"InternalServiceErrorException"},
337
513
  {"shape":"ThrottlingException"}
338
514
  ]
@@ -373,6 +549,13 @@
373
549
  }
374
550
  },
375
551
  "shapes":{
552
+ "AccessDeniedException":{
553
+ "type":"structure",
554
+ "members":{
555
+ "Message":{"shape":"ExceptionMessage"}
556
+ },
557
+ "exception":true
558
+ },
376
559
  "AccountId":{
377
560
  "type":"string",
378
561
  "max":32,
@@ -400,6 +583,23 @@
400
583
  "ResolverEndpoint":{"shape":"ResolverEndpoint"}
401
584
  }
402
585
  },
586
+ "AssociateResolverQueryLogConfigRequest":{
587
+ "type":"structure",
588
+ "required":[
589
+ "ResolverQueryLogConfigId",
590
+ "ResourceId"
591
+ ],
592
+ "members":{
593
+ "ResolverQueryLogConfigId":{"shape":"ResourceId"},
594
+ "ResourceId":{"shape":"ResourceId"}
595
+ }
596
+ },
597
+ "AssociateResolverQueryLogConfigResponse":{
598
+ "type":"structure",
599
+ "members":{
600
+ "ResolverQueryLogConfigAssociation":{"shape":"ResolverQueryLogConfigAssociation"}
601
+ }
602
+ },
403
603
  "AssociateResolverRuleRequest":{
404
604
  "type":"structure",
405
605
  "required":[
@@ -419,6 +619,7 @@
419
619
  }
420
620
  },
421
621
  "Boolean":{"type":"boolean"},
622
+ "Count":{"type":"integer"},
422
623
  "CreateResolverEndpointRequest":{
423
624
  "type":"structure",
424
625
  "required":[
@@ -448,6 +649,32 @@
448
649
  "ResolverEndpoint":{"shape":"ResolverEndpoint"}
449
650
  }
450
651
  },
652
+ "CreateResolverQueryLogConfigRequest":{
653
+ "type":"structure",
654
+ "required":[
655
+ "Name",
656
+ "DestinationArn",
657
+ "CreatorRequestId"
658
+ ],
659
+ "members":{
660
+ "Name":{"shape":"ResolverQueryLogConfigName"},
661
+ "DestinationArn":{"shape":"DestinationArn"},
662
+ "CreatorRequestId":{
663
+ "shape":"CreatorRequestId",
664
+ "idempotencyToken":true
665
+ },
666
+ "Tags":{
667
+ "shape":"TagList",
668
+ "box":true
669
+ }
670
+ }
671
+ },
672
+ "CreateResolverQueryLogConfigResponse":{
673
+ "type":"structure",
674
+ "members":{
675
+ "ResolverQueryLogConfig":{"shape":"ResolverQueryLogConfig"}
676
+ }
677
+ },
451
678
  "CreateResolverRuleRequest":{
452
679
  "type":"structure",
453
680
  "required":[
@@ -498,6 +725,19 @@
498
725
  "ResolverEndpoint":{"shape":"ResolverEndpoint"}
499
726
  }
500
727
  },
728
+ "DeleteResolverQueryLogConfigRequest":{
729
+ "type":"structure",
730
+ "required":["ResolverQueryLogConfigId"],
731
+ "members":{
732
+ "ResolverQueryLogConfigId":{"shape":"ResourceId"}
733
+ }
734
+ },
735
+ "DeleteResolverQueryLogConfigResponse":{
736
+ "type":"structure",
737
+ "members":{
738
+ "ResolverQueryLogConfig":{"shape":"ResolverQueryLogConfig"}
739
+ }
740
+ },
501
741
  "DeleteResolverRuleRequest":{
502
742
  "type":"structure",
503
743
  "required":["ResolverRuleId"],
@@ -511,6 +751,11 @@
511
751
  "ResolverRule":{"shape":"ResolverRule"}
512
752
  }
513
753
  },
754
+ "DestinationArn":{
755
+ "type":"string",
756
+ "max":600,
757
+ "min":1
758
+ },
514
759
  "DisassociateResolverEndpointIpAddressRequest":{
515
760
  "type":"structure",
516
761
  "required":[
@@ -528,6 +773,23 @@
528
773
  "ResolverEndpoint":{"shape":"ResolverEndpoint"}
529
774
  }
530
775
  },
776
+ "DisassociateResolverQueryLogConfigRequest":{
777
+ "type":"structure",
778
+ "required":[
779
+ "ResolverQueryLogConfigId",
780
+ "ResourceId"
781
+ ],
782
+ "members":{
783
+ "ResolverQueryLogConfigId":{"shape":"ResourceId"},
784
+ "ResourceId":{"shape":"ResourceId"}
785
+ }
786
+ },
787
+ "DisassociateResolverQueryLogConfigResponse":{
788
+ "type":"structure",
789
+ "members":{
790
+ "ResolverQueryLogConfigAssociation":{"shape":"ResolverQueryLogConfigAssociation"}
791
+ }
792
+ },
531
793
  "DisassociateResolverRuleRequest":{
532
794
  "type":"structure",
533
795
  "required":[
@@ -565,7 +827,7 @@
565
827
  },
566
828
  "FilterValue":{
567
829
  "type":"string",
568
- "max":64,
830
+ "max":600,
569
831
  "min":1
570
832
  },
571
833
  "FilterValues":{
@@ -589,6 +851,45 @@
589
851
  "ResolverEndpoint":{"shape":"ResolverEndpoint"}
590
852
  }
591
853
  },
854
+ "GetResolverQueryLogConfigAssociationRequest":{
855
+ "type":"structure",
856
+ "required":["ResolverQueryLogConfigAssociationId"],
857
+ "members":{
858
+ "ResolverQueryLogConfigAssociationId":{"shape":"ResourceId"}
859
+ }
860
+ },
861
+ "GetResolverQueryLogConfigAssociationResponse":{
862
+ "type":"structure",
863
+ "members":{
864
+ "ResolverQueryLogConfigAssociation":{"shape":"ResolverQueryLogConfigAssociation"}
865
+ }
866
+ },
867
+ "GetResolverQueryLogConfigPolicyRequest":{
868
+ "type":"structure",
869
+ "required":["Arn"],
870
+ "members":{
871
+ "Arn":{"shape":"Arn"}
872
+ }
873
+ },
874
+ "GetResolverQueryLogConfigPolicyResponse":{
875
+ "type":"structure",
876
+ "members":{
877
+ "ResolverQueryLogConfigPolicy":{"shape":"ResolverQueryLogConfigPolicy"}
878
+ }
879
+ },
880
+ "GetResolverQueryLogConfigRequest":{
881
+ "type":"structure",
882
+ "required":["ResolverQueryLogConfigId"],
883
+ "members":{
884
+ "ResolverQueryLogConfigId":{"shape":"ResourceId"}
885
+ }
886
+ },
887
+ "GetResolverQueryLogConfigResponse":{
888
+ "type":"structure",
889
+ "members":{
890
+ "ResolverQueryLogConfig":{"shape":"ResolverQueryLogConfig"}
891
+ }
892
+ },
592
893
  "GetResolverRuleAssociationRequest":{
593
894
  "type":"structure",
594
895
  "required":["ResolverRuleAssociationId"],
@@ -799,6 +1100,53 @@
799
1100
  "ResolverEndpoints":{"shape":"ResolverEndpoints"}
800
1101
  }
801
1102
  },
1103
+ "ListResolverQueryLogConfigAssociationsRequest":{
1104
+ "type":"structure",
1105
+ "members":{
1106
+ "MaxResults":{"shape":"MaxResults"},
1107
+ "NextToken":{"shape":"NextToken"},
1108
+ "Filters":{"shape":"Filters"},
1109
+ "SortBy":{"shape":"SortByKey"},
1110
+ "SortOrder":{"shape":"SortOrder"}
1111
+ }
1112
+ },
1113
+ "ListResolverQueryLogConfigAssociationsResponse":{
1114
+ "type":"structure",
1115
+ "members":{
1116
+ "NextToken":{"shape":"NextToken"},
1117
+ "TotalCount":{"shape":"Count"},
1118
+ "TotalFilteredCount":{"shape":"Count"},
1119
+ "ResolverQueryLogConfigAssociations":{"shape":"ResolverQueryLogConfigAssociationList"}
1120
+ }
1121
+ },
1122
+ "ListResolverQueryLogConfigsRequest":{
1123
+ "type":"structure",
1124
+ "members":{
1125
+ "MaxResults":{
1126
+ "shape":"MaxResults",
1127
+ "box":true
1128
+ },
1129
+ "NextToken":{
1130
+ "shape":"NextToken",
1131
+ "box":true
1132
+ },
1133
+ "Filters":{
1134
+ "shape":"Filters",
1135
+ "box":true
1136
+ },
1137
+ "SortBy":{"shape":"SortByKey"},
1138
+ "SortOrder":{"shape":"SortOrder"}
1139
+ }
1140
+ },
1141
+ "ListResolverQueryLogConfigsResponse":{
1142
+ "type":"structure",
1143
+ "members":{
1144
+ "NextToken":{"shape":"NextToken"},
1145
+ "TotalCount":{"shape":"Count"},
1146
+ "TotalFilteredCount":{"shape":"Count"},
1147
+ "ResolverQueryLogConfigs":{"shape":"ResolverQueryLogConfigList"}
1148
+ }
1149
+ },
802
1150
  "ListResolverRuleAssociationsRequest":{
803
1151
  "type":"structure",
804
1152
  "members":{
@@ -879,7 +1227,7 @@
879
1227
  "Name":{
880
1228
  "type":"string",
881
1229
  "max":64,
882
- "pattern":"(?!^[0-9]+$)([a-zA-Z0-9-_' ']+)"
1230
+ "pattern":"(?!^[0-9]+$)([a-zA-Z0-9\\-_' ']+)"
883
1231
  },
884
1232
  "NextToken":{"type":"string"},
885
1233
  "Port":{
@@ -887,6 +1235,23 @@
887
1235
  "max":65535,
888
1236
  "min":0
889
1237
  },
1238
+ "PutResolverQueryLogConfigPolicyRequest":{
1239
+ "type":"structure",
1240
+ "required":[
1241
+ "Arn",
1242
+ "ResolverQueryLogConfigPolicy"
1243
+ ],
1244
+ "members":{
1245
+ "Arn":{"shape":"Arn"},
1246
+ "ResolverQueryLogConfigPolicy":{"shape":"ResolverQueryLogConfigPolicy"}
1247
+ }
1248
+ },
1249
+ "PutResolverQueryLogConfigPolicyResponse":{
1250
+ "type":"structure",
1251
+ "members":{
1252
+ "ReturnValue":{"shape":"Boolean"}
1253
+ }
1254
+ },
890
1255
  "PutResolverRulePolicyRequest":{
891
1256
  "type":"structure",
892
1257
  "required":[
@@ -943,6 +1308,80 @@
943
1308
  "type":"list",
944
1309
  "member":{"shape":"ResolverEndpoint"}
945
1310
  },
1311
+ "ResolverQueryLogConfig":{
1312
+ "type":"structure",
1313
+ "members":{
1314
+ "Id":{"shape":"ResourceId"},
1315
+ "OwnerId":{"shape":"AccountId"},
1316
+ "Status":{"shape":"ResolverQueryLogConfigStatus"},
1317
+ "ShareStatus":{"shape":"ShareStatus"},
1318
+ "AssociationCount":{"shape":"Count"},
1319
+ "Arn":{"shape":"Arn"},
1320
+ "Name":{"shape":"ResolverQueryLogConfigName"},
1321
+ "DestinationArn":{"shape":"DestinationArn"},
1322
+ "CreatorRequestId":{"shape":"CreatorRequestId"},
1323
+ "CreationTime":{"shape":"Rfc3339TimeString"}
1324
+ }
1325
+ },
1326
+ "ResolverQueryLogConfigAssociation":{
1327
+ "type":"structure",
1328
+ "members":{
1329
+ "Id":{"shape":"ResourceId"},
1330
+ "ResolverQueryLogConfigId":{"shape":"ResourceId"},
1331
+ "ResourceId":{"shape":"ResourceId"},
1332
+ "Status":{"shape":"ResolverQueryLogConfigAssociationStatus"},
1333
+ "Error":{"shape":"ResolverQueryLogConfigAssociationError"},
1334
+ "ErrorMessage":{"shape":"ResolverQueryLogConfigAssociationErrorMessage"},
1335
+ "CreationTime":{"shape":"Rfc3339TimeString"}
1336
+ }
1337
+ },
1338
+ "ResolverQueryLogConfigAssociationError":{
1339
+ "type":"string",
1340
+ "enum":[
1341
+ "NONE",
1342
+ "DESTINATION_NOT_FOUND",
1343
+ "ACCESS_DENIED",
1344
+ "INTERNAL_SERVICE_ERROR"
1345
+ ]
1346
+ },
1347
+ "ResolverQueryLogConfigAssociationErrorMessage":{"type":"string"},
1348
+ "ResolverQueryLogConfigAssociationList":{
1349
+ "type":"list",
1350
+ "member":{"shape":"ResolverQueryLogConfigAssociation"}
1351
+ },
1352
+ "ResolverQueryLogConfigAssociationStatus":{
1353
+ "type":"string",
1354
+ "enum":[
1355
+ "CREATING",
1356
+ "ACTIVE",
1357
+ "ACTION_NEEDED",
1358
+ "DELETING",
1359
+ "FAILED"
1360
+ ]
1361
+ },
1362
+ "ResolverQueryLogConfigList":{
1363
+ "type":"list",
1364
+ "member":{"shape":"ResolverQueryLogConfig"}
1365
+ },
1366
+ "ResolverQueryLogConfigName":{
1367
+ "type":"string",
1368
+ "max":64,
1369
+ "min":1,
1370
+ "pattern":"(?!^[0-9]+$)([a-zA-Z0-9\\-_' ']+)"
1371
+ },
1372
+ "ResolverQueryLogConfigPolicy":{
1373
+ "type":"string",
1374
+ "max":5000
1375
+ },
1376
+ "ResolverQueryLogConfigStatus":{
1377
+ "type":"string",
1378
+ "enum":[
1379
+ "CREATING",
1380
+ "CREATED",
1381
+ "DELETING",
1382
+ "FAILED"
1383
+ ]
1384
+ },
946
1385
  "ResolverRule":{
947
1386
  "type":"structure",
948
1387
  "members":{
@@ -957,7 +1396,9 @@
957
1396
  "TargetIps":{"shape":"TargetList"},
958
1397
  "ResolverEndpointId":{"shape":"ResourceId"},
959
1398
  "OwnerId":{"shape":"AccountId"},
960
- "ShareStatus":{"shape":"ShareStatus"}
1399
+ "ShareStatus":{"shape":"ShareStatus"},
1400
+ "CreationTime":{"shape":"Rfc3339TimeString"},
1401
+ "ModificationTime":{"shape":"Rfc3339TimeString"}
961
1402
  }
962
1403
  },
963
1404
  "ResolverRuleAssociation":{
@@ -1072,6 +1513,18 @@
1072
1513
  "SHARED_BY_ME"
1073
1514
  ]
1074
1515
  },
1516
+ "SortByKey":{
1517
+ "type":"string",
1518
+ "max":64,
1519
+ "min":1
1520
+ },
1521
+ "SortOrder":{
1522
+ "type":"string",
1523
+ "enum":[
1524
+ "ASCENDING",
1525
+ "DESCENDING"
1526
+ ]
1527
+ },
1075
1528
  "StatusMessage":{
1076
1529
  "type":"string",
1077
1530
  "max":255
@@ -1084,19 +1537,29 @@
1084
1537
  },
1085
1538
  "Tag":{
1086
1539
  "type":"structure",
1540
+ "required":[
1541
+ "Key",
1542
+ "Value"
1543
+ ],
1087
1544
  "members":{
1088
1545
  "Key":{"shape":"TagKey"},
1089
1546
  "Value":{"shape":"TagValue"}
1090
1547
  }
1091
1548
  },
1092
- "TagKey":{"type":"string"},
1549
+ "TagKey":{
1550
+ "type":"string",
1551
+ "max":128,
1552
+ "min":1
1553
+ },
1093
1554
  "TagKeyList":{
1094
1555
  "type":"list",
1095
- "member":{"shape":"TagKey"}
1556
+ "member":{"shape":"TagKey"},
1557
+ "max":200
1096
1558
  },
1097
1559
  "TagList":{
1098
1560
  "type":"list",
1099
- "member":{"shape":"Tag"}
1561
+ "member":{"shape":"Tag"},
1562
+ "max":200
1100
1563
  },
1101
1564
  "TagResourceRequest":{
1102
1565
  "type":"structure",
@@ -1114,7 +1577,11 @@
1114
1577
  "members":{
1115
1578
  }
1116
1579
  },
1117
- "TagValue":{"type":"string"},
1580
+ "TagValue":{
1581
+ "type":"string",
1582
+ "max":256,
1583
+ "min":0
1584
+ },
1118
1585
  "TargetAddress":{
1119
1586
  "type":"structure",
1120
1587
  "required":["Ip"],