aws-sdk-core 2.11.516 → 2.11.521

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.
@@ -1,5 +1,15 @@
1
1
  {
2
2
  "pagination": {
3
+ "DescribeInboundCrossClusterSearchConnections": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
8
+ "DescribeOutboundCrossClusterSearchConnections": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ },
3
13
  "DescribePackages": {
4
14
  "input_token": "NextToken",
5
15
  "output_token": "NextToken",
@@ -251,7 +251,8 @@
251
251
  {"shape":"IncompatibleParameterError"},
252
252
  {"shape":"InternalServerError"},
253
253
  {"shape":"FileSystemNotFound"},
254
- {"shape":"MissingFileSystemConfiguration"}
254
+ {"shape":"MissingFileSystemConfiguration"},
255
+ {"shape":"ServiceLimitExceeded"}
255
256
  ]
256
257
  }
257
258
  },
@@ -294,6 +295,35 @@
294
295
  "min":1,
295
296
  "pattern":"^.{1,255}$"
296
297
  },
298
+ "AdministrativeAction":{
299
+ "type":"structure",
300
+ "members":{
301
+ "AdministrativeActionType":{"shape":"AdministrativeActionType"},
302
+ "ProgressPercent":{"shape":"ProgressPercent"},
303
+ "RequestTime":{"shape":"RequestTime"},
304
+ "Status":{"shape":"Status"},
305
+ "TargetFileSystemValues":{"shape":"FileSystem"},
306
+ "FailureDetails":{"shape":"AdministrativeActionFailureDetails"}
307
+ }
308
+ },
309
+ "AdministrativeActionFailureDetails":{
310
+ "type":"structure",
311
+ "members":{
312
+ "Message":{"shape":"ErrorMessage"}
313
+ }
314
+ },
315
+ "AdministrativeActionType":{
316
+ "type":"string",
317
+ "enum":[
318
+ "FILE_SYSTEM_UPDATE",
319
+ "STORAGE_OPTIMIZATION"
320
+ ]
321
+ },
322
+ "AdministrativeActions":{
323
+ "type":"list",
324
+ "member":{"shape":"AdministrativeAction"},
325
+ "max":50
326
+ },
297
327
  "ArchivePath":{
298
328
  "type":"string",
299
329
  "max":900,
@@ -841,7 +871,8 @@
841
871
  "ResourceARN":{"shape":"ResourceARN"},
842
872
  "Tags":{"shape":"Tags"},
843
873
  "WindowsConfiguration":{"shape":"WindowsFileSystemConfiguration"},
844
- "LustreConfiguration":{"shape":"LustreFileSystemConfiguration"}
874
+ "LustreConfiguration":{"shape":"LustreFileSystemConfiguration"},
875
+ "AdministrativeActions":{"shape":"AdministrativeActions"}
845
876
  }
846
877
  },
847
878
  "FileSystemAdministratorsGroupName":{
@@ -1042,6 +1073,7 @@
1042
1073
  },
1043
1074
  "MaxResults":{
1044
1075
  "type":"integer",
1076
+ "max":2147483647,
1045
1077
  "min":1
1046
1078
  },
1047
1079
  "Megabytes":{
@@ -1115,6 +1147,7 @@
1115
1147
  "type":"string",
1116
1148
  "enum":["FAILED_FILES_ONLY"]
1117
1149
  },
1150
+ "RequestTime":{"type":"timestamp"},
1118
1151
  "ResourceARN":{
1119
1152
  "type":"string",
1120
1153
  "max":512,
@@ -1204,8 +1237,19 @@
1204
1237
  "exception":true
1205
1238
  },
1206
1239
  "StartTime":{"type":"timestamp"},
1240
+ "Status":{
1241
+ "type":"string",
1242
+ "enum":[
1243
+ "FAILED",
1244
+ "IN_PROGRESS",
1245
+ "PENDING",
1246
+ "COMPLETED",
1247
+ "UPDATED_OPTIMIZING"
1248
+ ]
1249
+ },
1207
1250
  "StorageCapacity":{
1208
1251
  "type":"integer",
1252
+ "max":2147483647,
1209
1253
  "min":0
1210
1254
  },
1211
1255
  "StorageType":{
@@ -1324,6 +1368,7 @@
1324
1368
  "shape":"ClientRequestToken",
1325
1369
  "idempotencyToken":true
1326
1370
  },
1371
+ "StorageCapacity":{"shape":"StorageCapacity"},
1327
1372
  "WindowsConfiguration":{"shape":"UpdateFileSystemWindowsConfiguration"},
1328
1373
  "LustreConfiguration":{"shape":"UpdateFileSystemLustreConfiguration"}
1329
1374
  }
@@ -1340,6 +1385,7 @@
1340
1385
  "WeeklyMaintenanceStartTime":{"shape":"WeeklyTime"},
1341
1386
  "DailyAutomaticBackupStartTime":{"shape":"DailyTime"},
1342
1387
  "AutomaticBackupRetentionDays":{"shape":"AutomaticBackupRetentionDays"},
1388
+ "ThroughputCapacity":{"shape":"MegabytesPerSecond"},
1343
1389
  "SelfManagedActiveDirectoryConfiguration":{"shape":"SelfManagedActiveDirectoryConfigurationUpdates"}
1344
1390
  }
1345
1391
  },
@@ -6230,6 +6230,7 @@
6230
6230
  "type":"structure",
6231
6231
  "members":{
6232
6232
  "FunctionName":{"shape":"NameString"},
6233
+ "DatabaseName":{"shape":"NameString"},
6233
6234
  "ClassName":{"shape":"NameString"},
6234
6235
  "OwnerName":{"shape":"NameString"},
6235
6236
  "OwnerType":{"shape":"PrincipalType"},
@@ -812,6 +812,19 @@
812
812
  "members":{
813
813
  }
814
814
  },
815
+ "AccessControlList":{
816
+ "type":"structure",
817
+ "members":{
818
+ "AllowsPublicReadAccess":{
819
+ "shape":"Boolean",
820
+ "locationName":"allowsPublicReadAccess"
821
+ },
822
+ "AllowsPublicWriteAccess":{
823
+ "shape":"Boolean",
824
+ "locationName":"allowsPublicWriteAccess"
825
+ }
826
+ }
827
+ },
815
828
  "AccessKeyDetails":{
816
829
  "type":"structure",
817
830
  "members":{
@@ -867,6 +880,15 @@
867
880
  "max":50,
868
881
  "min":1
869
882
  },
883
+ "AccountLevelPermissions":{
884
+ "type":"structure",
885
+ "members":{
886
+ "BlockPublicAccess":{
887
+ "shape":"BlockPublicAccess",
888
+ "locationName":"blockPublicAccess"
889
+ }
890
+ }
891
+ },
870
892
  "Action":{
871
893
  "type":"structure",
872
894
  "members":{
@@ -983,7 +1005,58 @@
983
1005
  "error":{"httpStatusCode":400},
984
1006
  "exception":true
985
1007
  },
1008
+ "BlockPublicAccess":{
1009
+ "type":"structure",
1010
+ "members":{
1011
+ "IgnorePublicAcls":{
1012
+ "shape":"Boolean",
1013
+ "locationName":"ignorePublicAcls"
1014
+ },
1015
+ "RestrictPublicBuckets":{
1016
+ "shape":"Boolean",
1017
+ "locationName":"restrictPublicBuckets"
1018
+ },
1019
+ "BlockPublicAcls":{
1020
+ "shape":"Boolean",
1021
+ "locationName":"blockPublicAcls"
1022
+ },
1023
+ "BlockPublicPolicy":{
1024
+ "shape":"Boolean",
1025
+ "locationName":"blockPublicPolicy"
1026
+ }
1027
+ }
1028
+ },
986
1029
  "Boolean":{"type":"boolean"},
1030
+ "BucketLevelPermissions":{
1031
+ "type":"structure",
1032
+ "members":{
1033
+ "AccessControlList":{
1034
+ "shape":"AccessControlList",
1035
+ "locationName":"accessControlList"
1036
+ },
1037
+ "BucketPolicy":{
1038
+ "shape":"BucketPolicy",
1039
+ "locationName":"bucketPolicy"
1040
+ },
1041
+ "BlockPublicAccess":{
1042
+ "shape":"BlockPublicAccess",
1043
+ "locationName":"blockPublicAccess"
1044
+ }
1045
+ }
1046
+ },
1047
+ "BucketPolicy":{
1048
+ "type":"structure",
1049
+ "members":{
1050
+ "AllowsPublicReadAccess":{
1051
+ "shape":"Boolean",
1052
+ "locationName":"allowsPublicReadAccess"
1053
+ },
1054
+ "AllowsPublicWriteAccess":{
1055
+ "shape":"Boolean",
1056
+ "locationName":"allowsPublicWriteAccess"
1057
+ }
1058
+ }
1059
+ },
987
1060
  "City":{
988
1061
  "type":"structure",
989
1062
  "members":{
@@ -1376,6 +1449,19 @@
1376
1449
  }
1377
1450
  }
1378
1451
  },
1452
+ "DefaultServerSideEncryption":{
1453
+ "type":"structure",
1454
+ "members":{
1455
+ "EncryptionType":{
1456
+ "shape":"String",
1457
+ "locationName":"encryptionType"
1458
+ },
1459
+ "KmsMasterKeyArn":{
1460
+ "shape":"String",
1461
+ "locationName":"kmsMasterKeyArn"
1462
+ }
1463
+ }
1464
+ },
1379
1465
  "DeleteDetectorRequest":{
1380
1466
  "type":"structure",
1381
1467
  "required":["DetectorId"],
@@ -3055,6 +3141,28 @@
3055
3141
  }
3056
3142
  }
3057
3143
  },
3144
+ "Owner":{
3145
+ "type":"structure",
3146
+ "members":{
3147
+ "Id":{
3148
+ "shape":"String",
3149
+ "locationName":"id"
3150
+ }
3151
+ }
3152
+ },
3153
+ "PermissionConfiguration":{
3154
+ "type":"structure",
3155
+ "members":{
3156
+ "BucketLevelPermissions":{
3157
+ "shape":"BucketLevelPermissions",
3158
+ "locationName":"bucketLevelPermissions"
3159
+ },
3160
+ "AccountLevelPermissions":{
3161
+ "shape":"AccountLevelPermissions",
3162
+ "locationName":"accountLevelPermissions"
3163
+ }
3164
+ }
3165
+ },
3058
3166
  "PortProbeAction":{
3059
3167
  "type":"structure",
3060
3168
  "members":{
@@ -3123,6 +3231,19 @@
3123
3231
  "type":"list",
3124
3232
  "member":{"shape":"ProductCode"}
3125
3233
  },
3234
+ "PublicAccess":{
3235
+ "type":"structure",
3236
+ "members":{
3237
+ "PermissionConfiguration":{
3238
+ "shape":"PermissionConfiguration",
3239
+ "locationName":"permissionConfiguration"
3240
+ },
3241
+ "EffectivePermission":{
3242
+ "shape":"String",
3243
+ "locationName":"effectivePermission"
3244
+ }
3245
+ }
3246
+ },
3126
3247
  "PublishingStatus":{
3127
3248
  "type":"string",
3128
3249
  "enum":[
@@ -3179,6 +3300,10 @@
3179
3300
  "shape":"AccessKeyDetails",
3180
3301
  "locationName":"accessKeyDetails"
3181
3302
  },
3303
+ "S3BucketDetails":{
3304
+ "shape":"S3BucketDetails",
3305
+ "locationName":"s3BucketDetails"
3306
+ },
3182
3307
  "InstanceDetails":{
3183
3308
  "shape":"InstanceDetails",
3184
3309
  "locationName":"instanceDetails"
@@ -3189,6 +3314,47 @@
3189
3314
  }
3190
3315
  }
3191
3316
  },
3317
+ "S3BucketDetail":{
3318
+ "type":"structure",
3319
+ "members":{
3320
+ "Arn":{
3321
+ "shape":"String",
3322
+ "locationName":"arn"
3323
+ },
3324
+ "Name":{
3325
+ "shape":"String",
3326
+ "locationName":"name"
3327
+ },
3328
+ "Type":{
3329
+ "shape":"String",
3330
+ "locationName":"type"
3331
+ },
3332
+ "CreatedAt":{
3333
+ "shape":"Timestamp",
3334
+ "locationName":"createdAt"
3335
+ },
3336
+ "Owner":{
3337
+ "shape":"Owner",
3338
+ "locationName":"owner"
3339
+ },
3340
+ "Tags":{
3341
+ "shape":"Tags",
3342
+ "locationName":"tags"
3343
+ },
3344
+ "DefaultServerSideEncryption":{
3345
+ "shape":"DefaultServerSideEncryption",
3346
+ "locationName":"defaultServerSideEncryption"
3347
+ },
3348
+ "PublicAccess":{
3349
+ "shape":"PublicAccess",
3350
+ "locationName":"publicAccess"
3351
+ }
3352
+ }
3353
+ },
3354
+ "S3BucketDetails":{
3355
+ "type":"list",
3356
+ "member":{"shape":"S3BucketDetail"}
3357
+ },
3192
3358
  "SecurityGroup":{
3193
3359
  "type":"structure",
3194
3360
  "members":{
@@ -3438,6 +3604,7 @@
3438
3604
  "type":"list",
3439
3605
  "member":{"shape":"String"}
3440
3606
  },
3607
+ "Timestamp":{"type":"timestamp"},
3441
3608
  "UnarchiveFindingsRequest":{
3442
3609
  "type":"structure",
3443
3610
  "required":[
@@ -2151,6 +2151,13 @@
2151
2151
  }
2152
2152
  },
2153
2153
  "shapes":{
2154
+ "AccessAdvisorUsageGranularityType":{
2155
+ "type":"string",
2156
+ "enum":[
2157
+ "SERVICE_LEVEL",
2158
+ "ACTION_LEVEL"
2159
+ ]
2160
+ },
2154
2161
  "AccessDetail":{
2155
2162
  "type":"structure",
2156
2163
  "required":[
@@ -3062,7 +3069,8 @@
3062
3069
  "type":"structure",
3063
3070
  "required":["Arn"],
3064
3071
  "members":{
3065
- "Arn":{"shape":"arnType"}
3072
+ "Arn":{"shape":"arnType"},
3073
+ "Granularity":{"shape":"AccessAdvisorUsageGranularityType"}
3066
3074
  }
3067
3075
  },
3068
3076
  "GenerateServiceLastAccessedDetailsResponse":{
@@ -3399,6 +3407,7 @@
3399
3407
  ],
3400
3408
  "members":{
3401
3409
  "JobStatus":{"shape":"jobStatusType"},
3410
+ "JobType":{"shape":"AccessAdvisorUsageGranularityType"},
3402
3411
  "JobCreationDate":{"shape":"dateType"},
3403
3412
  "ServicesLastAccessed":{"shape":"ServicesLastAccessed"},
3404
3413
  "JobCompletionDate":{"shape":"dateType"},
@@ -4746,7 +4755,9 @@
4746
4755
  "LastAuthenticated":{"shape":"dateType"},
4747
4756
  "ServiceNamespace":{"shape":"serviceNamespaceType"},
4748
4757
  "LastAuthenticatedEntity":{"shape":"arnType"},
4749
- "TotalAuthenticatedEntities":{"shape":"integerType"}
4758
+ "LastAuthenticatedRegion":{"shape":"stringType"},
4759
+ "TotalAuthenticatedEntities":{"shape":"integerType"},
4760
+ "TrackedActionsLastAccessed":{"shape":"TrackedActionsLastAccessed"}
4750
4761
  }
4751
4762
  },
4752
4763
  "ServiceNotSupportedException":{
@@ -4942,6 +4953,19 @@
4942
4953
  "Tags":{"shape":"tagListType"}
4943
4954
  }
4944
4955
  },
4956
+ "TrackedActionLastAccessed":{
4957
+ "type":"structure",
4958
+ "members":{
4959
+ "ActionName":{"shape":"stringType"},
4960
+ "LastAccessedEntity":{"shape":"arnType"},
4961
+ "LastAccessedTime":{"shape":"dateType"},
4962
+ "LastAccessedRegion":{"shape":"stringType"}
4963
+ }
4964
+ },
4965
+ "TrackedActionsLastAccessed":{
4966
+ "type":"list",
4967
+ "member":{"shape":"TrackedActionLastAccessed"}
4968
+ },
4945
4969
  "UnmodifiableEntityException":{
4946
4970
  "type":"structure",
4947
4971
  "members":{
@@ -275,6 +275,43 @@
275
275
  }
276
276
  ]
277
277
  },
278
+ "GetCompatibleKafkaVersions" : {
279
+ "name" : "GetCompatibleKafkaVersions",
280
+ "http" : {
281
+ "method" : "GET",
282
+ "requestUri" : "/v1/compatible-kafka-versions",
283
+ "responseCode" : 200
284
+ },
285
+ "input" : {
286
+ "shape" : "GetCompatibleKafkaVersionsRequest"
287
+ },
288
+ "output" : {
289
+ "shape" : "GetCompatibleKafkaVersionsResponse"
290
+ },
291
+ "errors" : [
292
+ {
293
+ "shape" : "BadRequestException"
294
+ },
295
+ {
296
+ "shape" : "UnauthorizedException"
297
+ },
298
+ {
299
+ "shape" : "InternalServerErrorException"
300
+ },
301
+ {
302
+ "shape" : "ForbiddenException"
303
+ },
304
+ {
305
+ "shape" : "NotFoundException"
306
+ },
307
+ {
308
+ "shape" : "ServiceUnavailableException"
309
+ },
310
+ {
311
+ "shape" : "TooManyRequestsException"
312
+ }
313
+ ]
314
+ },
278
315
  "ListClusterOperations": {
279
316
  "name": "ListClusterOperations",
280
317
  "http": {
@@ -617,6 +654,43 @@
617
654
  }
618
655
  ]
619
656
  },
657
+ "UpdateClusterKafkaVersion" : {
658
+ "name" : "UpdateClusterKafkaVersion",
659
+ "http" : {
660
+ "method" : "PUT",
661
+ "requestUri" : "/v1/clusters/{clusterArn}/version",
662
+ "responseCode" : 200
663
+ },
664
+ "input" : {
665
+ "shape" : "UpdateClusterKafkaVersionRequest"
666
+ },
667
+ "output" : {
668
+ "shape" : "UpdateClusterKafkaVersionResponse"
669
+ },
670
+ "errors" : [
671
+ {
672
+ "shape" : "BadRequestException"
673
+ },
674
+ {
675
+ "shape" : "UnauthorizedException"
676
+ },
677
+ {
678
+ "shape" : "InternalServerErrorException"
679
+ },
680
+ {
681
+ "shape" : "ForbiddenException"
682
+ },
683
+ {
684
+ "shape" : "NotFoundException"
685
+ },
686
+ {
687
+ "shape" : "ServiceUnavailableException"
688
+ },
689
+ {
690
+ "shape" : "TooManyRequestsException"
691
+ }
692
+ ]
693
+ },
620
694
  "UpdateMonitoring" : {
621
695
  "name" : "UpdateMonitoring",
622
696
  "http" : {
@@ -899,6 +973,10 @@
899
973
  "shape": "ErrorInfo",
900
974
  "locationName": "errorInfo"
901
975
  },
976
+ "OperationSteps": {
977
+ "shape": "__listOfClusterOperationStep",
978
+ "locationName": "operationSteps"
979
+ },
902
980
  "OperationArn": {
903
981
  "shape": "__string",
904
982
  "locationName": "operationArn"
@@ -921,6 +999,28 @@
921
999
  }
922
1000
  }
923
1001
  },
1002
+ "ClusterOperationStep" : {
1003
+ "type" : "structure",
1004
+ "members" : {
1005
+ "StepInfo" : {
1006
+ "shape" : "ClusterOperationStepInfo",
1007
+ "locationName" : "stepInfo"
1008
+ },
1009
+ "StepName" : {
1010
+ "shape" : "__string",
1011
+ "locationName" : "stepName"
1012
+ }
1013
+ }
1014
+ },
1015
+ "ClusterOperationStepInfo" : {
1016
+ "type" : "structure",
1017
+ "members" : {
1018
+ "StepStatus" : {
1019
+ "shape" : "__string",
1020
+ "locationName" : "stepStatus"
1021
+ }
1022
+ }
1023
+ },
924
1024
  "ClusterState": {
925
1025
  "type": "string",
926
1026
  "enum": [
@@ -931,6 +1031,19 @@
931
1031
  "FAILED"
932
1032
  ]
933
1033
  },
1034
+ "CompatibleKafkaVersion" : {
1035
+ "type" : "structure",
1036
+ "members" : {
1037
+ "SourceVersion" : {
1038
+ "shape" : "__string",
1039
+ "locationName" : "sourceVersion"
1040
+ },
1041
+ "TargetVersions" : {
1042
+ "shape" : "__listOf__string",
1043
+ "locationName" : "targetVersions"
1044
+ }
1045
+ }
1046
+ },
934
1047
  "Configuration": {
935
1048
  "type": "structure",
936
1049
  "members": {
@@ -1117,7 +1230,6 @@
1117
1230
  },
1118
1231
  "required": [
1119
1232
  "ServerProperties",
1120
- "KafkaVersions",
1121
1233
  "Name"
1122
1234
  ]
1123
1235
  },
@@ -1441,6 +1553,25 @@
1441
1553
  }
1442
1554
  }
1443
1555
  },
1556
+ "GetCompatibleKafkaVersionsRequest" : {
1557
+ "type" : "structure",
1558
+ "members" : {
1559
+ "ClusterArn" : {
1560
+ "shape" : "__string",
1561
+ "location" : "querystring",
1562
+ "locationName" : "clusterArn"
1563
+ }
1564
+ }
1565
+ },
1566
+ "GetCompatibleKafkaVersionsResponse" : {
1567
+ "type" : "structure",
1568
+ "members" : {
1569
+ "CompatibleKafkaVersions" : {
1570
+ "shape" : "__listOfCompatibleKafkaVersion",
1571
+ "locationName" : "compatibleKafkaVersions"
1572
+ }
1573
+ }
1574
+ },
1444
1575
  "InternalServerErrorException": {
1445
1576
  "type": "structure",
1446
1577
  "members": {
@@ -1735,6 +1866,10 @@
1735
1866
  "shape" : "EnhancedMonitoring",
1736
1867
  "locationName" : "enhancedMonitoring"
1737
1868
  },
1869
+ "KafkaVersion" : {
1870
+ "shape" : "__string",
1871
+ "locationName" : "kafkaVersion"
1872
+ },
1738
1873
  "LoggingInfo": {
1739
1874
  "shape": "LoggingInfo",
1740
1875
  "locationName": "loggingInfo"
@@ -2020,6 +2155,42 @@
2020
2155
  }
2021
2156
  }
2022
2157
  },
2158
+ "UpdateClusterKafkaVersionRequest" : {
2159
+ "type" : "structure",
2160
+ "members" : {
2161
+ "ClusterArn" : {
2162
+ "shape" : "__string",
2163
+ "location" : "uri",
2164
+ "locationName" : "clusterArn"
2165
+ },
2166
+ "ConfigurationInfo" : {
2167
+ "shape" : "ConfigurationInfo",
2168
+ "locationName" : "configurationInfo"
2169
+ },
2170
+ "CurrentVersion" : {
2171
+ "shape" : "__string",
2172
+ "locationName" : "currentVersion"
2173
+ },
2174
+ "TargetKafkaVersion" : {
2175
+ "shape" : "__string",
2176
+ "locationName" : "targetKafkaVersion"
2177
+ }
2178
+ },
2179
+ "required" : [ "ClusterArn", "TargetKafkaVersion", "CurrentVersion" ]
2180
+ },
2181
+ "UpdateClusterKafkaVersionResponse" : {
2182
+ "type" : "structure",
2183
+ "members" : {
2184
+ "ClusterArn" : {
2185
+ "shape" : "__string",
2186
+ "locationName" : "clusterArn"
2187
+ },
2188
+ "ClusterOperationArn" : {
2189
+ "shape" : "__string",
2190
+ "locationName" : "clusterOperationArn"
2191
+ }
2192
+ }
2193
+ },
2023
2194
  "UpdateMonitoringRequest" : {
2024
2195
  "type" : "structure",
2025
2196
  "members" : {
@@ -2229,6 +2400,18 @@
2229
2400
  "shape": "ClusterOperationInfo"
2230
2401
  }
2231
2402
  },
2403
+ "__listOfClusterOperationStep" : {
2404
+ "type" : "list",
2405
+ "member" : {
2406
+ "shape" : "ClusterOperationStep"
2407
+ }
2408
+ },
2409
+ "__listOfCompatibleKafkaVersion" : {
2410
+ "type" : "list",
2411
+ "member" : {
2412
+ "shape" : "CompatibleKafkaVersion"
2413
+ }
2414
+ },
2232
2415
  "__listOfConfiguration": {
2233
2416
  "type": "list",
2234
2417
  "member": {