@aws-sdk/client-config-service 3.1080.0 → 3.1081.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/README.md +42 -7
  2. package/dist-cjs/index.js +245 -35
  3. package/dist-es/ConfigService.js +12 -0
  4. package/dist-es/commands/DeleteConnectorCommand.js +4 -0
  5. package/dist-es/commands/GetConnectorCommand.js +4 -0
  6. package/dist-es/commands/ListConnectorsCommand.js +4 -0
  7. package/dist-es/commands/PutConnectorCommand.js +4 -0
  8. package/dist-es/commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand.js +4 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +6 -0
  11. package/dist-es/models/errors.js +24 -12
  12. package/dist-es/pagination/ListConnectorsPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/schemas/schemas_0.js +165 -23
  15. package/dist-types/ConfigService.d.ts +44 -0
  16. package/dist-types/ConfigServiceClient.d.ts +7 -2
  17. package/dist-types/commands/AssociateResourceTypesCommand.d.ts +25 -0
  18. package/dist-types/commands/BatchGetAggregateResourceConfigCommand.d.ts +9 -0
  19. package/dist-types/commands/BatchGetResourceConfigCommand.d.ts +9 -0
  20. package/dist-types/commands/DeleteConnectorCommand.d.ts +117 -0
  21. package/dist-types/commands/DeleteRemediationConfigurationCommand.d.ts +3 -0
  22. package/dist-types/commands/DeleteResourceConfigCommand.d.ts +9 -0
  23. package/dist-types/commands/DeleteServiceLinkedConfigurationRecorderCommand.d.ts +17 -2
  24. package/dist-types/commands/DeleteStoredQueryCommand.d.ts +9 -0
  25. package/dist-types/commands/DescribeAggregateComplianceByConfigRulesCommand.d.ts +9 -0
  26. package/dist-types/commands/DescribeAggregateComplianceByConformancePacksCommand.d.ts +9 -0
  27. package/dist-types/commands/DescribeConfigRulesCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeConfigurationRecorderStatusCommand.d.ts +9 -0
  29. package/dist-types/commands/DescribeConfigurationRecordersCommand.d.ts +20 -0
  30. package/dist-types/commands/DisassociateResourceTypesCommand.d.ts +25 -0
  31. package/dist-types/commands/GetAggregateComplianceDetailsByConfigRuleCommand.d.ts +9 -0
  32. package/dist-types/commands/GetAggregateConfigRuleComplianceSummaryCommand.d.ts +9 -0
  33. package/dist-types/commands/GetAggregateConformancePackComplianceSummaryCommand.d.ts +9 -0
  34. package/dist-types/commands/GetAggregateDiscoveredResourceCountsCommand.d.ts +9 -0
  35. package/dist-types/commands/GetAggregateResourceConfigCommand.d.ts +9 -0
  36. package/dist-types/commands/GetConnectorCommand.d.ts +129 -0
  37. package/dist-types/commands/GetDiscoveredResourceCountsCommand.d.ts +9 -0
  38. package/dist-types/commands/GetResourceConfigHistoryCommand.d.ts +9 -0
  39. package/dist-types/commands/GetStoredQueryCommand.d.ts +9 -0
  40. package/dist-types/commands/ListAggregateDiscoveredResourcesCommand.d.ts +9 -0
  41. package/dist-types/commands/ListConfigurationRecordersCommand.d.ts +10 -0
  42. package/dist-types/commands/ListConnectorsCommand.d.ts +134 -0
  43. package/dist-types/commands/ListDiscoveredResourcesCommand.d.ts +9 -0
  44. package/dist-types/commands/ListStoredQueriesCommand.d.ts +9 -0
  45. package/dist-types/commands/ListTagsForResourceCommand.d.ts +9 -0
  46. package/dist-types/commands/PutConfigRuleCommand.d.ts +3 -0
  47. package/dist-types/commands/PutConfigurationRecorderCommand.d.ts +20 -0
  48. package/dist-types/commands/PutConformancePackCommand.d.ts +3 -0
  49. package/dist-types/commands/PutConnectorCommand.d.ts +195 -0
  50. package/dist-types/commands/PutOrganizationConfigRuleCommand.d.ts +12 -0
  51. package/dist-types/commands/PutOrganizationConformancePackCommand.d.ts +12 -0
  52. package/dist-types/commands/PutRemediationConfigurationsCommand.d.ts +3 -0
  53. package/dist-types/commands/PutRemediationExceptionsCommand.d.ts +3 -0
  54. package/dist-types/commands/PutResourceConfigCommand.d.ts +12 -0
  55. package/dist-types/commands/PutServiceLinkedConfigurationRecorderCommand.d.ts +17 -0
  56. package/dist-types/commands/PutStoredQueryCommand.d.ts +9 -0
  57. package/dist-types/commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand.d.ts +199 -0
  58. package/dist-types/commands/StartRemediationExecutionCommand.d.ts +3 -0
  59. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  60. package/dist-types/commands/UntagResourceCommand.d.ts +9 -0
  61. package/dist-types/commands/index.d.ts +5 -0
  62. package/dist-types/models/enums.d.ts +22 -0
  63. package/dist-types/models/errors.d.ts +41 -12
  64. package/dist-types/models/models_0.d.ts +304 -13
  65. package/dist-types/pagination/ListConnectorsPaginator.d.ts +7 -0
  66. package/dist-types/pagination/index.d.ts +1 -0
  67. package/dist-types/schemas/schemas_0.d.ts +21 -0
  68. package/dist-types/ts3.4/ConfigService.d.ts +100 -0
  69. package/dist-types/ts3.4/ConfigServiceClient.d.ts +30 -0
  70. package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +38 -0
  71. package/dist-types/ts3.4/commands/DeleteServiceLinkedConfigurationRecorderCommand.d.ts +1 -1
  72. package/dist-types/ts3.4/commands/GetConnectorCommand.d.ts +40 -0
  73. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +43 -0
  74. package/dist-types/ts3.4/commands/PutConnectorCommand.d.ts +40 -0
  75. package/dist-types/ts3.4/commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand.d.ts +44 -0
  76. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  77. package/dist-types/ts3.4/models/enums.d.ts +9 -0
  78. package/dist-types/ts3.4/models/errors.d.ts +17 -7
  79. package/dist-types/ts3.4/models/models_0.d.ts +73 -2
  80. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -0
  81. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  82. package/dist-types/ts3.4/schemas/schemas_0.d.ts +21 -0
  83. package/package.json +3 -3
@@ -25,6 +25,7 @@ export declare var MaxActiveResourcesExceededException$: StaticErrorSchema;
25
25
  export declare var MaxNumberOfConfigRulesExceededException$: StaticErrorSchema;
26
26
  export declare var MaxNumberOfConfigurationRecordersExceededException$: StaticErrorSchema;
27
27
  export declare var MaxNumberOfConformancePacksExceededException$: StaticErrorSchema;
28
+ export declare var MaxNumberOfConnectorsExceededException$: StaticErrorSchema;
28
29
  export declare var MaxNumberOfDeliveryChannelsExceededException$: StaticErrorSchema;
29
30
  export declare var MaxNumberOfOrganizationConfigRulesExceededException$: StaticErrorSchema;
30
31
  export declare var MaxNumberOfOrganizationConformancePacksExceededException$: StaticErrorSchema;
@@ -81,6 +82,7 @@ export declare var AggregatorFilters$: StaticStructureSchema;
81
82
  export declare var AggregatorFilterServicePrincipal$: StaticStructureSchema;
82
83
  export declare var AssociateResourceTypesRequest$: StaticStructureSchema;
83
84
  export declare var AssociateResourceTypesResponse$: StaticStructureSchema;
85
+ export declare var AzureConnectorConfiguration$: StaticStructureSchema;
84
86
  export declare var BaseConfigurationItem$: StaticStructureSchema;
85
87
  export declare var BatchGetAggregateResourceConfigRequest$: StaticStructureSchema;
86
88
  export declare var BatchGetAggregateResourceConfigResponse$: StaticStructureSchema;
@@ -115,12 +117,17 @@ export declare var ConformancePackEvaluationResult$: StaticStructureSchema;
115
117
  export declare var ConformancePackInputParameter$: StaticStructureSchema;
116
118
  export declare var ConformancePackRuleCompliance$: StaticStructureSchema;
117
119
  export declare var ConformancePackStatusDetail$: StaticStructureSchema;
120
+ export declare var Connector$: StaticStructureSchema;
121
+ export declare var ConnectorConfiguration$: StaticStructureSchema;
122
+ export declare var ConnectorFilter$: StaticStructureSchema;
123
+ export declare var ConnectorSummary$: StaticStructureSchema;
118
124
  export declare var CustomPolicyDetails$: StaticStructureSchema;
119
125
  export declare var DeleteAggregationAuthorizationRequest$: StaticStructureSchema;
120
126
  export declare var DeleteConfigRuleRequest$: StaticStructureSchema;
121
127
  export declare var DeleteConfigurationAggregatorRequest$: StaticStructureSchema;
122
128
  export declare var DeleteConfigurationRecorderRequest$: StaticStructureSchema;
123
129
  export declare var DeleteConformancePackRequest$: StaticStructureSchema;
130
+ export declare var DeleteConnectorRequest$: StaticStructureSchema;
124
131
  export declare var DeleteDeliveryChannelRequest$: StaticStructureSchema;
125
132
  export declare var DeleteEvaluationResultsRequest$: StaticStructureSchema;
126
133
  export declare var DeleteEvaluationResultsResponse$: StaticStructureSchema;
@@ -229,6 +236,8 @@ export declare var GetConformancePackComplianceDetailsRequest$: StaticStructureS
229
236
  export declare var GetConformancePackComplianceDetailsResponse$: StaticStructureSchema;
230
237
  export declare var GetConformancePackComplianceSummaryRequest$: StaticStructureSchema;
231
238
  export declare var GetConformancePackComplianceSummaryResponse$: StaticStructureSchema;
239
+ export declare var GetConnectorRequest$: StaticStructureSchema;
240
+ export declare var GetConnectorResponse$: StaticStructureSchema;
232
241
  export declare var GetCustomRulePolicyRequest$: StaticStructureSchema;
233
242
  export declare var GetCustomRulePolicyResponse$: StaticStructureSchema;
234
243
  export declare var GetDiscoveredResourceCountsRequest$: StaticStructureSchema;
@@ -252,6 +261,8 @@ export declare var ListConfigurationRecordersRequest$: StaticStructureSchema;
252
261
  export declare var ListConfigurationRecordersResponse$: StaticStructureSchema;
253
262
  export declare var ListConformancePackComplianceScoresRequest$: StaticStructureSchema;
254
263
  export declare var ListConformancePackComplianceScoresResponse$: StaticStructureSchema;
264
+ export declare var ListConnectorsRequest$: StaticStructureSchema;
265
+ export declare var ListConnectorsResponse$: StaticStructureSchema;
255
266
  export declare var ListDiscoveredResourcesRequest$: StaticStructureSchema;
256
267
  export declare var ListDiscoveredResourcesResponse$: StaticStructureSchema;
257
268
  export declare var ListResourceEvaluationsRequest$: StaticStructureSchema;
@@ -281,6 +292,8 @@ export declare var PutConfigurationAggregatorResponse$: StaticStructureSchema;
281
292
  export declare var PutConfigurationRecorderRequest$: StaticStructureSchema;
282
293
  export declare var PutConformancePackRequest$: StaticStructureSchema;
283
294
  export declare var PutConformancePackResponse$: StaticStructureSchema;
295
+ export declare var PutConnectorRequest$: StaticStructureSchema;
296
+ export declare var PutConnectorResponse$: StaticStructureSchema;
284
297
  export declare var PutDeliveryChannelRequest$: StaticStructureSchema;
285
298
  export declare var PutEvaluationsRequest$: StaticStructureSchema;
286
299
  export declare var PutEvaluationsResponse$: StaticStructureSchema;
@@ -301,6 +314,8 @@ export declare var PutServiceLinkedConfigurationRecorderRequest$: StaticStructur
301
314
  export declare var PutServiceLinkedConfigurationRecorderResponse$: StaticStructureSchema;
302
315
  export declare var PutStoredQueryRequest$: StaticStructureSchema;
303
316
  export declare var PutStoredQueryResponse$: StaticStructureSchema;
317
+ export declare var PutThirdPartyServiceLinkedConfigurationRecorderRequest$: StaticStructureSchema;
318
+ export declare var PutThirdPartyServiceLinkedConfigurationRecorderResponse$: StaticStructureSchema;
304
319
  export declare var QueryInfo$: StaticStructureSchema;
305
320
  export declare var RecordingGroup$: StaticStructureSchema;
306
321
  export declare var RecordingMode$: StaticStructureSchema;
@@ -324,6 +339,7 @@ export declare var ResourceKey$: StaticStructureSchema;
324
339
  export declare var ResourceValue$: StaticStructureSchema;
325
340
  export declare var RetentionConfiguration$: StaticStructureSchema;
326
341
  export declare var Scope$: StaticStructureSchema;
342
+ export declare var ScopeConfiguration$: StaticStructureSchema;
327
343
  export declare var SelectAggregateResourceConfigRequest$: StaticStructureSchema;
328
344
  export declare var SelectAggregateResourceConfigResponse$: StaticStructureSchema;
329
345
  export declare var SelectResourceConfigRequest$: StaticStructureSchema;
@@ -356,6 +372,7 @@ export declare var DeleteConfigRule$: StaticOperationSchema;
356
372
  export declare var DeleteConfigurationAggregator$: StaticOperationSchema;
357
373
  export declare var DeleteConfigurationRecorder$: StaticOperationSchema;
358
374
  export declare var DeleteConformancePack$: StaticOperationSchema;
375
+ export declare var DeleteConnector$: StaticOperationSchema;
359
376
  export declare var DeleteDeliveryChannel$: StaticOperationSchema;
360
377
  export declare var DeleteEvaluationResults$: StaticOperationSchema;
361
378
  export declare var DeleteOrganizationConfigRule$: StaticOperationSchema;
@@ -405,6 +422,7 @@ export declare var GetComplianceSummaryByConfigRule$: StaticOperationSchema;
405
422
  export declare var GetComplianceSummaryByResourceType$: StaticOperationSchema;
406
423
  export declare var GetConformancePackComplianceDetails$: StaticOperationSchema;
407
424
  export declare var GetConformancePackComplianceSummary$: StaticOperationSchema;
425
+ export declare var GetConnector$: StaticOperationSchema;
408
426
  export declare var GetCustomRulePolicy$: StaticOperationSchema;
409
427
  export declare var GetDiscoveredResourceCounts$: StaticOperationSchema;
410
428
  export declare var GetOrganizationConfigRuleDetailedStatus$: StaticOperationSchema;
@@ -416,6 +434,7 @@ export declare var GetStoredQuery$: StaticOperationSchema;
416
434
  export declare var ListAggregateDiscoveredResources$: StaticOperationSchema;
417
435
  export declare var ListConfigurationRecorders$: StaticOperationSchema;
418
436
  export declare var ListConformancePackComplianceScores$: StaticOperationSchema;
437
+ export declare var ListConnectors$: StaticOperationSchema;
419
438
  export declare var ListDiscoveredResources$: StaticOperationSchema;
420
439
  export declare var ListResourceEvaluations$: StaticOperationSchema;
421
440
  export declare var ListStoredQueries$: StaticOperationSchema;
@@ -425,6 +444,7 @@ export declare var PutConfigRule$: StaticOperationSchema;
425
444
  export declare var PutConfigurationAggregator$: StaticOperationSchema;
426
445
  export declare var PutConfigurationRecorder$: StaticOperationSchema;
427
446
  export declare var PutConformancePack$: StaticOperationSchema;
447
+ export declare var PutConnector$: StaticOperationSchema;
428
448
  export declare var PutDeliveryChannel$: StaticOperationSchema;
429
449
  export declare var PutEvaluations$: StaticOperationSchema;
430
450
  export declare var PutExternalEvaluation$: StaticOperationSchema;
@@ -436,6 +456,7 @@ export declare var PutResourceConfig$: StaticOperationSchema;
436
456
  export declare var PutRetentionConfiguration$: StaticOperationSchema;
437
457
  export declare var PutServiceLinkedConfigurationRecorder$: StaticOperationSchema;
438
458
  export declare var PutStoredQuery$: StaticOperationSchema;
459
+ export declare var PutThirdPartyServiceLinkedConfigurationRecorder$: StaticOperationSchema;
439
460
  export declare var SelectAggregateResourceConfig$: StaticOperationSchema;
440
461
  export declare var SelectResourceConfig$: StaticOperationSchema;
441
462
  export declare var StartConfigRulesEvaluation$: StaticOperationSchema;
@@ -35,6 +35,10 @@ import {
35
35
  DeleteConformancePackCommandInput,
36
36
  DeleteConformancePackCommandOutput,
37
37
  } from "./commands/DeleteConformancePackCommand";
38
+ import {
39
+ DeleteConnectorCommandInput,
40
+ DeleteConnectorCommandOutput,
41
+ } from "./commands/DeleteConnectorCommand";
38
42
  import {
39
43
  DeleteDeliveryChannelCommandInput,
40
44
  DeleteDeliveryChannelCommandOutput,
@@ -231,6 +235,10 @@ import {
231
235
  GetConformancePackComplianceSummaryCommandInput,
232
236
  GetConformancePackComplianceSummaryCommandOutput,
233
237
  } from "./commands/GetConformancePackComplianceSummaryCommand";
238
+ import {
239
+ GetConnectorCommandInput,
240
+ GetConnectorCommandOutput,
241
+ } from "./commands/GetConnectorCommand";
234
242
  import {
235
243
  GetCustomRulePolicyCommandInput,
236
244
  GetCustomRulePolicyCommandOutput,
@@ -275,6 +283,10 @@ import {
275
283
  ListConformancePackComplianceScoresCommandInput,
276
284
  ListConformancePackComplianceScoresCommandOutput,
277
285
  } from "./commands/ListConformancePackComplianceScoresCommand";
286
+ import {
287
+ ListConnectorsCommandInput,
288
+ ListConnectorsCommandOutput,
289
+ } from "./commands/ListConnectorsCommand";
278
290
  import {
279
291
  ListDiscoveredResourcesCommandInput,
280
292
  ListDiscoveredResourcesCommandOutput,
@@ -311,6 +323,10 @@ import {
311
323
  PutConformancePackCommandInput,
312
324
  PutConformancePackCommandOutput,
313
325
  } from "./commands/PutConformancePackCommand";
326
+ import {
327
+ PutConnectorCommandInput,
328
+ PutConnectorCommandOutput,
329
+ } from "./commands/PutConnectorCommand";
314
330
  import {
315
331
  PutDeliveryChannelCommandInput,
316
332
  PutDeliveryChannelCommandOutput,
@@ -355,6 +371,10 @@ import {
355
371
  PutStoredQueryCommandInput,
356
372
  PutStoredQueryCommandOutput,
357
373
  } from "./commands/PutStoredQueryCommand";
374
+ import {
375
+ PutThirdPartyServiceLinkedConfigurationRecorderCommandInput,
376
+ PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput,
377
+ } from "./commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand";
358
378
  import {
359
379
  SelectAggregateResourceConfigCommandInput,
360
380
  SelectAggregateResourceConfigCommandOutput,
@@ -497,6 +517,19 @@ export interface ConfigService {
497
517
  options: __HttpHandlerOptions,
498
518
  cb: (err: any, data?: DeleteConformancePackCommandOutput) => void
499
519
  ): void;
520
+ deleteConnector(
521
+ args: DeleteConnectorCommandInput,
522
+ options?: __HttpHandlerOptions
523
+ ): Promise<DeleteConnectorCommandOutput>;
524
+ deleteConnector(
525
+ args: DeleteConnectorCommandInput,
526
+ cb: (err: any, data?: DeleteConnectorCommandOutput) => void
527
+ ): void;
528
+ deleteConnector(
529
+ args: DeleteConnectorCommandInput,
530
+ options: __HttpHandlerOptions,
531
+ cb: (err: any, data?: DeleteConnectorCommandOutput) => void
532
+ ): void;
500
533
  deleteDeliveryChannel(
501
534
  args: DeleteDeliveryChannelCommandInput,
502
535
  options?: __HttpHandlerOptions
@@ -620,6 +653,7 @@ export interface ConfigService {
620
653
  options: __HttpHandlerOptions,
621
654
  cb: (err: any, data?: DeleteRetentionConfigurationCommandOutput) => void
622
655
  ): void;
656
+ deleteServiceLinkedConfigurationRecorder(): Promise<DeleteServiceLinkedConfigurationRecorderCommandOutput>;
623
657
  deleteServiceLinkedConfigurationRecorder(
624
658
  args: DeleteServiceLinkedConfigurationRecorderCommandInput,
625
659
  options?: __HttpHandlerOptions
@@ -1287,6 +1321,19 @@ export interface ConfigService {
1287
1321
  data?: GetConformancePackComplianceSummaryCommandOutput
1288
1322
  ) => void
1289
1323
  ): void;
1324
+ getConnector(
1325
+ args: GetConnectorCommandInput,
1326
+ options?: __HttpHandlerOptions
1327
+ ): Promise<GetConnectorCommandOutput>;
1328
+ getConnector(
1329
+ args: GetConnectorCommandInput,
1330
+ cb: (err: any, data?: GetConnectorCommandOutput) => void
1331
+ ): void;
1332
+ getConnector(
1333
+ args: GetConnectorCommandInput,
1334
+ options: __HttpHandlerOptions,
1335
+ cb: (err: any, data?: GetConnectorCommandOutput) => void
1336
+ ): void;
1290
1337
  getCustomRulePolicy(): Promise<GetCustomRulePolicyCommandOutput>;
1291
1338
  getCustomRulePolicy(
1292
1339
  args: GetCustomRulePolicyCommandInput,
@@ -1452,6 +1499,20 @@ export interface ConfigService {
1452
1499
  data?: ListConformancePackComplianceScoresCommandOutput
1453
1500
  ) => void
1454
1501
  ): void;
1502
+ listConnectors(): Promise<ListConnectorsCommandOutput>;
1503
+ listConnectors(
1504
+ args: ListConnectorsCommandInput,
1505
+ options?: __HttpHandlerOptions
1506
+ ): Promise<ListConnectorsCommandOutput>;
1507
+ listConnectors(
1508
+ args: ListConnectorsCommandInput,
1509
+ cb: (err: any, data?: ListConnectorsCommandOutput) => void
1510
+ ): void;
1511
+ listConnectors(
1512
+ args: ListConnectorsCommandInput,
1513
+ options: __HttpHandlerOptions,
1514
+ cb: (err: any, data?: ListConnectorsCommandOutput) => void
1515
+ ): void;
1455
1516
  listDiscoveredResources(
1456
1517
  args: ListDiscoveredResourcesCommandInput,
1457
1518
  options?: __HttpHandlerOptions
@@ -1571,6 +1632,19 @@ export interface ConfigService {
1571
1632
  options: __HttpHandlerOptions,
1572
1633
  cb: (err: any, data?: PutConformancePackCommandOutput) => void
1573
1634
  ): void;
1635
+ putConnector(
1636
+ args: PutConnectorCommandInput,
1637
+ options?: __HttpHandlerOptions
1638
+ ): Promise<PutConnectorCommandOutput>;
1639
+ putConnector(
1640
+ args: PutConnectorCommandInput,
1641
+ cb: (err: any, data?: PutConnectorCommandOutput) => void
1642
+ ): void;
1643
+ putConnector(
1644
+ args: PutConnectorCommandInput,
1645
+ options: __HttpHandlerOptions,
1646
+ cb: (err: any, data?: PutConnectorCommandOutput) => void
1647
+ ): void;
1574
1648
  putDeliveryChannel(
1575
1649
  args: PutDeliveryChannelCommandInput,
1576
1650
  options?: __HttpHandlerOptions
@@ -1720,6 +1794,25 @@ export interface ConfigService {
1720
1794
  options: __HttpHandlerOptions,
1721
1795
  cb: (err: any, data?: PutStoredQueryCommandOutput) => void
1722
1796
  ): void;
1797
+ putThirdPartyServiceLinkedConfigurationRecorder(
1798
+ args: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput,
1799
+ options?: __HttpHandlerOptions
1800
+ ): Promise<PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput>;
1801
+ putThirdPartyServiceLinkedConfigurationRecorder(
1802
+ args: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput,
1803
+ cb: (
1804
+ err: any,
1805
+ data?: PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput
1806
+ ) => void
1807
+ ): void;
1808
+ putThirdPartyServiceLinkedConfigurationRecorder(
1809
+ args: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput,
1810
+ options: __HttpHandlerOptions,
1811
+ cb: (
1812
+ err: any,
1813
+ data?: PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput
1814
+ ) => void
1815
+ ): void;
1723
1816
  selectAggregateResourceConfig(
1724
1817
  args: SelectAggregateResourceConfigCommandInput,
1725
1818
  options?: __HttpHandlerOptions
@@ -2083,6 +2176,13 @@ export interface ConfigService {
2083
2176
  Exclude<keyof PaginationConfiguration, "client">
2084
2177
  >
2085
2178
  ): Paginator<ListConformancePackComplianceScoresCommandOutput>;
2179
+ paginateListConnectors(
2180
+ args?: ListConnectorsCommandInput,
2181
+ paginationConfig?: Pick<
2182
+ PaginationConfiguration,
2183
+ Exclude<keyof PaginationConfiguration, "client">
2184
+ >
2185
+ ): Paginator<ListConnectorsCommandOutput>;
2086
2186
  paginateListDiscoveredResources(
2087
2187
  args: ListDiscoveredResourcesCommandInput,
2088
2188
  paginationConfig?: Pick<
@@ -68,6 +68,10 @@ import {
68
68
  DeleteConformancePackCommandInput,
69
69
  DeleteConformancePackCommandOutput,
70
70
  } from "./commands/DeleteConformancePackCommand";
71
+ import {
72
+ DeleteConnectorCommandInput,
73
+ DeleteConnectorCommandOutput,
74
+ } from "./commands/DeleteConnectorCommand";
71
75
  import {
72
76
  DeleteDeliveryChannelCommandInput,
73
77
  DeleteDeliveryChannelCommandOutput,
@@ -264,6 +268,10 @@ import {
264
268
  GetConformancePackComplianceSummaryCommandInput,
265
269
  GetConformancePackComplianceSummaryCommandOutput,
266
270
  } from "./commands/GetConformancePackComplianceSummaryCommand";
271
+ import {
272
+ GetConnectorCommandInput,
273
+ GetConnectorCommandOutput,
274
+ } from "./commands/GetConnectorCommand";
267
275
  import {
268
276
  GetCustomRulePolicyCommandInput,
269
277
  GetCustomRulePolicyCommandOutput,
@@ -308,6 +316,10 @@ import {
308
316
  ListConformancePackComplianceScoresCommandInput,
309
317
  ListConformancePackComplianceScoresCommandOutput,
310
318
  } from "./commands/ListConformancePackComplianceScoresCommand";
319
+ import {
320
+ ListConnectorsCommandInput,
321
+ ListConnectorsCommandOutput,
322
+ } from "./commands/ListConnectorsCommand";
311
323
  import {
312
324
  ListDiscoveredResourcesCommandInput,
313
325
  ListDiscoveredResourcesCommandOutput,
@@ -344,6 +356,10 @@ import {
344
356
  PutConformancePackCommandInput,
345
357
  PutConformancePackCommandOutput,
346
358
  } from "./commands/PutConformancePackCommand";
359
+ import {
360
+ PutConnectorCommandInput,
361
+ PutConnectorCommandOutput,
362
+ } from "./commands/PutConnectorCommand";
347
363
  import {
348
364
  PutDeliveryChannelCommandInput,
349
365
  PutDeliveryChannelCommandOutput,
@@ -388,6 +404,10 @@ import {
388
404
  PutStoredQueryCommandInput,
389
405
  PutStoredQueryCommandOutput,
390
406
  } from "./commands/PutStoredQueryCommand";
407
+ import {
408
+ PutThirdPartyServiceLinkedConfigurationRecorderCommandInput,
409
+ PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput,
410
+ } from "./commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand";
391
411
  import {
392
412
  SelectAggregateResourceConfigCommandInput,
393
413
  SelectAggregateResourceConfigCommandOutput,
@@ -440,6 +460,7 @@ export type ServiceInputTypes =
440
460
  | DeleteConfigurationAggregatorCommandInput
441
461
  | DeleteConfigurationRecorderCommandInput
442
462
  | DeleteConformancePackCommandInput
463
+ | DeleteConnectorCommandInput
443
464
  | DeleteDeliveryChannelCommandInput
444
465
  | DeleteEvaluationResultsCommandInput
445
466
  | DeleteOrganizationConfigRuleCommandInput
@@ -489,6 +510,7 @@ export type ServiceInputTypes =
489
510
  | GetComplianceSummaryByResourceTypeCommandInput
490
511
  | GetConformancePackComplianceDetailsCommandInput
491
512
  | GetConformancePackComplianceSummaryCommandInput
513
+ | GetConnectorCommandInput
492
514
  | GetCustomRulePolicyCommandInput
493
515
  | GetDiscoveredResourceCountsCommandInput
494
516
  | GetOrganizationConfigRuleDetailedStatusCommandInput
@@ -500,6 +522,7 @@ export type ServiceInputTypes =
500
522
  | ListAggregateDiscoveredResourcesCommandInput
501
523
  | ListConfigurationRecordersCommandInput
502
524
  | ListConformancePackComplianceScoresCommandInput
525
+ | ListConnectorsCommandInput
503
526
  | ListDiscoveredResourcesCommandInput
504
527
  | ListResourceEvaluationsCommandInput
505
528
  | ListStoredQueriesCommandInput
@@ -509,6 +532,7 @@ export type ServiceInputTypes =
509
532
  | PutConfigurationAggregatorCommandInput
510
533
  | PutConfigurationRecorderCommandInput
511
534
  | PutConformancePackCommandInput
535
+ | PutConnectorCommandInput
512
536
  | PutDeliveryChannelCommandInput
513
537
  | PutEvaluationsCommandInput
514
538
  | PutExternalEvaluationCommandInput
@@ -520,6 +544,7 @@ export type ServiceInputTypes =
520
544
  | PutRetentionConfigurationCommandInput
521
545
  | PutServiceLinkedConfigurationRecorderCommandInput
522
546
  | PutStoredQueryCommandInput
547
+ | PutThirdPartyServiceLinkedConfigurationRecorderCommandInput
523
548
  | SelectAggregateResourceConfigCommandInput
524
549
  | SelectResourceConfigCommandInput
525
550
  | StartConfigRulesEvaluationCommandInput
@@ -538,6 +563,7 @@ export type ServiceOutputTypes =
538
563
  | DeleteConfigurationAggregatorCommandOutput
539
564
  | DeleteConfigurationRecorderCommandOutput
540
565
  | DeleteConformancePackCommandOutput
566
+ | DeleteConnectorCommandOutput
541
567
  | DeleteDeliveryChannelCommandOutput
542
568
  | DeleteEvaluationResultsCommandOutput
543
569
  | DeleteOrganizationConfigRuleCommandOutput
@@ -587,6 +613,7 @@ export type ServiceOutputTypes =
587
613
  | GetComplianceSummaryByResourceTypeCommandOutput
588
614
  | GetConformancePackComplianceDetailsCommandOutput
589
615
  | GetConformancePackComplianceSummaryCommandOutput
616
+ | GetConnectorCommandOutput
590
617
  | GetCustomRulePolicyCommandOutput
591
618
  | GetDiscoveredResourceCountsCommandOutput
592
619
  | GetOrganizationConfigRuleDetailedStatusCommandOutput
@@ -598,6 +625,7 @@ export type ServiceOutputTypes =
598
625
  | ListAggregateDiscoveredResourcesCommandOutput
599
626
  | ListConfigurationRecordersCommandOutput
600
627
  | ListConformancePackComplianceScoresCommandOutput
628
+ | ListConnectorsCommandOutput
601
629
  | ListDiscoveredResourcesCommandOutput
602
630
  | ListResourceEvaluationsCommandOutput
603
631
  | ListStoredQueriesCommandOutput
@@ -607,6 +635,7 @@ export type ServiceOutputTypes =
607
635
  | PutConfigurationAggregatorCommandOutput
608
636
  | PutConfigurationRecorderCommandOutput
609
637
  | PutConformancePackCommandOutput
638
+ | PutConnectorCommandOutput
610
639
  | PutDeliveryChannelCommandOutput
611
640
  | PutEvaluationsCommandOutput
612
641
  | PutExternalEvaluationCommandOutput
@@ -618,6 +647,7 @@ export type ServiceOutputTypes =
618
647
  | PutRetentionConfigurationCommandOutput
619
648
  | PutServiceLinkedConfigurationRecorderCommandOutput
620
649
  | PutStoredQueryCommandOutput
650
+ | PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput
621
651
  | SelectAggregateResourceConfigCommandOutput
622
652
  | SelectResourceConfigCommandOutput
623
653
  | StartConfigRulesEvaluationCommandOutput
@@ -0,0 +1,38 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { DeleteConnectorRequest } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface DeleteConnectorCommandInput extends DeleteConnectorRequest {}
5
+ export interface DeleteConnectorCommandOutput extends __MetadataBearer {}
6
+ declare const DeleteConnectorCommand_base: {
7
+ new (
8
+ input: DeleteConnectorCommandInput
9
+ ): import("@smithy/core/client").CommandImpl<
10
+ DeleteConnectorCommandInput,
11
+ DeleteConnectorCommandOutput,
12
+ import("..").ConfigServiceClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
15
+ >;
16
+ new (
17
+ input: DeleteConnectorCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ DeleteConnectorCommandInput,
20
+ DeleteConnectorCommandOutput,
21
+ import("..").ConfigServiceClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
24
+ >;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
26
+ };
27
+ export declare class DeleteConnectorCommand extends DeleteConnectorCommand_base {
28
+ protected static __types: {
29
+ api: {
30
+ input: DeleteConnectorRequest;
31
+ output: {};
32
+ };
33
+ sdk: {
34
+ input: DeleteConnectorCommandInput;
35
+ output: DeleteConnectorCommandOutput;
36
+ };
37
+ };
38
+ }
@@ -20,7 +20,7 @@ declare const DeleteServiceLinkedConfigurationRecorderCommand_base: {
20
20
  import("..").ServiceOutputTypes
21
21
  >;
22
22
  new (
23
- input: DeleteServiceLinkedConfigurationRecorderCommandInput
23
+ ...[input]: [] | [DeleteServiceLinkedConfigurationRecorderCommandInput]
24
24
  ): import("@smithy/core/client").CommandImpl<
25
25
  DeleteServiceLinkedConfigurationRecorderCommandInput,
26
26
  DeleteServiceLinkedConfigurationRecorderCommandOutput,
@@ -0,0 +1,40 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { GetConnectorRequest, GetConnectorResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface GetConnectorCommandInput extends GetConnectorRequest {}
5
+ export interface GetConnectorCommandOutput
6
+ extends GetConnectorResponse,
7
+ __MetadataBearer {}
8
+ declare const GetConnectorCommand_base: {
9
+ new (
10
+ input: GetConnectorCommandInput
11
+ ): import("@smithy/core/client").CommandImpl<
12
+ GetConnectorCommandInput,
13
+ GetConnectorCommandOutput,
14
+ import("..").ConfigServiceClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
17
+ >;
18
+ new (
19
+ input: GetConnectorCommandInput
20
+ ): import("@smithy/core/client").CommandImpl<
21
+ GetConnectorCommandInput,
22
+ GetConnectorCommandOutput,
23
+ import("..").ConfigServiceClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
28
+ };
29
+ export declare class GetConnectorCommand extends GetConnectorCommand_base {
30
+ protected static __types: {
31
+ api: {
32
+ input: GetConnectorRequest;
33
+ output: GetConnectorResponse;
34
+ };
35
+ sdk: {
36
+ input: GetConnectorCommandInput;
37
+ output: GetConnectorCommandOutput;
38
+ };
39
+ };
40
+ }
@@ -0,0 +1,43 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ ListConnectorsRequest,
4
+ ListConnectorsResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface ListConnectorsCommandInput extends ListConnectorsRequest {}
8
+ export interface ListConnectorsCommandOutput
9
+ extends ListConnectorsResponse,
10
+ __MetadataBearer {}
11
+ declare const ListConnectorsCommand_base: {
12
+ new (
13
+ input: ListConnectorsCommandInput
14
+ ): import("@smithy/core/client").CommandImpl<
15
+ ListConnectorsCommandInput,
16
+ ListConnectorsCommandOutput,
17
+ import("..").ConfigServiceClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
20
+ >;
21
+ new (
22
+ ...[input]: [] | [ListConnectorsCommandInput]
23
+ ): import("@smithy/core/client").CommandImpl<
24
+ ListConnectorsCommandInput,
25
+ ListConnectorsCommandOutput,
26
+ import("..").ConfigServiceClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
29
+ >;
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
+ };
32
+ export declare class ListConnectorsCommand extends ListConnectorsCommand_base {
33
+ protected static __types: {
34
+ api: {
35
+ input: ListConnectorsRequest;
36
+ output: ListConnectorsResponse;
37
+ };
38
+ sdk: {
39
+ input: ListConnectorsCommandInput;
40
+ output: ListConnectorsCommandOutput;
41
+ };
42
+ };
43
+ }
@@ -0,0 +1,40 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { PutConnectorRequest, PutConnectorResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface PutConnectorCommandInput extends PutConnectorRequest {}
5
+ export interface PutConnectorCommandOutput
6
+ extends PutConnectorResponse,
7
+ __MetadataBearer {}
8
+ declare const PutConnectorCommand_base: {
9
+ new (
10
+ input: PutConnectorCommandInput
11
+ ): import("@smithy/core/client").CommandImpl<
12
+ PutConnectorCommandInput,
13
+ PutConnectorCommandOutput,
14
+ import("..").ConfigServiceClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
17
+ >;
18
+ new (
19
+ input: PutConnectorCommandInput
20
+ ): import("@smithy/core/client").CommandImpl<
21
+ PutConnectorCommandInput,
22
+ PutConnectorCommandOutput,
23
+ import("..").ConfigServiceClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
28
+ };
29
+ export declare class PutConnectorCommand extends PutConnectorCommand_base {
30
+ protected static __types: {
31
+ api: {
32
+ input: PutConnectorRequest;
33
+ output: PutConnectorResponse;
34
+ };
35
+ sdk: {
36
+ input: PutConnectorCommandInput;
37
+ output: PutConnectorCommandOutput;
38
+ };
39
+ };
40
+ }
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ PutThirdPartyServiceLinkedConfigurationRecorderRequest,
4
+ PutThirdPartyServiceLinkedConfigurationRecorderResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface PutThirdPartyServiceLinkedConfigurationRecorderCommandInput
8
+ extends PutThirdPartyServiceLinkedConfigurationRecorderRequest {}
9
+ export interface PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput
10
+ extends PutThirdPartyServiceLinkedConfigurationRecorderResponse,
11
+ __MetadataBearer {}
12
+ declare const PutThirdPartyServiceLinkedConfigurationRecorderCommand_base: {
13
+ new (
14
+ input: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ PutThirdPartyServiceLinkedConfigurationRecorderCommandInput,
17
+ PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput,
18
+ import("..").ConfigServiceClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ PutThirdPartyServiceLinkedConfigurationRecorderCommandInput,
26
+ PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput,
27
+ import("..").ConfigServiceClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class PutThirdPartyServiceLinkedConfigurationRecorderCommand extends PutThirdPartyServiceLinkedConfigurationRecorderCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: PutThirdPartyServiceLinkedConfigurationRecorderRequest;
37
+ output: PutThirdPartyServiceLinkedConfigurationRecorderResponse;
38
+ };
39
+ sdk: {
40
+ input: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput;
41
+ output: PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput;
42
+ };
43
+ };
44
+ }