@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
@@ -128,6 +128,9 @@ declare const PutConformancePackCommand_base: {
128
128
  * <li>
129
129
  * <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>
130
130
  * </li>
131
+ * <li>
132
+ * <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>
133
+ * </li>
131
134
  * </ul>
132
135
  *
133
136
  * @throws {@link InvalidParameterValueException} (client fault)
@@ -0,0 +1,195 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { PutConnectorRequest, PutConnectorResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link PutConnectorCommand}.
11
+ */
12
+ export interface PutConnectorCommandInput extends PutConnectorRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link PutConnectorCommand}.
18
+ */
19
+ export interface PutConnectorCommandOutput extends PutConnectorResponse, __MetadataBearer {
20
+ }
21
+ declare const PutConnectorCommand_base: {
22
+ new (input: PutConnectorCommandInput): import("@smithy/core/client").CommandImpl<PutConnectorCommandInput, PutConnectorCommandOutput, import("..").ConfigServiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: PutConnectorCommandInput): import("@smithy/core/client").CommandImpl<PutConnectorCommandInput, PutConnectorCommandOutput, import("..").ConfigServiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Creates a connector that specifies the connection between a third-party cloud service provider and Config.</p>
28
+ * <p>A connector is required to create a service-linked configuration recorder for a third-party cloud service provider using the <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutThirdPartyServiceLinkedConfigurationRecorder.html">PutThirdPartyServiceLinkedConfigurationRecorder</a> operation.</p>
29
+ * <p>This API creates a service-linked role <code>AWSServiceRoleForConfigThirdParty</code> in your account. The service-linked role is created only when the role does not exist in your account.</p>
30
+ * <note>
31
+ * <p>
32
+ * <b>Connectors cannot be updated</b>
33
+ * </p>
34
+ * <p>To update the connector configuration, you must delete all associated configuration recorders, delete the connector, and recreate it with the updated configuration.</p>
35
+ * </note>
36
+ * <note>
37
+ * <p>
38
+ * <b>Tags are added at creation and cannot be updated with this operation</b>
39
+ * </p>
40
+ * <p>Use <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_TagResource.html">TagResource</a> and <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_UntagResource.html">UntagResource</a> to update tags after creation.</p>
41
+ * </note>
42
+ * @example
43
+ * Use a bare-bones client and the command you need to make an API call.
44
+ * ```javascript
45
+ * import { ConfigServiceClient, PutConnectorCommand } from "@aws-sdk/client-config-service"; // ES Modules import
46
+ * // const { ConfigServiceClient, PutConnectorCommand } = require("@aws-sdk/client-config-service"); // CommonJS import
47
+ * // import type { ConfigServiceClientConfig } from "@aws-sdk/client-config-service";
48
+ * const config = {}; // type is ConfigServiceClientConfig
49
+ * const client = new ConfigServiceClient(config);
50
+ * const input = { // PutConnectorRequest
51
+ * ConnectorConfiguration: { // ConnectorConfiguration
52
+ * azure: { // AzureConnectorConfiguration
53
+ * tenantIdentifier: "STRING_VALUE", // required
54
+ * clientIdentifier: "STRING_VALUE", // required
55
+ * },
56
+ * },
57
+ * Tags: [ // TagsList
58
+ * { // Tag
59
+ * Key: "STRING_VALUE",
60
+ * Value: "STRING_VALUE",
61
+ * },
62
+ * ],
63
+ * };
64
+ * const command = new PutConnectorCommand(input);
65
+ * const response = await client.send(command);
66
+ * // { // PutConnectorResponse
67
+ * // Arn: "STRING_VALUE", // required
68
+ * // };
69
+ *
70
+ * ```
71
+ *
72
+ * @param PutConnectorCommandInput - {@link PutConnectorCommandInput}
73
+ * @returns {@link PutConnectorCommandOutput}
74
+ * @see {@link PutConnectorCommandInput} for command's `input` shape.
75
+ * @see {@link PutConnectorCommandOutput} for command's `response` shape.
76
+ * @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape.
77
+ *
78
+ * @throws {@link ConflictException} (client fault)
79
+ * <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>
80
+ * <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>
81
+ * <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>
82
+ * <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>
83
+ * <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>
84
+ * <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>
85
+ * <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>
86
+ * <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
87
+ * recorder.</p>
88
+ * <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>
89
+ * <ul>
90
+ * <li>
91
+ * <p>For service-linked configuration recorders, the configuration recorder is not in use by the service. No association or dissociation of resource types is permitted.</p>
92
+ * </li>
93
+ * <li>
94
+ * <p>For service-linked configuration recorders, your requested change to the configuration recorder has been denied by its linked Amazon Web Services service.</p>
95
+ * </li>
96
+ * </ul>
97
+ *
98
+ * @throws {@link InsufficientPermissionsException} (client fault)
99
+ * <p>Indicates one of the following errors:</p>
100
+ * <ul>
101
+ * <li>
102
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutConfigRule.html">PutConfigRule</a>, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.</p>
103
+ * </li>
104
+ * <li>
105
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutConfigRule.html">PutConfigRule</a>, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.</p>
106
+ * </li>
107
+ * <li>
108
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutOrganizationConfigRule.html">PutOrganizationConfigRule</a>, organization Config rule cannot be created because you do not have permissions to call IAM <code>GetRole</code> action or create a service-linked role.</p>
109
+ * </li>
110
+ * <li>
111
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutConformancePack.html">PutConformancePack</a> and <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutOrganizationConformancePack.html">PutOrganizationConformancePack</a>, a conformance pack cannot be created because you do not have the following permissions: </p>
112
+ * <ul>
113
+ * <li>
114
+ * <p>You do not have permission to call IAM <code>GetRole</code> action or create a service-linked role.</p>
115
+ * </li>
116
+ * <li>
117
+ * <p>You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.</p>
118
+ * </li>
119
+ * </ul>
120
+ * </li>
121
+ * <li>
122
+ * <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>
123
+ * </li>
124
+ * <li>
125
+ * <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>
126
+ * </li>
127
+ * </ul>
128
+ *
129
+ * @throws {@link MaxNumberOfConnectorsExceededException} (client fault)
130
+ * <p>You have reached the limit of the number of connectors in your account.</p>
131
+ *
132
+ * @throws {@link ValidationException} (client fault)
133
+ * <p>The requested operation is not valid. You will see this exception if there are missing required fields or if the input value fails the validation.</p>
134
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutStoredQuery.html">PutStoredQuery</a>, one of the following errors:</p>
135
+ * <ul>
136
+ * <li>
137
+ * <p>There are missing required fields.</p>
138
+ * </li>
139
+ * <li>
140
+ * <p>The input value fails the validation.</p>
141
+ * </li>
142
+ * <li>
143
+ * <p>You are trying to create more than 300 queries.</p>
144
+ * </li>
145
+ * </ul>
146
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DescribeConfigurationRecorders.html">DescribeConfigurationRecorders</a> and <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DescribeConfigurationRecorderStatus.html">DescribeConfigurationRecorderStatus</a>, one of the following errors:</p>
147
+ * <ul>
148
+ * <li>
149
+ * <p>You have specified more than one configuration recorder.</p>
150
+ * </li>
151
+ * <li>
152
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
153
+ * </li>
154
+ * </ul>
155
+ * <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>
156
+ * <ul>
157
+ * <li>
158
+ * <p>Your configuraiton recorder has a recording strategy that does not allow the association or disassociation of resource types.</p>
159
+ * </li>
160
+ * <li>
161
+ * <p>One or more of the specified resource types are already associated or disassociated with the configuration recorder.</p>
162
+ * </li>
163
+ * <li>
164
+ * <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
165
+ * </li>
166
+ * </ul>
167
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
168
+ * <ul>
169
+ * <li>
170
+ * <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>
171
+ * </li>
172
+ * <li>
173
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
174
+ * </li>
175
+ * </ul>
176
+ *
177
+ * @throws {@link ConfigServiceServiceException}
178
+ * <p>Base exception class for all service exceptions from ConfigService service.</p>
179
+ *
180
+ *
181
+ * @public
182
+ */
183
+ export declare class PutConnectorCommand extends PutConnectorCommand_base {
184
+ /** @internal type navigation helper, not in runtime. */
185
+ protected static __types: {
186
+ api: {
187
+ input: PutConnectorRequest;
188
+ output: PutConnectorResponse;
189
+ };
190
+ sdk: {
191
+ input: PutConnectorCommandInput;
192
+ output: PutConnectorCommandOutput;
193
+ };
194
+ };
195
+ }
@@ -165,6 +165,9 @@ declare const PutOrganizationConfigRuleCommand_base: {
165
165
  * <li>
166
166
  * <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>
167
167
  * </li>
168
+ * <li>
169
+ * <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>
170
+ * </li>
168
171
  * </ul>
169
172
  *
170
173
  * @throws {@link InvalidParameterValueException} (client fault)
@@ -264,6 +267,15 @@ declare const PutOrganizationConfigRuleCommand_base: {
264
267
  * <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
265
268
  * </li>
266
269
  * </ul>
270
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
271
+ * <ul>
272
+ * <li>
273
+ * <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>
274
+ * </li>
275
+ * <li>
276
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
277
+ * </li>
278
+ * </ul>
267
279
  *
268
280
  * @throws {@link ConfigServiceServiceException}
269
281
  * <p>Base exception class for all service exceptions from ConfigService service.</p>
@@ -126,6 +126,9 @@ declare const PutOrganizationConformancePackCommand_base: {
126
126
  * <li>
127
127
  * <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>
128
128
  * </li>
129
+ * <li>
130
+ * <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>
131
+ * </li>
129
132
  * </ul>
130
133
  *
131
134
  * @throws {@link MaxNumberOfOrganizationConformancePacksExceededException} (client fault)
@@ -224,6 +227,15 @@ declare const PutOrganizationConformancePackCommand_base: {
224
227
  * <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
225
228
  * </li>
226
229
  * </ul>
230
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
231
+ * <ul>
232
+ * <li>
233
+ * <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>
234
+ * </li>
235
+ * <li>
236
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
237
+ * </li>
238
+ * </ul>
227
239
  *
228
240
  * @throws {@link ConfigServiceServiceException}
229
241
  * <p>Base exception class for all service exceptions from ConfigService service.</p>
@@ -173,6 +173,9 @@ declare const PutRemediationConfigurationsCommand_base: {
173
173
  * <li>
174
174
  * <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>
175
175
  * </li>
176
+ * <li>
177
+ * <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>
178
+ * </li>
176
179
  * </ul>
177
180
  *
178
181
  * @throws {@link InvalidParameterValueException} (client fault)
@@ -139,6 +139,9 @@ declare const PutRemediationExceptionsCommand_base: {
139
139
  * <li>
140
140
  * <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>
141
141
  * </li>
142
+ * <li>
143
+ * <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>
144
+ * </li>
142
145
  * </ul>
143
146
  *
144
147
  * @throws {@link InvalidParameterValueException} (client fault)
@@ -90,6 +90,9 @@ declare const PutResourceConfigCommand_base: {
90
90
  * <li>
91
91
  * <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>
92
92
  * </li>
93
+ * <li>
94
+ * <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>
95
+ * </li>
93
96
  * </ul>
94
97
  *
95
98
  * @throws {@link MaxActiveResourcesExceededException} (client fault)
@@ -135,6 +138,15 @@ declare const PutResourceConfigCommand_base: {
135
138
  * <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
136
139
  * </li>
137
140
  * </ul>
141
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
142
+ * <ul>
143
+ * <li>
144
+ * <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>
145
+ * </li>
146
+ * <li>
147
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
148
+ * </li>
149
+ * </ul>
138
150
  *
139
151
  * @throws {@link ConfigServiceServiceException}
140
152
  * <p>Base exception class for all service exceptions from ConfigService service.</p>
@@ -74,7 +74,12 @@ declare const PutServiceLinkedConfigurationRecorderCommand_base: {
74
74
  *
75
75
  * @throws {@link ConflictException} (client fault)
76
76
  * <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>
77
+ * <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>
78
+ * <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>
79
+ * <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>
77
80
  * <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>
81
+ * <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>
82
+ * <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>
78
83
  * <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
79
84
  * recorder.</p>
80
85
  * <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>
@@ -113,6 +118,9 @@ declare const PutServiceLinkedConfigurationRecorderCommand_base: {
113
118
  * <li>
114
119
  * <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>
115
120
  * </li>
121
+ * <li>
122
+ * <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>
123
+ * </li>
116
124
  * </ul>
117
125
  *
118
126
  * @throws {@link LimitExceededException} (client fault)
@@ -160,6 +168,15 @@ declare const PutServiceLinkedConfigurationRecorderCommand_base: {
160
168
  * <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
161
169
  * </li>
162
170
  * </ul>
171
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
172
+ * <ul>
173
+ * <li>
174
+ * <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>
175
+ * </li>
176
+ * <li>
177
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
178
+ * </li>
179
+ * </ul>
163
180
  *
164
181
  * @throws {@link ConfigServiceServiceException}
165
182
  * <p>Base exception class for all service exceptions from ConfigService service.</p>
@@ -115,6 +115,15 @@ declare const PutStoredQueryCommand_base: {
115
115
  * <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
116
116
  * </li>
117
117
  * </ul>
118
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
119
+ * <ul>
120
+ * <li>
121
+ * <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>
122
+ * </li>
123
+ * <li>
124
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
125
+ * </li>
126
+ * </ul>
118
127
  *
119
128
  * @throws {@link ConfigServiceServiceException}
120
129
  * <p>Base exception class for all service exceptions from ConfigService service.</p>
@@ -0,0 +1,199 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { PutThirdPartyServiceLinkedConfigurationRecorderRequest, PutThirdPartyServiceLinkedConfigurationRecorderResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link PutThirdPartyServiceLinkedConfigurationRecorderCommand}.
11
+ */
12
+ export interface PutThirdPartyServiceLinkedConfigurationRecorderCommandInput extends PutThirdPartyServiceLinkedConfigurationRecorderRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link PutThirdPartyServiceLinkedConfigurationRecorderCommand}.
18
+ */
19
+ export interface PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput extends PutThirdPartyServiceLinkedConfigurationRecorderResponse, __MetadataBearer {
20
+ }
21
+ declare const PutThirdPartyServiceLinkedConfigurationRecorderCommand_base: {
22
+ new (input: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput): import("@smithy/core/client").CommandImpl<PutThirdPartyServiceLinkedConfigurationRecorderCommandInput, PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput, import("..").ConfigServiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput): import("@smithy/core/client").CommandImpl<PutThirdPartyServiceLinkedConfigurationRecorderCommandInput, PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput, import("..").ConfigServiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Creates or updates a service-linked configuration recorder that is linked to a third-party cloud service provider based on the <code>ConnectorArn</code> you specify.</p>
28
+ * <p>The configuration recorder's <code>name</code>, <code>recordingGroup</code>, <code>recordingMode</code>, and <code>recordingScope</code> is set by the service that is linked to the configuration recorder.</p>
29
+ * <p>If a service-linked configuration recorder already exists for the specified service principal and connector, calling this operation again updates the <code>ScopeConfiguration</code>.</p>
30
+ * <note>
31
+ * <p>
32
+ * <b>This operation can only be called by the Amazon Web Services service linked to the configuration recorder</b>
33
+ * </p>
34
+ * <p>Customers cannot call this operation directly. Only the linked Amazon Web Services service can create or update the service-linked configuration recorder.</p>
35
+ * </note>
36
+ * <note>
37
+ * <p>
38
+ * <b>Tags are added at creation and cannot be updated with this operation</b>
39
+ * </p>
40
+ * <p>Use <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_TagResource.html">TagResource</a> and <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_UntagResource.html">UntagResource</a> to update tags after creation.</p>
41
+ * </note>
42
+ * @example
43
+ * Use a bare-bones client and the command you need to make an API call.
44
+ * ```javascript
45
+ * import { ConfigServiceClient, PutThirdPartyServiceLinkedConfigurationRecorderCommand } from "@aws-sdk/client-config-service"; // ES Modules import
46
+ * // const { ConfigServiceClient, PutThirdPartyServiceLinkedConfigurationRecorderCommand } = require("@aws-sdk/client-config-service"); // CommonJS import
47
+ * // import type { ConfigServiceClientConfig } from "@aws-sdk/client-config-service";
48
+ * const config = {}; // type is ConfigServiceClientConfig
49
+ * const client = new ConfigServiceClient(config);
50
+ * const input = { // PutThirdPartyServiceLinkedConfigurationRecorderRequest
51
+ * ServicePrincipal: "STRING_VALUE", // required
52
+ * ConnectorArn: "STRING_VALUE", // required
53
+ * ScopeConfiguration: { // ScopeConfiguration
54
+ * scopeType: "STRING_VALUE", // required
55
+ * scopeValues: [ // ScopeValues
56
+ * "STRING_VALUE",
57
+ * ],
58
+ * allRegions: true || false, // required
59
+ * includedRegions: [ // IncludedRegions
60
+ * "STRING_VALUE",
61
+ * ],
62
+ * },
63
+ * Tags: [ // TagsList
64
+ * { // Tag
65
+ * Key: "STRING_VALUE",
66
+ * Value: "STRING_VALUE",
67
+ * },
68
+ * ],
69
+ * };
70
+ * const command = new PutThirdPartyServiceLinkedConfigurationRecorderCommand(input);
71
+ * const response = await client.send(command);
72
+ * // { // PutThirdPartyServiceLinkedConfigurationRecorderResponse
73
+ * // Arn: "STRING_VALUE", // required
74
+ * // Name: "STRING_VALUE", // required
75
+ * // };
76
+ *
77
+ * ```
78
+ *
79
+ * @param PutThirdPartyServiceLinkedConfigurationRecorderCommandInput - {@link PutThirdPartyServiceLinkedConfigurationRecorderCommandInput}
80
+ * @returns {@link PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput}
81
+ * @see {@link PutThirdPartyServiceLinkedConfigurationRecorderCommandInput} for command's `input` shape.
82
+ * @see {@link PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput} for command's `response` shape.
83
+ * @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape.
84
+ *
85
+ * @throws {@link ConflictException} (client fault)
86
+ * <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>
87
+ * <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>
88
+ * <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>
89
+ * <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>
90
+ * <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>
91
+ * <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>
92
+ * <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>
93
+ * <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
94
+ * recorder.</p>
95
+ * <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>
96
+ * <ul>
97
+ * <li>
98
+ * <p>For service-linked configuration recorders, the configuration recorder is not in use by the service. No association or dissociation of resource types is permitted.</p>
99
+ * </li>
100
+ * <li>
101
+ * <p>For service-linked configuration recorders, your requested change to the configuration recorder has been denied by its linked Amazon Web Services service.</p>
102
+ * </li>
103
+ * </ul>
104
+ *
105
+ * @throws {@link InsufficientPermissionsException} (client fault)
106
+ * <p>Indicates one of the following errors:</p>
107
+ * <ul>
108
+ * <li>
109
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutConfigRule.html">PutConfigRule</a>, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.</p>
110
+ * </li>
111
+ * <li>
112
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutConfigRule.html">PutConfigRule</a>, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.</p>
113
+ * </li>
114
+ * <li>
115
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutOrganizationConfigRule.html">PutOrganizationConfigRule</a>, organization Config rule cannot be created because you do not have permissions to call IAM <code>GetRole</code> action or create a service-linked role.</p>
116
+ * </li>
117
+ * <li>
118
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutConformancePack.html">PutConformancePack</a> and <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutOrganizationConformancePack.html">PutOrganizationConformancePack</a>, a conformance pack cannot be created because you do not have the following permissions: </p>
119
+ * <ul>
120
+ * <li>
121
+ * <p>You do not have permission to call IAM <code>GetRole</code> action or create a service-linked role.</p>
122
+ * </li>
123
+ * <li>
124
+ * <p>You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.</p>
125
+ * </li>
126
+ * </ul>
127
+ * </li>
128
+ * <li>
129
+ * <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>
130
+ * </li>
131
+ * <li>
132
+ * <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>
133
+ * </li>
134
+ * </ul>
135
+ *
136
+ * @throws {@link ValidationException} (client fault)
137
+ * <p>The requested operation is not valid. You will see this exception if there are missing required fields or if the input value fails the validation.</p>
138
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutStoredQuery.html">PutStoredQuery</a>, one of the following errors:</p>
139
+ * <ul>
140
+ * <li>
141
+ * <p>There are missing required fields.</p>
142
+ * </li>
143
+ * <li>
144
+ * <p>The input value fails the validation.</p>
145
+ * </li>
146
+ * <li>
147
+ * <p>You are trying to create more than 300 queries.</p>
148
+ * </li>
149
+ * </ul>
150
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DescribeConfigurationRecorders.html">DescribeConfigurationRecorders</a> and <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DescribeConfigurationRecorderStatus.html">DescribeConfigurationRecorderStatus</a>, one of the following errors:</p>
151
+ * <ul>
152
+ * <li>
153
+ * <p>You have specified more than one configuration recorder.</p>
154
+ * </li>
155
+ * <li>
156
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
157
+ * </li>
158
+ * </ul>
159
+ * <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>
160
+ * <ul>
161
+ * <li>
162
+ * <p>Your configuraiton recorder has a recording strategy that does not allow the association or disassociation of resource types.</p>
163
+ * </li>
164
+ * <li>
165
+ * <p>One or more of the specified resource types are already associated or disassociated with the configuration recorder.</p>
166
+ * </li>
167
+ * <li>
168
+ * <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
169
+ * </li>
170
+ * </ul>
171
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
172
+ * <ul>
173
+ * <li>
174
+ * <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>
175
+ * </li>
176
+ * <li>
177
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
178
+ * </li>
179
+ * </ul>
180
+ *
181
+ * @throws {@link ConfigServiceServiceException}
182
+ * <p>Base exception class for all service exceptions from ConfigService service.</p>
183
+ *
184
+ *
185
+ * @public
186
+ */
187
+ export declare class PutThirdPartyServiceLinkedConfigurationRecorderCommand extends PutThirdPartyServiceLinkedConfigurationRecorderCommand_base {
188
+ /** @internal type navigation helper, not in runtime. */
189
+ protected static __types: {
190
+ api: {
191
+ input: PutThirdPartyServiceLinkedConfigurationRecorderRequest;
192
+ output: PutThirdPartyServiceLinkedConfigurationRecorderResponse;
193
+ };
194
+ sdk: {
195
+ input: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput;
196
+ output: PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput;
197
+ };
198
+ };
199
+ }
@@ -89,6 +89,9 @@ declare const StartRemediationExecutionCommand_base: {
89
89
  * <li>
90
90
  * <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>
91
91
  * </li>
92
+ * <li>
93
+ * <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>
94
+ * </li>
92
95
  * </ul>
93
96
  *
94
97
  * @throws {@link InvalidParameterValueException} (client fault)
@@ -99,6 +99,15 @@ declare const TagResourceCommand_base: {
99
99
  * <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
100
100
  * </li>
101
101
  * </ul>
102
+ * <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
103
+ * <ul>
104
+ * <li>
105
+ * <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>
106
+ * </li>
107
+ * <li>
108
+ * <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
109
+ * </li>
110
+ * </ul>
102
111
  *
103
112
  * @throws {@link ConfigServiceServiceException}
104
113
  * <p>Base exception class for all service exceptions from ConfigService service.</p>