@aws-sdk/client-config-service 3.1080.0 → 3.1082.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 +8 -8
@@ -89,6 +89,15 @@ declare const UntagResourceCommand_base: {
89
89
  * <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
90
90
  * </li>
91
91
  * </ul>
92
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
93
+ * <ul>
94
+ * <li>
95
+ * <p>You have provided both <code>Arn</code> and <code>ServicePrincipal</code>. Only one of <code>Arn</code> or <code>ServicePrincipal</code> can be specified.</p>
96
+ * </li>
97
+ * <li>
98
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
99
+ * </li>
100
+ * </ul>
92
101
  *
93
102
  * @throws {@link ConfigServiceServiceException}
94
103
  * <p>Base exception class for all service exceptions from ConfigService service.</p>
@@ -6,6 +6,7 @@ export * from "./DeleteConfigRuleCommand";
6
6
  export * from "./DeleteConfigurationAggregatorCommand";
7
7
  export * from "./DeleteConfigurationRecorderCommand";
8
8
  export * from "./DeleteConformancePackCommand";
9
+ export * from "./DeleteConnectorCommand";
9
10
  export * from "./DeleteDeliveryChannelCommand";
10
11
  export * from "./DeleteEvaluationResultsCommand";
11
12
  export * from "./DeleteOrganizationConfigRuleCommand";
@@ -55,6 +56,7 @@ export * from "./GetComplianceSummaryByConfigRuleCommand";
55
56
  export * from "./GetComplianceSummaryByResourceTypeCommand";
56
57
  export * from "./GetConformancePackComplianceDetailsCommand";
57
58
  export * from "./GetConformancePackComplianceSummaryCommand";
59
+ export * from "./GetConnectorCommand";
58
60
  export * from "./GetCustomRulePolicyCommand";
59
61
  export * from "./GetDiscoveredResourceCountsCommand";
60
62
  export * from "./GetOrganizationConfigRuleDetailedStatusCommand";
@@ -66,6 +68,7 @@ export * from "./GetStoredQueryCommand";
66
68
  export * from "./ListAggregateDiscoveredResourcesCommand";
67
69
  export * from "./ListConfigurationRecordersCommand";
68
70
  export * from "./ListConformancePackComplianceScoresCommand";
71
+ export * from "./ListConnectorsCommand";
69
72
  export * from "./ListDiscoveredResourcesCommand";
70
73
  export * from "./ListResourceEvaluationsCommand";
71
74
  export * from "./ListStoredQueriesCommand";
@@ -75,6 +78,7 @@ export * from "./PutConfigRuleCommand";
75
78
  export * from "./PutConfigurationAggregatorCommand";
76
79
  export * from "./PutConfigurationRecorderCommand";
77
80
  export * from "./PutConformancePackCommand";
81
+ export * from "./PutConnectorCommand";
78
82
  export * from "./PutDeliveryChannelCommand";
79
83
  export * from "./PutEvaluationsCommand";
80
84
  export * from "./PutExternalEvaluationCommand";
@@ -86,6 +90,7 @@ export * from "./PutResourceConfigCommand";
86
90
  export * from "./PutRetentionConfigurationCommand";
87
91
  export * from "./PutServiceLinkedConfigurationRecorderCommand";
88
92
  export * from "./PutStoredQueryCommand";
93
+ export * from "./PutThirdPartyServiceLinkedConfigurationRecorderCommand";
89
94
  export * from "./SelectAggregateResourceConfigCommand";
90
95
  export * from "./SelectResourceConfigCommand";
91
96
  export * from "./StartConfigRulesEvaluationCommand";
@@ -821,6 +821,17 @@ export declare const RecorderStatus: {
821
821
  * @public
822
822
  */
823
823
  export type RecorderStatus = (typeof RecorderStatus)[keyof typeof RecorderStatus];
824
+ /**
825
+ * @public
826
+ * @enum
827
+ */
828
+ export declare const Provider: {
829
+ readonly AZURE: "AZURE";
830
+ };
831
+ /**
832
+ * @public
833
+ */
834
+ export type Provider = (typeof Provider)[keyof typeof Provider];
824
835
  /**
825
836
  * @public
826
837
  * @enum
@@ -836,6 +847,17 @@ export declare const ConformancePackState: {
836
847
  * @public
837
848
  */
838
849
  export type ConformancePackState = (typeof ConformancePackState)[keyof typeof ConformancePackState];
850
+ /**
851
+ * @public
852
+ * @enum
853
+ */
854
+ export declare const ConnectorFilterName: {
855
+ readonly provider: "provider";
856
+ };
857
+ /**
858
+ * @public
859
+ */
860
+ export type ConnectorFilterName = (typeof ConnectorFilterName)[keyof typeof ConnectorFilterName];
839
861
  /**
840
862
  * @public
841
863
  * @enum
@@ -2,7 +2,12 @@ import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/
2
2
  import { ConfigServiceServiceException as __BaseException } from "./ConfigServiceServiceException";
3
3
  /**
4
4
  * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutServiceLinkedConfigurationRecorder.html">PutServiceLinkedConfigurationRecorder</a>, you cannot create a service-linked recorder because a service-linked recorder already exists for the specified service.</p>
5
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutThirdPartyServiceLinkedConfigurationRecorder.html">PutThirdPartyServiceLinkedConfigurationRecorder</a>, you cannot create a service-linked recorder because the specified service principal does not support multiple configuration recorders and one already exists.</p>
6
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutThirdPartyServiceLinkedConfigurationRecorder.html">PutThirdPartyServiceLinkedConfigurationRecorder</a>, another in-progress operation is currently referencing the same connector or service principal. Please try again later.</p>
7
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutConnector.html">PutConnector</a>, you cannot create a connector because a connector already exists for the specified connector configuration.</p>
5
8
  * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, you cannot delete the service-linked recorder because it is currently in use by the linked Amazon Web Services service.</p>
9
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, another in-progress operation is currently referencing the same connector. Please try again later.</p>
10
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteConnector.html">DeleteConnector</a>, another in-progress operation is currently referencing the connector. Please try again later.</p>
6
11
  * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteDeliveryChannel.html">DeleteDeliveryChannel</a>, you cannot delete the specified delivery channel because the customer managed configuration recorder is running. Use the <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_StopConfigurationRecorder.html">StopConfigurationRecorder</a> operation to stop the customer managed configuration
7
12
  * recorder.</p>
8
13
  * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_AssociateResourceTypes.html">AssociateResourceTypes</a> and <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DisassociateResourceTypes.html">DisassociateResourceTypes</a>, one of the following errors:</p>
@@ -72,6 +77,15 @@ export declare class NoSuchConfigurationRecorderException extends __BaseExceptio
72
77
  * <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
73
78
  * </li>
74
79
  * </ul>
80
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
81
+ * <ul>
82
+ * <li>
83
+ * <p>You have provided both <code>Arn</code> and <code>ServicePrincipal</code>. Only one of <code>Arn</code> or <code>ServicePrincipal</code> can be specified.</p>
84
+ * </li>
85
+ * <li>
86
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
87
+ * </li>
88
+ * </ul>
75
89
  * @public
76
90
  */
77
91
  export declare class ValidationException extends __BaseException {
@@ -211,6 +225,18 @@ export declare class NoSuchConformancePackException extends __BaseException {
211
225
  */
212
226
  constructor(opts: __ExceptionOptionType<NoSuchConformancePackException, __BaseException>);
213
227
  }
228
+ /**
229
+ * <p>You have specified a resource that does not exist.</p>
230
+ * @public
231
+ */
232
+ export declare class ResourceNotFoundException extends __BaseException {
233
+ readonly name: "ResourceNotFoundException";
234
+ readonly $fault: "client";
235
+ /**
236
+ * @internal
237
+ */
238
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
239
+ }
214
240
  /**
215
241
  * <p>You cannot delete the delivery channel you specified because the customer managed configuration recorder is running.</p>
216
242
  * @public
@@ -317,6 +343,9 @@ export declare class NoSuchOrganizationConformancePackException extends __BaseEx
317
343
  * <li>
318
344
  * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutServiceLinkedConfigurationRecorder.html">PutServiceLinkedConfigurationRecorder</a>, a service-linked configuration recorder cannot be created because you do not have the following permissions: IAM <code>CreateServiceLinkedRole</code>.</p>
319
345
  * </li>
346
+ * <li>
347
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutConnector.html">PutConnector</a>, a connector cannot be created because you do not have the following permissions: IAM <code>CreateServiceLinkedRole</code>.</p>
348
+ * </li>
320
349
  * </ul>
321
350
  * @public
322
351
  */
@@ -388,18 +417,6 @@ export declare class NoSuchRetentionConfigurationException extends __BaseExcepti
388
417
  */
389
418
  constructor(opts: __ExceptionOptionType<NoSuchRetentionConfigurationException, __BaseException>);
390
419
  }
391
- /**
392
- * <p>You have specified a resource that does not exist.</p>
393
- * @public
394
- */
395
- export declare class ResourceNotFoundException extends __BaseException {
396
- readonly name: "ResourceNotFoundException";
397
- readonly $fault: "client";
398
- /**
399
- * @internal
400
- */
401
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
402
- }
403
420
  /**
404
421
  * <p>The specified limit is outside the allowable range.</p>
405
422
  * @public
@@ -706,6 +723,18 @@ export declare class MaxNumberOfConformancePacksExceededException extends __Base
706
723
  */
707
724
  constructor(opts: __ExceptionOptionType<MaxNumberOfConformancePacksExceededException, __BaseException>);
708
725
  }
726
+ /**
727
+ * <p>You have reached the limit of the number of connectors in your account.</p>
728
+ * @public
729
+ */
730
+ export declare class MaxNumberOfConnectorsExceededException extends __BaseException {
731
+ readonly name: "MaxNumberOfConnectorsExceededException";
732
+ readonly $fault: "client";
733
+ /**
734
+ * @internal
735
+ */
736
+ constructor(opts: __ExceptionOptionType<MaxNumberOfConnectorsExceededException, __BaseException>);
737
+ }
709
738
  /**
710
739
  * <p>You have reached the limit of the number of delivery channels
711
740
  * you can create.</p>
@@ -1,4 +1,4 @@
1
- import type { AggregateConformancePackComplianceSummaryGroupKey, AggregatedSourceStatusType, AggregatedSourceType, AggregatorFilterType, ChronologicalOrder, ComplianceType, ConfigRuleComplianceSummaryGroupKey, ConfigRuleState, ConfigurationItemStatus, ConfigurationRecorderFilterName, ConformancePackComplianceType, ConformancePackState, DeliveryStatus, EvaluationMode, EventSource, MaximumExecutionFrequency, MemberAccountRuleStatus, MessageType, OrganizationConfigRuleTriggerType, OrganizationConfigRuleTriggerTypeNoSN, OrganizationResourceDetailedStatus, OrganizationResourceStatus, OrganizationRuleStatus, Owner, RecorderStatus, RecordingFrequency, RecordingScope, RecordingStrategyType, RemediationExecutionState, RemediationExecutionStepState, RemediationTargetType, ResourceConfigurationSchemaType, ResourceCountGroupKey, ResourceEvaluationStatus, ResourceType, ResourceValueType, RuleEvaluationVisibility, SortBy, SortOrder } from "./enums";
1
+ import type { AggregateConformancePackComplianceSummaryGroupKey, AggregatedSourceStatusType, AggregatedSourceType, AggregatorFilterType, ChronologicalOrder, ComplianceType, ConfigRuleComplianceSummaryGroupKey, ConfigRuleState, ConfigurationItemStatus, ConfigurationRecorderFilterName, ConformancePackComplianceType, ConformancePackState, ConnectorFilterName, DeliveryStatus, EvaluationMode, EventSource, MaximumExecutionFrequency, MemberAccountRuleStatus, MessageType, OrganizationConfigRuleTriggerType, OrganizationConfigRuleTriggerTypeNoSN, OrganizationResourceDetailedStatus, OrganizationResourceStatus, OrganizationRuleStatus, Owner, Provider, RecorderStatus, RecordingFrequency, RecordingScope, RecordingStrategyType, RemediationExecutionState, RemediationExecutionStepState, RemediationTargetType, ResourceConfigurationSchemaType, ResourceCountGroupKey, ResourceEvaluationStatus, ResourceType, ResourceValueType, RuleEvaluationVisibility, SortBy, SortOrder } from "./enums";
2
2
  /**
3
3
  * <p>A collection of accounts and regions.</p>
4
4
  * @public
@@ -992,6 +992,32 @@ export interface RecordingMode {
992
992
  */
993
993
  recordingModeOverrides?: RecordingModeOverride[] | undefined;
994
994
  }
995
+ /**
996
+ * <p>Specifies the scope of resources to record from a third-party cloud service provider.</p>
997
+ * @public
998
+ */
999
+ export interface ScopeConfiguration {
1000
+ /**
1001
+ * <p>The type of scope for the third-party cloud resources. Valid values include <code>tenant</code> and <code>subscription</code>.</p>
1002
+ * @public
1003
+ */
1004
+ scopeType: string | undefined;
1005
+ /**
1006
+ * <p>The list of specific scope values for the third-party cloud resources. For example, a list of Azure subscriptions or management groups.</p>
1007
+ * @public
1008
+ */
1009
+ scopeValues?: string[] | undefined;
1010
+ /**
1011
+ * <p>Specifies whether to record resources from all supported regions for the third-party cloud service provider.</p>
1012
+ * @public
1013
+ */
1014
+ allRegions: boolean | undefined;
1015
+ /**
1016
+ * <p>The list of regions from the third-party cloud service provider to include when recording resources. Used when <code>allRegions</code> is set to <code>false</code>.</p>
1017
+ * @public
1018
+ */
1019
+ includedRegions?: string[] | undefined;
1020
+ }
995
1021
  /**
996
1022
  * <p>Records configuration changes to the resource types in scope.</p>
997
1023
  * <p>For more information about the configuration recorder,
@@ -1109,6 +1135,16 @@ export interface ConfigurationRecorder {
1109
1135
  * @public
1110
1136
  */
1111
1137
  servicePrincipal?: string | undefined;
1138
+ /**
1139
+ * <p>The Amazon Resource Name (ARN) of the connector that specifies the connection between a third-party cloud service provider and Config.</p>
1140
+ * @public
1141
+ */
1142
+ connectorArn?: string | undefined;
1143
+ /**
1144
+ * <p>Specifies the scope of resources to record from the third-party cloud service provider connected through the connector.</p>
1145
+ * @public
1146
+ */
1147
+ scopeConfiguration?: ScopeConfiguration | undefined;
1112
1148
  }
1113
1149
  /**
1114
1150
  * @public
@@ -1124,6 +1160,22 @@ export interface AssociateResourceTypesResponse {
1124
1160
  */
1125
1161
  ConfigurationRecorder: ConfigurationRecorder | undefined;
1126
1162
  }
1163
+ /**
1164
+ * <p>The configuration details for connecting to Microsoft Azure.</p>
1165
+ * @public
1166
+ */
1167
+ export interface AzureConnectorConfiguration {
1168
+ /**
1169
+ * <p>The Azure tenant identifier.</p>
1170
+ * @public
1171
+ */
1172
+ tenantIdentifier: string | undefined;
1173
+ /**
1174
+ * <p>The Azure client identifier.</p>
1175
+ * @public
1176
+ */
1177
+ clientIdentifier: string | undefined;
1178
+ }
1127
1179
  /**
1128
1180
  * <p>The detailed configurations of a specified resource.</p>
1129
1181
  * @public
@@ -2351,7 +2403,7 @@ export interface ConfigurationRecorderStatus {
2351
2403
  servicePrincipal?: string | undefined;
2352
2404
  }
2353
2405
  /**
2354
- * <p>A summary of a configuration recorder, including the <code>arn</code>, <code>name</code>, <code>servicePrincipal</code>, and <code>recordingScope</code>.</p>
2406
+ * <p>A summary of a configuration recorder, including the <code>arn</code>, <code>name</code>, <code>servicePrincipal</code>, <code>recordingScope</code>, and <code>provider</code>.</p>
2355
2407
  * @public
2356
2408
  */
2357
2409
  export interface ConfigurationRecorderSummary {
@@ -2375,6 +2427,11 @@ export interface ConfigurationRecorderSummary {
2375
2427
  * @public
2376
2428
  */
2377
2429
  recordingScope: RecordingScope | undefined;
2430
+ /**
2431
+ * <p>For service-linked configuration recorders that record resources from a third-party cloud service provider, indicates the cloud service provider. Currently, <code>AZURE</code> is supported.</p>
2432
+ * @public
2433
+ */
2434
+ provider?: Provider | undefined;
2378
2435
  }
2379
2436
  /**
2380
2437
  * <p>Filters the conformance pack by compliance types and Config rule names.</p>
@@ -2687,6 +2744,90 @@ export interface ConformancePackStatusDetail {
2687
2744
  */
2688
2745
  LastUpdateCompletedTime?: Date | undefined;
2689
2746
  }
2747
+ /**
2748
+ * <p>The provider-specific configuration for connecting to the third-party cloud service provider. You must specify exactly one provider configuration.</p>
2749
+ * @public
2750
+ */
2751
+ export interface ConnectorConfiguration {
2752
+ /**
2753
+ * <p>The configuration for an Azure connector.</p>
2754
+ * @public
2755
+ */
2756
+ azure?: AzureConnectorConfiguration | undefined;
2757
+ }
2758
+ /**
2759
+ * <p>The details of the connector, including the connector configuration and connector ARN.</p>
2760
+ * @public
2761
+ */
2762
+ export interface Connector {
2763
+ /**
2764
+ * <p>The name of the connector.</p>
2765
+ * @public
2766
+ */
2767
+ name: string | undefined;
2768
+ /**
2769
+ * <p>The Amazon Resource Name (ARN) of the connector.</p>
2770
+ * @public
2771
+ */
2772
+ arn: string | undefined;
2773
+ /**
2774
+ * <p>The provider-specific configuration for connecting to the third-party cloud service provider.</p>
2775
+ * @public
2776
+ */
2777
+ connectorConfiguration: ConnectorConfiguration | undefined;
2778
+ /**
2779
+ * <p>The date and time that the connector was created.</p>
2780
+ * @public
2781
+ */
2782
+ createdTime: Date | undefined;
2783
+ }
2784
+ /**
2785
+ * <p>Filters connectors based on the connector provider.</p>
2786
+ * @public
2787
+ */
2788
+ export interface ConnectorFilter {
2789
+ /**
2790
+ * <p>The name of the filter. Currently, only <code>provider</code> is supported.</p>
2791
+ * @public
2792
+ */
2793
+ filterName?: ConnectorFilterName | undefined;
2794
+ /**
2795
+ * <p>The value of the filter. For <code>provider</code>, valid values include: <code>AZURE</code>.</p>
2796
+ * @public
2797
+ */
2798
+ filterValues?: string[] | undefined;
2799
+ }
2800
+ /**
2801
+ * <p>A summary of a connector.</p>
2802
+ * @public
2803
+ */
2804
+ export interface ConnectorSummary {
2805
+ /**
2806
+ * <p>The Amazon Resource Name (ARN) of the connector.</p>
2807
+ * @public
2808
+ */
2809
+ arn: string | undefined;
2810
+ /**
2811
+ * <p>The name of the connector.</p>
2812
+ * @public
2813
+ */
2814
+ name: string | undefined;
2815
+ /**
2816
+ * <p>The third-party cloud service provider. Currently, <code>AZURE</code> is supported.</p>
2817
+ * @public
2818
+ */
2819
+ provider: Provider | undefined;
2820
+ /**
2821
+ * <p>The Azure tenant identifier for the connector.</p>
2822
+ * @public
2823
+ */
2824
+ tenantIdentifier: string | undefined;
2825
+ /**
2826
+ * <p>The date and time that the connector was created.</p>
2827
+ * @public
2828
+ */
2829
+ createdTime: Date | undefined;
2830
+ }
2690
2831
  /**
2691
2832
  * @public
2692
2833
  */
@@ -2748,6 +2889,16 @@ export interface DeleteConformancePackRequest {
2748
2889
  */
2749
2890
  ConformancePackName: string | undefined;
2750
2891
  }
2892
+ /**
2893
+ * @public
2894
+ */
2895
+ export interface DeleteConnectorRequest {
2896
+ /**
2897
+ * <p>The Amazon Resource Name (ARN) of the connector that you want to delete.</p>
2898
+ * @public
2899
+ */
2900
+ Arn: string | undefined;
2901
+ }
2751
2902
  /**
2752
2903
  * <p>The input for the <a>DeleteDeliveryChannel</a>
2753
2904
  * action. The action accepts the following data, in JSON format.
@@ -2923,10 +3074,15 @@ export interface DeleteRetentionConfigurationRequest {
2923
3074
  */
2924
3075
  export interface DeleteServiceLinkedConfigurationRecorderRequest {
2925
3076
  /**
2926
- * <p>The service principal of the Amazon Web Services service for the service-linked configuration recorder that you want to delete.</p>
3077
+ * <p>The service principal of the Amazon Web Services service for the service-linked configuration recorder that you want to delete. This field is only supported for Amazon Web Services service principals. For third-party service-linked configuration recorders, use <code>Arn</code> instead.</p>
2927
3078
  * @public
2928
3079
  */
2929
- ServicePrincipal: string | undefined;
3080
+ ServicePrincipal?: string | undefined;
3081
+ /**
3082
+ * <p>The Amazon Resource Name (ARN) of the service-linked configuration recorder that you want to delete. For third-party service-linked configuration recorders, you must use <code>Arn</code>. You must specify exactly one of <code>Arn</code> or <code>ServicePrincipal</code>.</p>
3083
+ * @public
3084
+ */
3085
+ Arn?: string | undefined;
2930
3086
  }
2931
3087
  /**
2932
3088
  * @public
@@ -3371,13 +3527,6 @@ export interface DescribeConfigRulesRequest {
3371
3527
  * @public
3372
3528
  */
3373
3529
  ConfigRuleNames?: string[] | undefined;
3374
- /**
3375
- * <p>The <code>nextToken</code> string returned on a previous page
3376
- * that you use to get the next page of results in a paginated
3377
- * response.</p>
3378
- * @public
3379
- */
3380
- NextToken?: string | undefined;
3381
3530
  /**
3382
3531
  * <p>Returns a list of Detective or Proactive Config rules. By default, this API returns an unfiltered list. For more information on Detective or Proactive Config rules,
3383
3532
  * see <a href="https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config-rules.html">
@@ -3386,6 +3535,13 @@ export interface DescribeConfigRulesRequest {
3386
3535
  * @public
3387
3536
  */
3388
3537
  Filters?: DescribeConfigRulesFilters | undefined;
3538
+ /**
3539
+ * <p>The <code>nextToken</code> string returned on a previous page
3540
+ * that you use to get the next page of results in a paginated
3541
+ * response.</p>
3542
+ * @public
3543
+ */
3544
+ NextToken?: string | undefined;
3389
3545
  }
3390
3546
  /**
3391
3547
  * <p></p>
@@ -3516,7 +3672,7 @@ export interface DescribeConfigurationRecordersRequest {
3516
3672
  */
3517
3673
  ConfigurationRecorderNames?: string[] | undefined;
3518
3674
  /**
3519
- * <p>For service-linked configuration recorders, you can use the service principal of the linked Amazon Web Services service to specify the configuration recorder.</p>
3675
+ * <p>For service-linked configuration recorders, you can use the service principal of the linked Amazon Web Services service to specify the configuration recorder. This field is only supported for Amazon Web Services service principals. For third-party service-linked configuration recorders, use <code>Arn</code> instead.</p>
3520
3676
  * @public
3521
3677
  */
3522
3678
  ServicePrincipal?: string | undefined;
@@ -3555,7 +3711,7 @@ export interface DescribeConfigurationRecorderStatusRequest {
3555
3711
  */
3556
3712
  ConfigurationRecorderNames?: string[] | undefined;
3557
3713
  /**
3558
- * <p>For service-linked configuration recorders, you can use the service principal of the linked Amazon Web Services service to specify the configuration recorder.</p>
3714
+ * <p>For service-linked configuration recorders, you can use the service principal of the linked Amazon Web Services service to specify the configuration recorder. This field is only supported for Amazon Web Services service principals. For third-party service-linked configuration recorders, use <code>Arn</code> instead.</p>
3559
3715
  * @public
3560
3716
  */
3561
3717
  ServicePrincipal?: string | undefined;
@@ -5535,6 +5691,26 @@ export interface GetConformancePackComplianceSummaryResponse {
5535
5691
  */
5536
5692
  NextToken?: string | undefined;
5537
5693
  }
5694
+ /**
5695
+ * @public
5696
+ */
5697
+ export interface GetConnectorRequest {
5698
+ /**
5699
+ * <p>The Amazon Resource Name (ARN) of the connector.</p>
5700
+ * @public
5701
+ */
5702
+ Arn: string | undefined;
5703
+ }
5704
+ /**
5705
+ * @public
5706
+ */
5707
+ export interface GetConnectorResponse {
5708
+ /**
5709
+ * <p>The details of the specified connector.</p>
5710
+ * @public
5711
+ */
5712
+ Connector: Connector | undefined;
5713
+ }
5538
5714
  /**
5539
5715
  * @public
5540
5716
  */
@@ -6406,6 +6582,41 @@ export interface ListConformancePackComplianceScoresResponse {
6406
6582
  */
6407
6583
  ConformancePackComplianceScores: ConformancePackComplianceScore[] | undefined;
6408
6584
  }
6585
+ /**
6586
+ * @public
6587
+ */
6588
+ export interface ListConnectorsRequest {
6589
+ /**
6590
+ * <p>The maximum number of results to include in the response.</p>
6591
+ * @public
6592
+ */
6593
+ MaxResults?: number | undefined;
6594
+ /**
6595
+ * <p>The <code>NextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
6596
+ * @public
6597
+ */
6598
+ NextToken?: string | undefined;
6599
+ /**
6600
+ * <p>Filters the results based on a list of <code>ConnectorFilter</code> objects that you specify.</p>
6601
+ * @public
6602
+ */
6603
+ Filters?: ConnectorFilter[] | undefined;
6604
+ }
6605
+ /**
6606
+ * @public
6607
+ */
6608
+ export interface ListConnectorsResponse {
6609
+ /**
6610
+ * <p>A list of <code>ConnectorSummary</code> objects.</p>
6611
+ * @public
6612
+ */
6613
+ ConnectorSummaries: ConnectorSummary[] | undefined;
6614
+ /**
6615
+ * <p>The <code>NextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
6616
+ * @public
6617
+ */
6618
+ NextToken?: string | undefined;
6619
+ }
6409
6620
  /**
6410
6621
  * <p></p>
6411
6622
  * @public
@@ -6700,6 +6911,11 @@ export interface ListTagsForResourceRequest {
6700
6911
  * <code>StoredQuery</code>
6701
6912
  * </p>
6702
6913
  * </li>
6914
+ * <li>
6915
+ * <p>
6916
+ * <code>Connector</code>
6917
+ * </p>
6918
+ * </li>
6703
6919
  * </ul>
6704
6920
  * @public
6705
6921
  */
@@ -7003,6 +7219,31 @@ export interface PutConformancePackResponse {
7003
7219
  */
7004
7220
  ConformancePackArn?: string | undefined;
7005
7221
  }
7222
+ /**
7223
+ * @public
7224
+ */
7225
+ export interface PutConnectorRequest {
7226
+ /**
7227
+ * <p>The provider-specific configuration for connecting to the third-party cloud service provider.</p>
7228
+ * @public
7229
+ */
7230
+ ConnectorConfiguration: ConnectorConfiguration | undefined;
7231
+ /**
7232
+ * <p>The tags for the connector. Each tag consists of a key and an optional value, both of which you define.</p>
7233
+ * @public
7234
+ */
7235
+ Tags?: Tag[] | undefined;
7236
+ }
7237
+ /**
7238
+ * @public
7239
+ */
7240
+ export interface PutConnectorResponse {
7241
+ /**
7242
+ * <p>The Amazon Resource Name (ARN) of the connector.</p>
7243
+ * @public
7244
+ */
7245
+ Arn: string | undefined;
7246
+ }
7006
7247
  /**
7007
7248
  * <p>The input for the <a>PutDeliveryChannel</a>
7008
7249
  * action.</p>
@@ -7387,6 +7628,46 @@ export interface PutStoredQueryResponse {
7387
7628
  */
7388
7629
  QueryArn?: string | undefined;
7389
7630
  }
7631
+ /**
7632
+ * @public
7633
+ */
7634
+ export interface PutThirdPartyServiceLinkedConfigurationRecorderRequest {
7635
+ /**
7636
+ * <p>The service principal of the Amazon Web Services service for the service-linked configuration recorder that you want to create.</p>
7637
+ * @public
7638
+ */
7639
+ ServicePrincipal: string | undefined;
7640
+ /**
7641
+ * <p>The Amazon Resource Name (ARN) of the connector that specifies the connection between the third-party cloud service provider and Config. The specified connector must exist.</p>
7642
+ * @public
7643
+ */
7644
+ ConnectorArn: string | undefined;
7645
+ /**
7646
+ * <p>Specifies the scope of resources to record from the third-party cloud service provider.</p>
7647
+ * @public
7648
+ */
7649
+ ScopeConfiguration: ScopeConfiguration | undefined;
7650
+ /**
7651
+ * <p>The tags for a service-linked configuration recorder. Each tag consists of a key and an optional value, both of which you define.</p>
7652
+ * @public
7653
+ */
7654
+ Tags?: Tag[] | undefined;
7655
+ }
7656
+ /**
7657
+ * @public
7658
+ */
7659
+ export interface PutThirdPartyServiceLinkedConfigurationRecorderResponse {
7660
+ /**
7661
+ * <p>The Amazon Resource Name (ARN) of the specified configuration recorder.</p>
7662
+ * @public
7663
+ */
7664
+ Arn: string | undefined;
7665
+ /**
7666
+ * <p>The name of the specified configuration recorder.</p>
7667
+ * @public
7668
+ */
7669
+ Name: string | undefined;
7670
+ }
7390
7671
  /**
7391
7672
  * <p>Details about the query.</p>
7392
7673
  * @public
@@ -7659,6 +7940,11 @@ export interface TagResourceRequest {
7659
7940
  * <code>StoredQuery</code>
7660
7941
  * </p>
7661
7942
  * </li>
7943
+ * <li>
7944
+ * <p>
7945
+ * <code>Connector</code>
7946
+ * </p>
7947
+ * </li>
7662
7948
  * </ul>
7663
7949
  * @public
7664
7950
  */
@@ -7716,6 +8002,11 @@ export interface UntagResourceRequest {
7716
8002
  * <code>StoredQuery</code>
7717
8003
  * </p>
7718
8004
  * </li>
8005
+ * <li>
8006
+ * <p>
8007
+ * <code>Connector</code>
8008
+ * </p>
8009
+ * </li>
7719
8010
  * </ul>
7720
8011
  * @public
7721
8012
  */
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "../commands/ListConnectorsCommand";
3
+ import type { ConfigServicePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListConnectors: (config: ConfigServicePaginationConfiguration, input: ListConnectorsCommandInput, ...rest: any[]) => Paginator<ListConnectorsCommandOutput>;
@@ -34,6 +34,7 @@ export * from "./GetResourceConfigHistoryPaginator";
34
34
  export * from "./ListAggregateDiscoveredResourcesPaginator";
35
35
  export * from "./ListConfigurationRecordersPaginator";
36
36
  export * from "./ListConformancePackComplianceScoresPaginator";
37
+ export * from "./ListConnectorsPaginator";
37
38
  export * from "./ListDiscoveredResourcesPaginator";
38
39
  export * from "./ListResourceEvaluationsPaginator";
39
40
  export * from "./ListStoredQueriesPaginator";