@aws-sdk/client-config-service 3.1079.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.
- package/README.md +42 -7
- package/dist-cjs/index.js +245 -35
- package/dist-es/ConfigService.js +12 -0
- package/dist-es/commands/DeleteConnectorCommand.js +4 -0
- package/dist-es/commands/GetConnectorCommand.js +4 -0
- package/dist-es/commands/ListConnectorsCommand.js +4 -0
- package/dist-es/commands/PutConnectorCommand.js +4 -0
- package/dist-es/commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand.js +4 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +6 -0
- package/dist-es/models/errors.js +24 -12
- package/dist-es/pagination/ListConnectorsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +165 -23
- package/dist-types/ConfigService.d.ts +44 -0
- package/dist-types/ConfigServiceClient.d.ts +7 -2
- package/dist-types/commands/AssociateResourceTypesCommand.d.ts +25 -0
- package/dist-types/commands/BatchGetAggregateResourceConfigCommand.d.ts +9 -0
- package/dist-types/commands/BatchGetResourceConfigCommand.d.ts +9 -0
- package/dist-types/commands/DeleteConnectorCommand.d.ts +117 -0
- package/dist-types/commands/DeleteRemediationConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteResourceConfigCommand.d.ts +9 -0
- package/dist-types/commands/DeleteServiceLinkedConfigurationRecorderCommand.d.ts +17 -2
- package/dist-types/commands/DeleteStoredQueryCommand.d.ts +9 -0
- package/dist-types/commands/DescribeAggregateComplianceByConfigRulesCommand.d.ts +9 -0
- package/dist-types/commands/DescribeAggregateComplianceByConformancePacksCommand.d.ts +9 -0
- package/dist-types/commands/DescribeConfigRulesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeConfigurationRecorderStatusCommand.d.ts +9 -0
- package/dist-types/commands/DescribeConfigurationRecordersCommand.d.ts +20 -0
- package/dist-types/commands/DisassociateResourceTypesCommand.d.ts +25 -0
- package/dist-types/commands/GetAggregateComplianceDetailsByConfigRuleCommand.d.ts +9 -0
- package/dist-types/commands/GetAggregateConfigRuleComplianceSummaryCommand.d.ts +9 -0
- package/dist-types/commands/GetAggregateConformancePackComplianceSummaryCommand.d.ts +9 -0
- package/dist-types/commands/GetAggregateDiscoveredResourceCountsCommand.d.ts +9 -0
- package/dist-types/commands/GetAggregateResourceConfigCommand.d.ts +9 -0
- package/dist-types/commands/GetConnectorCommand.d.ts +129 -0
- package/dist-types/commands/GetDiscoveredResourceCountsCommand.d.ts +9 -0
- package/dist-types/commands/GetResourceConfigHistoryCommand.d.ts +9 -0
- package/dist-types/commands/GetStoredQueryCommand.d.ts +9 -0
- package/dist-types/commands/ListAggregateDiscoveredResourcesCommand.d.ts +9 -0
- package/dist-types/commands/ListConfigurationRecordersCommand.d.ts +10 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +134 -0
- package/dist-types/commands/ListDiscoveredResourcesCommand.d.ts +9 -0
- package/dist-types/commands/ListStoredQueriesCommand.d.ts +9 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/commands/PutConfigRuleCommand.d.ts +3 -0
- package/dist-types/commands/PutConfigurationRecorderCommand.d.ts +20 -0
- package/dist-types/commands/PutConformancePackCommand.d.ts +3 -0
- package/dist-types/commands/PutConnectorCommand.d.ts +195 -0
- package/dist-types/commands/PutOrganizationConfigRuleCommand.d.ts +12 -0
- package/dist-types/commands/PutOrganizationConformancePackCommand.d.ts +12 -0
- package/dist-types/commands/PutRemediationConfigurationsCommand.d.ts +3 -0
- package/dist-types/commands/PutRemediationExceptionsCommand.d.ts +3 -0
- package/dist-types/commands/PutResourceConfigCommand.d.ts +12 -0
- package/dist-types/commands/PutServiceLinkedConfigurationRecorderCommand.d.ts +17 -0
- package/dist-types/commands/PutStoredQueryCommand.d.ts +9 -0
- package/dist-types/commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand.d.ts +199 -0
- package/dist-types/commands/StartRemediationExecutionCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +22 -0
- package/dist-types/models/errors.d.ts +41 -12
- package/dist-types/models/models_0.d.ts +304 -13
- package/dist-types/pagination/ListConnectorsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +21 -0
- package/dist-types/ts3.4/ConfigService.d.ts +100 -0
- package/dist-types/ts3.4/ConfigServiceClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteServiceLinkedConfigurationRecorderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetConnectorCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/PutConnectorCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +9 -0
- package/dist-types/ts3.4/models/errors.d.ts +17 -7
- package/dist-types/ts3.4/models/models_0.d.ts +73 -2
- package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +21 -0
- package/package.json +3 -3
|
@@ -7,6 +7,7 @@ import { type DeleteConfigRuleCommandInput, type DeleteConfigRuleCommandOutput }
|
|
|
7
7
|
import { type DeleteConfigurationAggregatorCommandInput, type DeleteConfigurationAggregatorCommandOutput } from "./commands/DeleteConfigurationAggregatorCommand";
|
|
8
8
|
import { type DeleteConfigurationRecorderCommandInput, type DeleteConfigurationRecorderCommandOutput } from "./commands/DeleteConfigurationRecorderCommand";
|
|
9
9
|
import { type DeleteConformancePackCommandInput, type DeleteConformancePackCommandOutput } from "./commands/DeleteConformancePackCommand";
|
|
10
|
+
import { type DeleteConnectorCommandInput, type DeleteConnectorCommandOutput } from "./commands/DeleteConnectorCommand";
|
|
10
11
|
import { type DeleteDeliveryChannelCommandInput, type DeleteDeliveryChannelCommandOutput } from "./commands/DeleteDeliveryChannelCommand";
|
|
11
12
|
import { type DeleteEvaluationResultsCommandInput, type DeleteEvaluationResultsCommandOutput } from "./commands/DeleteEvaluationResultsCommand";
|
|
12
13
|
import { type DeleteOrganizationConfigRuleCommandInput, type DeleteOrganizationConfigRuleCommandOutput } from "./commands/DeleteOrganizationConfigRuleCommand";
|
|
@@ -56,6 +57,7 @@ import { type GetComplianceSummaryByConfigRuleCommandInput, type GetComplianceSu
|
|
|
56
57
|
import { type GetComplianceSummaryByResourceTypeCommandInput, type GetComplianceSummaryByResourceTypeCommandOutput } from "./commands/GetComplianceSummaryByResourceTypeCommand";
|
|
57
58
|
import { type GetConformancePackComplianceDetailsCommandInput, type GetConformancePackComplianceDetailsCommandOutput } from "./commands/GetConformancePackComplianceDetailsCommand";
|
|
58
59
|
import { type GetConformancePackComplianceSummaryCommandInput, type GetConformancePackComplianceSummaryCommandOutput } from "./commands/GetConformancePackComplianceSummaryCommand";
|
|
60
|
+
import { type GetConnectorCommandInput, type GetConnectorCommandOutput } from "./commands/GetConnectorCommand";
|
|
59
61
|
import { type GetCustomRulePolicyCommandInput, type GetCustomRulePolicyCommandOutput } from "./commands/GetCustomRulePolicyCommand";
|
|
60
62
|
import { type GetDiscoveredResourceCountsCommandInput, type GetDiscoveredResourceCountsCommandOutput } from "./commands/GetDiscoveredResourceCountsCommand";
|
|
61
63
|
import { type GetOrganizationConfigRuleDetailedStatusCommandInput, type GetOrganizationConfigRuleDetailedStatusCommandOutput } from "./commands/GetOrganizationConfigRuleDetailedStatusCommand";
|
|
@@ -67,6 +69,7 @@ import { type GetStoredQueryCommandInput, type GetStoredQueryCommandOutput } fro
|
|
|
67
69
|
import { type ListAggregateDiscoveredResourcesCommandInput, type ListAggregateDiscoveredResourcesCommandOutput } from "./commands/ListAggregateDiscoveredResourcesCommand";
|
|
68
70
|
import { type ListConfigurationRecordersCommandInput, type ListConfigurationRecordersCommandOutput } from "./commands/ListConfigurationRecordersCommand";
|
|
69
71
|
import { type ListConformancePackComplianceScoresCommandInput, type ListConformancePackComplianceScoresCommandOutput } from "./commands/ListConformancePackComplianceScoresCommand";
|
|
72
|
+
import { type ListConnectorsCommandInput, type ListConnectorsCommandOutput } from "./commands/ListConnectorsCommand";
|
|
70
73
|
import { type ListDiscoveredResourcesCommandInput, type ListDiscoveredResourcesCommandOutput } from "./commands/ListDiscoveredResourcesCommand";
|
|
71
74
|
import { type ListResourceEvaluationsCommandInput, type ListResourceEvaluationsCommandOutput } from "./commands/ListResourceEvaluationsCommand";
|
|
72
75
|
import { type ListStoredQueriesCommandInput, type ListStoredQueriesCommandOutput } from "./commands/ListStoredQueriesCommand";
|
|
@@ -76,6 +79,7 @@ import { type PutConfigRuleCommandInput, type PutConfigRuleCommandOutput } from
|
|
|
76
79
|
import { type PutConfigurationAggregatorCommandInput, type PutConfigurationAggregatorCommandOutput } from "./commands/PutConfigurationAggregatorCommand";
|
|
77
80
|
import { type PutConfigurationRecorderCommandInput, type PutConfigurationRecorderCommandOutput } from "./commands/PutConfigurationRecorderCommand";
|
|
78
81
|
import { type PutConformancePackCommandInput, type PutConformancePackCommandOutput } from "./commands/PutConformancePackCommand";
|
|
82
|
+
import { type PutConnectorCommandInput, type PutConnectorCommandOutput } from "./commands/PutConnectorCommand";
|
|
79
83
|
import { type PutDeliveryChannelCommandInput, type PutDeliveryChannelCommandOutput } from "./commands/PutDeliveryChannelCommand";
|
|
80
84
|
import { type PutEvaluationsCommandInput, type PutEvaluationsCommandOutput } from "./commands/PutEvaluationsCommand";
|
|
81
85
|
import { type PutExternalEvaluationCommandInput, type PutExternalEvaluationCommandOutput } from "./commands/PutExternalEvaluationCommand";
|
|
@@ -87,6 +91,7 @@ import { type PutResourceConfigCommandInput, type PutResourceConfigCommandOutput
|
|
|
87
91
|
import { type PutRetentionConfigurationCommandInput, type PutRetentionConfigurationCommandOutput } from "./commands/PutRetentionConfigurationCommand";
|
|
88
92
|
import { type PutServiceLinkedConfigurationRecorderCommandInput, type PutServiceLinkedConfigurationRecorderCommandOutput } from "./commands/PutServiceLinkedConfigurationRecorderCommand";
|
|
89
93
|
import { type PutStoredQueryCommandInput, type PutStoredQueryCommandOutput } from "./commands/PutStoredQueryCommand";
|
|
94
|
+
import { type PutThirdPartyServiceLinkedConfigurationRecorderCommandInput, type PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput } from "./commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand";
|
|
90
95
|
import { type SelectAggregateResourceConfigCommandInput, type SelectAggregateResourceConfigCommandOutput } from "./commands/SelectAggregateResourceConfigCommand";
|
|
91
96
|
import { type SelectResourceConfigCommandInput, type SelectResourceConfigCommandOutput } from "./commands/SelectResourceConfigCommand";
|
|
92
97
|
import { type StartConfigRulesEvaluationCommandInput, type StartConfigRulesEvaluationCommandOutput } from "./commands/StartConfigRulesEvaluationCommand";
|
|
@@ -146,6 +151,12 @@ export interface ConfigService {
|
|
|
146
151
|
deleteConformancePack(args: DeleteConformancePackCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConformancePackCommandOutput>;
|
|
147
152
|
deleteConformancePack(args: DeleteConformancePackCommandInput, cb: (err: any, data?: DeleteConformancePackCommandOutput) => void): void;
|
|
148
153
|
deleteConformancePack(args: DeleteConformancePackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConformancePackCommandOutput) => void): void;
|
|
154
|
+
/**
|
|
155
|
+
* @see {@link DeleteConnectorCommand}
|
|
156
|
+
*/
|
|
157
|
+
deleteConnector(args: DeleteConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectorCommandOutput>;
|
|
158
|
+
deleteConnector(args: DeleteConnectorCommandInput, cb: (err: any, data?: DeleteConnectorCommandOutput) => void): void;
|
|
159
|
+
deleteConnector(args: DeleteConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectorCommandOutput) => void): void;
|
|
149
160
|
/**
|
|
150
161
|
* @see {@link DeleteDeliveryChannelCommand}
|
|
151
162
|
*/
|
|
@@ -203,6 +214,7 @@ export interface ConfigService {
|
|
|
203
214
|
/**
|
|
204
215
|
* @see {@link DeleteServiceLinkedConfigurationRecorderCommand}
|
|
205
216
|
*/
|
|
217
|
+
deleteServiceLinkedConfigurationRecorder(): Promise<DeleteServiceLinkedConfigurationRecorderCommandOutput>;
|
|
206
218
|
deleteServiceLinkedConfigurationRecorder(args: DeleteServiceLinkedConfigurationRecorderCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceLinkedConfigurationRecorderCommandOutput>;
|
|
207
219
|
deleteServiceLinkedConfigurationRecorder(args: DeleteServiceLinkedConfigurationRecorderCommandInput, cb: (err: any, data?: DeleteServiceLinkedConfigurationRecorderCommandOutput) => void): void;
|
|
208
220
|
deleteServiceLinkedConfigurationRecorder(args: DeleteServiceLinkedConfigurationRecorderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceLinkedConfigurationRecorderCommandOutput) => void): void;
|
|
@@ -461,6 +473,12 @@ export interface ConfigService {
|
|
|
461
473
|
getConformancePackComplianceSummary(args: GetConformancePackComplianceSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetConformancePackComplianceSummaryCommandOutput>;
|
|
462
474
|
getConformancePackComplianceSummary(args: GetConformancePackComplianceSummaryCommandInput, cb: (err: any, data?: GetConformancePackComplianceSummaryCommandOutput) => void): void;
|
|
463
475
|
getConformancePackComplianceSummary(args: GetConformancePackComplianceSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConformancePackComplianceSummaryCommandOutput) => void): void;
|
|
476
|
+
/**
|
|
477
|
+
* @see {@link GetConnectorCommand}
|
|
478
|
+
*/
|
|
479
|
+
getConnector(args: GetConnectorCommandInput, options?: __HttpHandlerOptions): Promise<GetConnectorCommandOutput>;
|
|
480
|
+
getConnector(args: GetConnectorCommandInput, cb: (err: any, data?: GetConnectorCommandOutput) => void): void;
|
|
481
|
+
getConnector(args: GetConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectorCommandOutput) => void): void;
|
|
464
482
|
/**
|
|
465
483
|
* @see {@link GetCustomRulePolicyCommand}
|
|
466
484
|
*/
|
|
@@ -531,6 +549,13 @@ export interface ConfigService {
|
|
|
531
549
|
listConformancePackComplianceScores(args: ListConformancePackComplianceScoresCommandInput, options?: __HttpHandlerOptions): Promise<ListConformancePackComplianceScoresCommandOutput>;
|
|
532
550
|
listConformancePackComplianceScores(args: ListConformancePackComplianceScoresCommandInput, cb: (err: any, data?: ListConformancePackComplianceScoresCommandOutput) => void): void;
|
|
533
551
|
listConformancePackComplianceScores(args: ListConformancePackComplianceScoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConformancePackComplianceScoresCommandOutput) => void): void;
|
|
552
|
+
/**
|
|
553
|
+
* @see {@link ListConnectorsCommand}
|
|
554
|
+
*/
|
|
555
|
+
listConnectors(): Promise<ListConnectorsCommandOutput>;
|
|
556
|
+
listConnectors(args: ListConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorsCommandOutput>;
|
|
557
|
+
listConnectors(args: ListConnectorsCommandInput, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
558
|
+
listConnectors(args: ListConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
534
559
|
/**
|
|
535
560
|
* @see {@link ListDiscoveredResourcesCommand}
|
|
536
561
|
*/
|
|
@@ -587,6 +612,12 @@ export interface ConfigService {
|
|
|
587
612
|
putConformancePack(args: PutConformancePackCommandInput, options?: __HttpHandlerOptions): Promise<PutConformancePackCommandOutput>;
|
|
588
613
|
putConformancePack(args: PutConformancePackCommandInput, cb: (err: any, data?: PutConformancePackCommandOutput) => void): void;
|
|
589
614
|
putConformancePack(args: PutConformancePackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConformancePackCommandOutput) => void): void;
|
|
615
|
+
/**
|
|
616
|
+
* @see {@link PutConnectorCommand}
|
|
617
|
+
*/
|
|
618
|
+
putConnector(args: PutConnectorCommandInput, options?: __HttpHandlerOptions): Promise<PutConnectorCommandOutput>;
|
|
619
|
+
putConnector(args: PutConnectorCommandInput, cb: (err: any, data?: PutConnectorCommandOutput) => void): void;
|
|
620
|
+
putConnector(args: PutConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConnectorCommandOutput) => void): void;
|
|
590
621
|
/**
|
|
591
622
|
* @see {@link PutDeliveryChannelCommand}
|
|
592
623
|
*/
|
|
@@ -653,6 +684,12 @@ export interface ConfigService {
|
|
|
653
684
|
putStoredQuery(args: PutStoredQueryCommandInput, options?: __HttpHandlerOptions): Promise<PutStoredQueryCommandOutput>;
|
|
654
685
|
putStoredQuery(args: PutStoredQueryCommandInput, cb: (err: any, data?: PutStoredQueryCommandOutput) => void): void;
|
|
655
686
|
putStoredQuery(args: PutStoredQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutStoredQueryCommandOutput) => void): void;
|
|
687
|
+
/**
|
|
688
|
+
* @see {@link PutThirdPartyServiceLinkedConfigurationRecorderCommand}
|
|
689
|
+
*/
|
|
690
|
+
putThirdPartyServiceLinkedConfigurationRecorder(args: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput, options?: __HttpHandlerOptions): Promise<PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput>;
|
|
691
|
+
putThirdPartyServiceLinkedConfigurationRecorder(args: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput, cb: (err: any, data?: PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput) => void): void;
|
|
692
|
+
putThirdPartyServiceLinkedConfigurationRecorder(args: PutThirdPartyServiceLinkedConfigurationRecorderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput) => void): void;
|
|
656
693
|
/**
|
|
657
694
|
* @see {@link SelectAggregateResourceConfigCommand}
|
|
658
695
|
*/
|
|
@@ -953,6 +990,13 @@ export interface ConfigService {
|
|
|
953
990
|
* @returns AsyncIterable of {@link ListConformancePackComplianceScoresCommandOutput}.
|
|
954
991
|
*/
|
|
955
992
|
paginateListConformancePackComplianceScores(args?: ListConformancePackComplianceScoresCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConformancePackComplianceScoresCommandOutput>;
|
|
993
|
+
/**
|
|
994
|
+
* @see {@link ListConnectorsCommand}
|
|
995
|
+
* @param args - command input.
|
|
996
|
+
* @param paginationConfig - optional pagination config.
|
|
997
|
+
* @returns AsyncIterable of {@link ListConnectorsCommandOutput}.
|
|
998
|
+
*/
|
|
999
|
+
paginateListConnectors(args?: ListConnectorsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConnectorsCommandOutput>;
|
|
956
1000
|
/**
|
|
957
1001
|
* @see {@link ListDiscoveredResourcesCommand}
|
|
958
1002
|
* @param args - command input.
|
|
@@ -14,6 +14,7 @@ import type { DeleteConfigRuleCommandInput, DeleteConfigRuleCommandOutput } from
|
|
|
14
14
|
import type { DeleteConfigurationAggregatorCommandInput, DeleteConfigurationAggregatorCommandOutput } from "./commands/DeleteConfigurationAggregatorCommand";
|
|
15
15
|
import type { DeleteConfigurationRecorderCommandInput, DeleteConfigurationRecorderCommandOutput } from "./commands/DeleteConfigurationRecorderCommand";
|
|
16
16
|
import type { DeleteConformancePackCommandInput, DeleteConformancePackCommandOutput } from "./commands/DeleteConformancePackCommand";
|
|
17
|
+
import type { DeleteConnectorCommandInput, DeleteConnectorCommandOutput } from "./commands/DeleteConnectorCommand";
|
|
17
18
|
import type { DeleteDeliveryChannelCommandInput, DeleteDeliveryChannelCommandOutput } from "./commands/DeleteDeliveryChannelCommand";
|
|
18
19
|
import type { DeleteEvaluationResultsCommandInput, DeleteEvaluationResultsCommandOutput } from "./commands/DeleteEvaluationResultsCommand";
|
|
19
20
|
import type { DeleteOrganizationConfigRuleCommandInput, DeleteOrganizationConfigRuleCommandOutput } from "./commands/DeleteOrganizationConfigRuleCommand";
|
|
@@ -63,6 +64,7 @@ import type { GetComplianceSummaryByConfigRuleCommandInput, GetComplianceSummary
|
|
|
63
64
|
import type { GetComplianceSummaryByResourceTypeCommandInput, GetComplianceSummaryByResourceTypeCommandOutput } from "./commands/GetComplianceSummaryByResourceTypeCommand";
|
|
64
65
|
import type { GetConformancePackComplianceDetailsCommandInput, GetConformancePackComplianceDetailsCommandOutput } from "./commands/GetConformancePackComplianceDetailsCommand";
|
|
65
66
|
import type { GetConformancePackComplianceSummaryCommandInput, GetConformancePackComplianceSummaryCommandOutput } from "./commands/GetConformancePackComplianceSummaryCommand";
|
|
67
|
+
import type { GetConnectorCommandInput, GetConnectorCommandOutput } from "./commands/GetConnectorCommand";
|
|
66
68
|
import type { GetCustomRulePolicyCommandInput, GetCustomRulePolicyCommandOutput } from "./commands/GetCustomRulePolicyCommand";
|
|
67
69
|
import type { GetDiscoveredResourceCountsCommandInput, GetDiscoveredResourceCountsCommandOutput } from "./commands/GetDiscoveredResourceCountsCommand";
|
|
68
70
|
import type { GetOrganizationConfigRuleDetailedStatusCommandInput, GetOrganizationConfigRuleDetailedStatusCommandOutput } from "./commands/GetOrganizationConfigRuleDetailedStatusCommand";
|
|
@@ -74,6 +76,7 @@ import type { GetStoredQueryCommandInput, GetStoredQueryCommandOutput } from "./
|
|
|
74
76
|
import type { ListAggregateDiscoveredResourcesCommandInput, ListAggregateDiscoveredResourcesCommandOutput } from "./commands/ListAggregateDiscoveredResourcesCommand";
|
|
75
77
|
import type { ListConfigurationRecordersCommandInput, ListConfigurationRecordersCommandOutput } from "./commands/ListConfigurationRecordersCommand";
|
|
76
78
|
import type { ListConformancePackComplianceScoresCommandInput, ListConformancePackComplianceScoresCommandOutput } from "./commands/ListConformancePackComplianceScoresCommand";
|
|
79
|
+
import type { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "./commands/ListConnectorsCommand";
|
|
77
80
|
import type { ListDiscoveredResourcesCommandInput, ListDiscoveredResourcesCommandOutput } from "./commands/ListDiscoveredResourcesCommand";
|
|
78
81
|
import type { ListResourceEvaluationsCommandInput, ListResourceEvaluationsCommandOutput } from "./commands/ListResourceEvaluationsCommand";
|
|
79
82
|
import type { ListStoredQueriesCommandInput, ListStoredQueriesCommandOutput } from "./commands/ListStoredQueriesCommand";
|
|
@@ -83,6 +86,7 @@ import type { PutConfigRuleCommandInput, PutConfigRuleCommandOutput } from "./co
|
|
|
83
86
|
import type { PutConfigurationAggregatorCommandInput, PutConfigurationAggregatorCommandOutput } from "./commands/PutConfigurationAggregatorCommand";
|
|
84
87
|
import type { PutConfigurationRecorderCommandInput, PutConfigurationRecorderCommandOutput } from "./commands/PutConfigurationRecorderCommand";
|
|
85
88
|
import type { PutConformancePackCommandInput, PutConformancePackCommandOutput } from "./commands/PutConformancePackCommand";
|
|
89
|
+
import type { PutConnectorCommandInput, PutConnectorCommandOutput } from "./commands/PutConnectorCommand";
|
|
86
90
|
import type { PutDeliveryChannelCommandInput, PutDeliveryChannelCommandOutput } from "./commands/PutDeliveryChannelCommand";
|
|
87
91
|
import type { PutEvaluationsCommandInput, PutEvaluationsCommandOutput } from "./commands/PutEvaluationsCommand";
|
|
88
92
|
import type { PutExternalEvaluationCommandInput, PutExternalEvaluationCommandOutput } from "./commands/PutExternalEvaluationCommand";
|
|
@@ -94,6 +98,7 @@ import type { PutResourceConfigCommandInput, PutResourceConfigCommandOutput } fr
|
|
|
94
98
|
import type { PutRetentionConfigurationCommandInput, PutRetentionConfigurationCommandOutput } from "./commands/PutRetentionConfigurationCommand";
|
|
95
99
|
import type { PutServiceLinkedConfigurationRecorderCommandInput, PutServiceLinkedConfigurationRecorderCommandOutput } from "./commands/PutServiceLinkedConfigurationRecorderCommand";
|
|
96
100
|
import type { PutStoredQueryCommandInput, PutStoredQueryCommandOutput } from "./commands/PutStoredQueryCommand";
|
|
101
|
+
import type { PutThirdPartyServiceLinkedConfigurationRecorderCommandInput, PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput } from "./commands/PutThirdPartyServiceLinkedConfigurationRecorderCommand";
|
|
97
102
|
import type { SelectAggregateResourceConfigCommandInput, SelectAggregateResourceConfigCommandOutput } from "./commands/SelectAggregateResourceConfigCommand";
|
|
98
103
|
import type { SelectResourceConfigCommandInput, SelectResourceConfigCommandOutput } from "./commands/SelectResourceConfigCommand";
|
|
99
104
|
import type { StartConfigRulesEvaluationCommandInput, StartConfigRulesEvaluationCommandOutput } from "./commands/StartConfigRulesEvaluationCommand";
|
|
@@ -109,11 +114,11 @@ export { __Client };
|
|
|
109
114
|
/**
|
|
110
115
|
* @public
|
|
111
116
|
*/
|
|
112
|
-
export type ServiceInputTypes = AssociateResourceTypesCommandInput | BatchGetAggregateResourceConfigCommandInput | BatchGetResourceConfigCommandInput | DeleteAggregationAuthorizationCommandInput | DeleteConfigRuleCommandInput | DeleteConfigurationAggregatorCommandInput | DeleteConfigurationRecorderCommandInput | DeleteConformancePackCommandInput | DeleteDeliveryChannelCommandInput | DeleteEvaluationResultsCommandInput | DeleteOrganizationConfigRuleCommandInput | DeleteOrganizationConformancePackCommandInput | DeletePendingAggregationRequestCommandInput | DeleteRemediationConfigurationCommandInput | DeleteRemediationExceptionsCommandInput | DeleteResourceConfigCommandInput | DeleteRetentionConfigurationCommandInput | DeleteServiceLinkedConfigurationRecorderCommandInput | DeleteStoredQueryCommandInput | DeliverConfigSnapshotCommandInput | DescribeAggregateComplianceByConfigRulesCommandInput | DescribeAggregateComplianceByConformancePacksCommandInput | DescribeAggregationAuthorizationsCommandInput | DescribeComplianceByConfigRuleCommandInput | DescribeComplianceByResourceCommandInput | DescribeConfigRuleEvaluationStatusCommandInput | DescribeConfigRulesCommandInput | DescribeConfigurationAggregatorSourcesStatusCommandInput | DescribeConfigurationAggregatorsCommandInput | DescribeConfigurationRecorderStatusCommandInput | DescribeConfigurationRecordersCommandInput | DescribeConformancePackComplianceCommandInput | DescribeConformancePackStatusCommandInput | DescribeConformancePacksCommandInput | DescribeDeliveryChannelStatusCommandInput | DescribeDeliveryChannelsCommandInput | DescribeOrganizationConfigRuleStatusesCommandInput | DescribeOrganizationConfigRulesCommandInput | DescribeOrganizationConformancePackStatusesCommandInput | DescribeOrganizationConformancePacksCommandInput | DescribePendingAggregationRequestsCommandInput | DescribeRemediationConfigurationsCommandInput | DescribeRemediationExceptionsCommandInput | DescribeRemediationExecutionStatusCommandInput | DescribeRetentionConfigurationsCommandInput | DisassociateResourceTypesCommandInput | GetAggregateComplianceDetailsByConfigRuleCommandInput | GetAggregateConfigRuleComplianceSummaryCommandInput | GetAggregateConformancePackComplianceSummaryCommandInput | GetAggregateDiscoveredResourceCountsCommandInput | GetAggregateResourceConfigCommandInput | GetComplianceDetailsByConfigRuleCommandInput | GetComplianceDetailsByResourceCommandInput | GetComplianceSummaryByConfigRuleCommandInput | GetComplianceSummaryByResourceTypeCommandInput | GetConformancePackComplianceDetailsCommandInput | GetConformancePackComplianceSummaryCommandInput | GetCustomRulePolicyCommandInput | GetDiscoveredResourceCountsCommandInput | GetOrganizationConfigRuleDetailedStatusCommandInput | GetOrganizationConformancePackDetailedStatusCommandInput | GetOrganizationCustomRulePolicyCommandInput | GetResourceConfigHistoryCommandInput | GetResourceEvaluationSummaryCommandInput | GetStoredQueryCommandInput | ListAggregateDiscoveredResourcesCommandInput | ListConfigurationRecordersCommandInput | ListConformancePackComplianceScoresCommandInput | ListDiscoveredResourcesCommandInput | ListResourceEvaluationsCommandInput | ListStoredQueriesCommandInput | ListTagsForResourceCommandInput | PutAggregationAuthorizationCommandInput | PutConfigRuleCommandInput | PutConfigurationAggregatorCommandInput | PutConfigurationRecorderCommandInput | PutConformancePackCommandInput | PutDeliveryChannelCommandInput | PutEvaluationsCommandInput | PutExternalEvaluationCommandInput | PutOrganizationConfigRuleCommandInput | PutOrganizationConformancePackCommandInput | PutRemediationConfigurationsCommandInput | PutRemediationExceptionsCommandInput | PutResourceConfigCommandInput | PutRetentionConfigurationCommandInput | PutServiceLinkedConfigurationRecorderCommandInput | PutStoredQueryCommandInput | SelectAggregateResourceConfigCommandInput | SelectResourceConfigCommandInput | StartConfigRulesEvaluationCommandInput | StartConfigurationRecorderCommandInput | StartRemediationExecutionCommandInput | StartResourceEvaluationCommandInput | StopConfigurationRecorderCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
117
|
+
export type ServiceInputTypes = AssociateResourceTypesCommandInput | BatchGetAggregateResourceConfigCommandInput | BatchGetResourceConfigCommandInput | DeleteAggregationAuthorizationCommandInput | DeleteConfigRuleCommandInput | DeleteConfigurationAggregatorCommandInput | DeleteConfigurationRecorderCommandInput | DeleteConformancePackCommandInput | DeleteConnectorCommandInput | DeleteDeliveryChannelCommandInput | DeleteEvaluationResultsCommandInput | DeleteOrganizationConfigRuleCommandInput | DeleteOrganizationConformancePackCommandInput | DeletePendingAggregationRequestCommandInput | DeleteRemediationConfigurationCommandInput | DeleteRemediationExceptionsCommandInput | DeleteResourceConfigCommandInput | DeleteRetentionConfigurationCommandInput | DeleteServiceLinkedConfigurationRecorderCommandInput | DeleteStoredQueryCommandInput | DeliverConfigSnapshotCommandInput | DescribeAggregateComplianceByConfigRulesCommandInput | DescribeAggregateComplianceByConformancePacksCommandInput | DescribeAggregationAuthorizationsCommandInput | DescribeComplianceByConfigRuleCommandInput | DescribeComplianceByResourceCommandInput | DescribeConfigRuleEvaluationStatusCommandInput | DescribeConfigRulesCommandInput | DescribeConfigurationAggregatorSourcesStatusCommandInput | DescribeConfigurationAggregatorsCommandInput | DescribeConfigurationRecorderStatusCommandInput | DescribeConfigurationRecordersCommandInput | DescribeConformancePackComplianceCommandInput | DescribeConformancePackStatusCommandInput | DescribeConformancePacksCommandInput | DescribeDeliveryChannelStatusCommandInput | DescribeDeliveryChannelsCommandInput | DescribeOrganizationConfigRuleStatusesCommandInput | DescribeOrganizationConfigRulesCommandInput | DescribeOrganizationConformancePackStatusesCommandInput | DescribeOrganizationConformancePacksCommandInput | DescribePendingAggregationRequestsCommandInput | DescribeRemediationConfigurationsCommandInput | DescribeRemediationExceptionsCommandInput | DescribeRemediationExecutionStatusCommandInput | DescribeRetentionConfigurationsCommandInput | DisassociateResourceTypesCommandInput | GetAggregateComplianceDetailsByConfigRuleCommandInput | GetAggregateConfigRuleComplianceSummaryCommandInput | GetAggregateConformancePackComplianceSummaryCommandInput | GetAggregateDiscoveredResourceCountsCommandInput | GetAggregateResourceConfigCommandInput | GetComplianceDetailsByConfigRuleCommandInput | GetComplianceDetailsByResourceCommandInput | GetComplianceSummaryByConfigRuleCommandInput | GetComplianceSummaryByResourceTypeCommandInput | GetConformancePackComplianceDetailsCommandInput | GetConformancePackComplianceSummaryCommandInput | GetConnectorCommandInput | GetCustomRulePolicyCommandInput | GetDiscoveredResourceCountsCommandInput | GetOrganizationConfigRuleDetailedStatusCommandInput | GetOrganizationConformancePackDetailedStatusCommandInput | GetOrganizationCustomRulePolicyCommandInput | GetResourceConfigHistoryCommandInput | GetResourceEvaluationSummaryCommandInput | GetStoredQueryCommandInput | ListAggregateDiscoveredResourcesCommandInput | ListConfigurationRecordersCommandInput | ListConformancePackComplianceScoresCommandInput | ListConnectorsCommandInput | ListDiscoveredResourcesCommandInput | ListResourceEvaluationsCommandInput | ListStoredQueriesCommandInput | ListTagsForResourceCommandInput | PutAggregationAuthorizationCommandInput | PutConfigRuleCommandInput | PutConfigurationAggregatorCommandInput | PutConfigurationRecorderCommandInput | PutConformancePackCommandInput | PutConnectorCommandInput | PutDeliveryChannelCommandInput | PutEvaluationsCommandInput | PutExternalEvaluationCommandInput | PutOrganizationConfigRuleCommandInput | PutOrganizationConformancePackCommandInput | PutRemediationConfigurationsCommandInput | PutRemediationExceptionsCommandInput | PutResourceConfigCommandInput | PutRetentionConfigurationCommandInput | PutServiceLinkedConfigurationRecorderCommandInput | PutStoredQueryCommandInput | PutThirdPartyServiceLinkedConfigurationRecorderCommandInput | SelectAggregateResourceConfigCommandInput | SelectResourceConfigCommandInput | StartConfigRulesEvaluationCommandInput | StartConfigurationRecorderCommandInput | StartRemediationExecutionCommandInput | StartResourceEvaluationCommandInput | StopConfigurationRecorderCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
113
118
|
/**
|
|
114
119
|
* @public
|
|
115
120
|
*/
|
|
116
|
-
export type ServiceOutputTypes = AssociateResourceTypesCommandOutput | BatchGetAggregateResourceConfigCommandOutput | BatchGetResourceConfigCommandOutput | DeleteAggregationAuthorizationCommandOutput | DeleteConfigRuleCommandOutput | DeleteConfigurationAggregatorCommandOutput | DeleteConfigurationRecorderCommandOutput | DeleteConformancePackCommandOutput | DeleteDeliveryChannelCommandOutput | DeleteEvaluationResultsCommandOutput | DeleteOrganizationConfigRuleCommandOutput | DeleteOrganizationConformancePackCommandOutput | DeletePendingAggregationRequestCommandOutput | DeleteRemediationConfigurationCommandOutput | DeleteRemediationExceptionsCommandOutput | DeleteResourceConfigCommandOutput | DeleteRetentionConfigurationCommandOutput | DeleteServiceLinkedConfigurationRecorderCommandOutput | DeleteStoredQueryCommandOutput | DeliverConfigSnapshotCommandOutput | DescribeAggregateComplianceByConfigRulesCommandOutput | DescribeAggregateComplianceByConformancePacksCommandOutput | DescribeAggregationAuthorizationsCommandOutput | DescribeComplianceByConfigRuleCommandOutput | DescribeComplianceByResourceCommandOutput | DescribeConfigRuleEvaluationStatusCommandOutput | DescribeConfigRulesCommandOutput | DescribeConfigurationAggregatorSourcesStatusCommandOutput | DescribeConfigurationAggregatorsCommandOutput | DescribeConfigurationRecorderStatusCommandOutput | DescribeConfigurationRecordersCommandOutput | DescribeConformancePackComplianceCommandOutput | DescribeConformancePackStatusCommandOutput | DescribeConformancePacksCommandOutput | DescribeDeliveryChannelStatusCommandOutput | DescribeDeliveryChannelsCommandOutput | DescribeOrganizationConfigRuleStatusesCommandOutput | DescribeOrganizationConfigRulesCommandOutput | DescribeOrganizationConformancePackStatusesCommandOutput | DescribeOrganizationConformancePacksCommandOutput | DescribePendingAggregationRequestsCommandOutput | DescribeRemediationConfigurationsCommandOutput | DescribeRemediationExceptionsCommandOutput | DescribeRemediationExecutionStatusCommandOutput | DescribeRetentionConfigurationsCommandOutput | DisassociateResourceTypesCommandOutput | GetAggregateComplianceDetailsByConfigRuleCommandOutput | GetAggregateConfigRuleComplianceSummaryCommandOutput | GetAggregateConformancePackComplianceSummaryCommandOutput | GetAggregateDiscoveredResourceCountsCommandOutput | GetAggregateResourceConfigCommandOutput | GetComplianceDetailsByConfigRuleCommandOutput | GetComplianceDetailsByResourceCommandOutput | GetComplianceSummaryByConfigRuleCommandOutput | GetComplianceSummaryByResourceTypeCommandOutput | GetConformancePackComplianceDetailsCommandOutput | GetConformancePackComplianceSummaryCommandOutput | GetCustomRulePolicyCommandOutput | GetDiscoveredResourceCountsCommandOutput | GetOrganizationConfigRuleDetailedStatusCommandOutput | GetOrganizationConformancePackDetailedStatusCommandOutput | GetOrganizationCustomRulePolicyCommandOutput | GetResourceConfigHistoryCommandOutput | GetResourceEvaluationSummaryCommandOutput | GetStoredQueryCommandOutput | ListAggregateDiscoveredResourcesCommandOutput | ListConfigurationRecordersCommandOutput | ListConformancePackComplianceScoresCommandOutput | ListDiscoveredResourcesCommandOutput | ListResourceEvaluationsCommandOutput | ListStoredQueriesCommandOutput | ListTagsForResourceCommandOutput | PutAggregationAuthorizationCommandOutput | PutConfigRuleCommandOutput | PutConfigurationAggregatorCommandOutput | PutConfigurationRecorderCommandOutput | PutConformancePackCommandOutput | PutDeliveryChannelCommandOutput | PutEvaluationsCommandOutput | PutExternalEvaluationCommandOutput | PutOrganizationConfigRuleCommandOutput | PutOrganizationConformancePackCommandOutput | PutRemediationConfigurationsCommandOutput | PutRemediationExceptionsCommandOutput | PutResourceConfigCommandOutput | PutRetentionConfigurationCommandOutput | PutServiceLinkedConfigurationRecorderCommandOutput | PutStoredQueryCommandOutput | SelectAggregateResourceConfigCommandOutput | SelectResourceConfigCommandOutput | StartConfigRulesEvaluationCommandOutput | StartConfigurationRecorderCommandOutput | StartRemediationExecutionCommandOutput | StartResourceEvaluationCommandOutput | StopConfigurationRecorderCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
121
|
+
export type ServiceOutputTypes = AssociateResourceTypesCommandOutput | BatchGetAggregateResourceConfigCommandOutput | BatchGetResourceConfigCommandOutput | DeleteAggregationAuthorizationCommandOutput | DeleteConfigRuleCommandOutput | DeleteConfigurationAggregatorCommandOutput | DeleteConfigurationRecorderCommandOutput | DeleteConformancePackCommandOutput | DeleteConnectorCommandOutput | DeleteDeliveryChannelCommandOutput | DeleteEvaluationResultsCommandOutput | DeleteOrganizationConfigRuleCommandOutput | DeleteOrganizationConformancePackCommandOutput | DeletePendingAggregationRequestCommandOutput | DeleteRemediationConfigurationCommandOutput | DeleteRemediationExceptionsCommandOutput | DeleteResourceConfigCommandOutput | DeleteRetentionConfigurationCommandOutput | DeleteServiceLinkedConfigurationRecorderCommandOutput | DeleteStoredQueryCommandOutput | DeliverConfigSnapshotCommandOutput | DescribeAggregateComplianceByConfigRulesCommandOutput | DescribeAggregateComplianceByConformancePacksCommandOutput | DescribeAggregationAuthorizationsCommandOutput | DescribeComplianceByConfigRuleCommandOutput | DescribeComplianceByResourceCommandOutput | DescribeConfigRuleEvaluationStatusCommandOutput | DescribeConfigRulesCommandOutput | DescribeConfigurationAggregatorSourcesStatusCommandOutput | DescribeConfigurationAggregatorsCommandOutput | DescribeConfigurationRecorderStatusCommandOutput | DescribeConfigurationRecordersCommandOutput | DescribeConformancePackComplianceCommandOutput | DescribeConformancePackStatusCommandOutput | DescribeConformancePacksCommandOutput | DescribeDeliveryChannelStatusCommandOutput | DescribeDeliveryChannelsCommandOutput | DescribeOrganizationConfigRuleStatusesCommandOutput | DescribeOrganizationConfigRulesCommandOutput | DescribeOrganizationConformancePackStatusesCommandOutput | DescribeOrganizationConformancePacksCommandOutput | DescribePendingAggregationRequestsCommandOutput | DescribeRemediationConfigurationsCommandOutput | DescribeRemediationExceptionsCommandOutput | DescribeRemediationExecutionStatusCommandOutput | DescribeRetentionConfigurationsCommandOutput | DisassociateResourceTypesCommandOutput | GetAggregateComplianceDetailsByConfigRuleCommandOutput | GetAggregateConfigRuleComplianceSummaryCommandOutput | GetAggregateConformancePackComplianceSummaryCommandOutput | GetAggregateDiscoveredResourceCountsCommandOutput | GetAggregateResourceConfigCommandOutput | GetComplianceDetailsByConfigRuleCommandOutput | GetComplianceDetailsByResourceCommandOutput | GetComplianceSummaryByConfigRuleCommandOutput | GetComplianceSummaryByResourceTypeCommandOutput | GetConformancePackComplianceDetailsCommandOutput | GetConformancePackComplianceSummaryCommandOutput | GetConnectorCommandOutput | GetCustomRulePolicyCommandOutput | GetDiscoveredResourceCountsCommandOutput | GetOrganizationConfigRuleDetailedStatusCommandOutput | GetOrganizationConformancePackDetailedStatusCommandOutput | GetOrganizationCustomRulePolicyCommandOutput | GetResourceConfigHistoryCommandOutput | GetResourceEvaluationSummaryCommandOutput | GetStoredQueryCommandOutput | ListAggregateDiscoveredResourcesCommandOutput | ListConfigurationRecordersCommandOutput | ListConformancePackComplianceScoresCommandOutput | ListConnectorsCommandOutput | ListDiscoveredResourcesCommandOutput | ListResourceEvaluationsCommandOutput | ListStoredQueriesCommandOutput | ListTagsForResourceCommandOutput | PutAggregationAuthorizationCommandOutput | PutConfigRuleCommandOutput | PutConfigurationAggregatorCommandOutput | PutConfigurationRecorderCommandOutput | PutConformancePackCommandOutput | PutConnectorCommandOutput | PutDeliveryChannelCommandOutput | PutEvaluationsCommandOutput | PutExternalEvaluationCommandOutput | PutOrganizationConfigRuleCommandOutput | PutOrganizationConformancePackCommandOutput | PutRemediationConfigurationsCommandOutput | PutRemediationExceptionsCommandOutput | PutResourceConfigCommandOutput | PutRetentionConfigurationCommandOutput | PutServiceLinkedConfigurationRecorderCommandOutput | PutStoredQueryCommandOutput | PutThirdPartyServiceLinkedConfigurationRecorderCommandOutput | SelectAggregateResourceConfigCommandOutput | SelectResourceConfigCommandOutput | StartConfigRulesEvaluationCommandOutput | StartConfigurationRecorderCommandOutput | StartRemediationExecutionCommandOutput | StartResourceEvaluationCommandOutput | StopConfigurationRecorderCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
117
122
|
/**
|
|
118
123
|
* @public
|
|
119
124
|
*/
|
|
@@ -76,6 +76,17 @@ declare const AssociateResourceTypesCommand_base: {
|
|
|
76
76
|
* // },
|
|
77
77
|
* // recordingScope: "INTERNAL" || "PAID",
|
|
78
78
|
* // servicePrincipal: "STRING_VALUE",
|
|
79
|
+
* // connectorArn: "STRING_VALUE",
|
|
80
|
+
* // scopeConfiguration: { // ScopeConfiguration
|
|
81
|
+
* // scopeType: "STRING_VALUE", // required
|
|
82
|
+
* // scopeValues: [ // ScopeValues
|
|
83
|
+
* // "STRING_VALUE",
|
|
84
|
+
* // ],
|
|
85
|
+
* // allRegions: true || false, // required
|
|
86
|
+
* // includedRegions: [ // IncludedRegions
|
|
87
|
+
* // "STRING_VALUE",
|
|
88
|
+
* // ],
|
|
89
|
+
* // },
|
|
79
90
|
* // },
|
|
80
91
|
* // };
|
|
81
92
|
*
|
|
@@ -89,7 +100,12 @@ declare const AssociateResourceTypesCommand_base: {
|
|
|
89
100
|
*
|
|
90
101
|
* @throws {@link ConflictException} (client fault)
|
|
91
102
|
* <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>
|
|
103
|
+
* <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>
|
|
104
|
+
* <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>
|
|
105
|
+
* <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>
|
|
92
106
|
* <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>
|
|
107
|
+
* <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>
|
|
108
|
+
* <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
109
|
* <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
110
|
* recorder.</p>
|
|
95
111
|
* <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>
|
|
@@ -141,6 +157,15 @@ declare const AssociateResourceTypesCommand_base: {
|
|
|
141
157
|
* <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
|
|
142
158
|
* </li>
|
|
143
159
|
* </ul>
|
|
160
|
+
* <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
|
|
161
|
+
* <ul>
|
|
162
|
+
* <li>
|
|
163
|
+
* <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>
|
|
164
|
+
* </li>
|
|
165
|
+
* <li>
|
|
166
|
+
* <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
|
|
167
|
+
* </li>
|
|
168
|
+
* </ul>
|
|
144
169
|
*
|
|
145
170
|
* @throws {@link ConfigServiceServiceException}
|
|
146
171
|
* <p>Base exception class for all service exceptions from ConfigService service.</p>
|
|
@@ -138,6 +138,15 @@ declare const BatchGetAggregateResourceConfigCommand_base: {
|
|
|
138
138
|
* <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
|
|
139
139
|
* </li>
|
|
140
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>
|
|
141
150
|
*
|
|
142
151
|
* @throws {@link ConfigServiceServiceException}
|
|
143
152
|
* <p>Base exception class for all service exceptions from ConfigService service.</p>
|
|
@@ -139,6 +139,15 @@ declare const BatchGetResourceConfigCommand_base: {
|
|
|
139
139
|
* <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
|
|
140
140
|
* </li>
|
|
141
141
|
* </ul>
|
|
142
|
+
* <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
|
|
143
|
+
* <ul>
|
|
144
|
+
* <li>
|
|
145
|
+
* <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>
|
|
146
|
+
* </li>
|
|
147
|
+
* <li>
|
|
148
|
+
* <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
|
|
149
|
+
* </li>
|
|
150
|
+
* </ul>
|
|
142
151
|
*
|
|
143
152
|
* @throws {@link ConfigServiceServiceException}
|
|
144
153
|
* <p>Base exception class for all service exceptions from ConfigService service.</p>
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { DeleteConnectorRequest } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link DeleteConnectorCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface DeleteConnectorCommandInput extends DeleteConnectorRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link DeleteConnectorCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface DeleteConnectorCommandOutput extends __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const DeleteConnectorCommand_base: {
|
|
22
|
+
new (input: DeleteConnectorCommandInput): import("@smithy/core/client").CommandImpl<DeleteConnectorCommandInput, DeleteConnectorCommandOutput, import("..").ConfigServiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteConnectorCommandInput): import("@smithy/core/client").CommandImpl<DeleteConnectorCommandInput, DeleteConnectorCommandOutput, import("..").ConfigServiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Deletes the specified connector.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { ConfigServiceClient, DeleteConnectorCommand } from "@aws-sdk/client-config-service"; // ES Modules import
|
|
32
|
+
* // const { ConfigServiceClient, DeleteConnectorCommand } = require("@aws-sdk/client-config-service"); // CommonJS import
|
|
33
|
+
* // import type { ConfigServiceClientConfig } from "@aws-sdk/client-config-service";
|
|
34
|
+
* const config = {}; // type is ConfigServiceClientConfig
|
|
35
|
+
* const client = new ConfigServiceClient(config);
|
|
36
|
+
* const input = { // DeleteConnectorRequest
|
|
37
|
+
* Arn: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
39
|
+
* const command = new DeleteConnectorCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
43
|
+
* ```
|
|
44
|
+
*
|
|
45
|
+
* @param DeleteConnectorCommandInput - {@link DeleteConnectorCommandInput}
|
|
46
|
+
* @returns {@link DeleteConnectorCommandOutput}
|
|
47
|
+
* @see {@link DeleteConnectorCommandInput} for command's `input` shape.
|
|
48
|
+
* @see {@link DeleteConnectorCommandOutput} for command's `response` shape.
|
|
49
|
+
* @see {@link ConfigServiceClientResolvedConfig | config} for ConfigServiceClient's `config` shape.
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
|
+
* <p>You have specified a resource that does not exist.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <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>
|
|
56
|
+
* <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_PutStoredQuery.html">PutStoredQuery</a>, one of the following errors:</p>
|
|
57
|
+
* <ul>
|
|
58
|
+
* <li>
|
|
59
|
+
* <p>There are missing required fields.</p>
|
|
60
|
+
* </li>
|
|
61
|
+
* <li>
|
|
62
|
+
* <p>The input value fails the validation.</p>
|
|
63
|
+
* </li>
|
|
64
|
+
* <li>
|
|
65
|
+
* <p>You are trying to create more than 300 queries.</p>
|
|
66
|
+
* </li>
|
|
67
|
+
* </ul>
|
|
68
|
+
* <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>
|
|
69
|
+
* <ul>
|
|
70
|
+
* <li>
|
|
71
|
+
* <p>You have specified more than one configuration recorder.</p>
|
|
72
|
+
* </li>
|
|
73
|
+
* <li>
|
|
74
|
+
* <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
|
|
75
|
+
* </li>
|
|
76
|
+
* </ul>
|
|
77
|
+
* <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>
|
|
78
|
+
* <ul>
|
|
79
|
+
* <li>
|
|
80
|
+
* <p>Your configuraiton recorder has a recording strategy that does not allow the association or disassociation of resource types.</p>
|
|
81
|
+
* </li>
|
|
82
|
+
* <li>
|
|
83
|
+
* <p>One or more of the specified resource types are already associated or disassociated with the configuration recorder.</p>
|
|
84
|
+
* </li>
|
|
85
|
+
* <li>
|
|
86
|
+
* <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
|
|
87
|
+
* </li>
|
|
88
|
+
* </ul>
|
|
89
|
+
* <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
|
|
90
|
+
* <ul>
|
|
91
|
+
* <li>
|
|
92
|
+
* <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>
|
|
93
|
+
* </li>
|
|
94
|
+
* <li>
|
|
95
|
+
* <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
|
|
96
|
+
* </li>
|
|
97
|
+
* </ul>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ConfigServiceServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from ConfigService service.</p>
|
|
101
|
+
*
|
|
102
|
+
*
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export declare class DeleteConnectorCommand extends DeleteConnectorCommand_base {
|
|
106
|
+
/** @internal type navigation helper, not in runtime. */
|
|
107
|
+
protected static __types: {
|
|
108
|
+
api: {
|
|
109
|
+
input: DeleteConnectorRequest;
|
|
110
|
+
output: {};
|
|
111
|
+
};
|
|
112
|
+
sdk: {
|
|
113
|
+
input: DeleteConnectorCommandInput;
|
|
114
|
+
output: DeleteConnectorCommandOutput;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
}
|
|
@@ -75,6 +75,9 @@ declare const DeleteRemediationConfigurationCommand_base: {
|
|
|
75
75
|
* <li>
|
|
76
76
|
* <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>
|
|
77
77
|
* </li>
|
|
78
|
+
* <li>
|
|
79
|
+
* <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>
|
|
80
|
+
* </li>
|
|
78
81
|
* </ul>
|
|
79
82
|
*
|
|
80
83
|
* @throws {@link InvalidParameterValueException} (client fault)
|
|
@@ -88,6 +88,15 @@ declare const DeleteResourceConfigCommand_base: {
|
|
|
88
88
|
* <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
|
|
89
89
|
* </li>
|
|
90
90
|
* </ul>
|
|
91
|
+
* <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
|
|
92
|
+
* <ul>
|
|
93
|
+
* <li>
|
|
94
|
+
* <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>
|
|
95
|
+
* </li>
|
|
96
|
+
* <li>
|
|
97
|
+
* <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
|
|
98
|
+
* </li>
|
|
99
|
+
* </ul>
|
|
91
100
|
*
|
|
92
101
|
* @throws {@link ConfigServiceServiceException}
|
|
93
102
|
* <p>Base exception class for all service exceptions from ConfigService service.</p>
|
|
@@ -20,7 +20,7 @@ export interface DeleteServiceLinkedConfigurationRecorderCommandOutput extends D
|
|
|
20
20
|
}
|
|
21
21
|
declare const DeleteServiceLinkedConfigurationRecorderCommand_base: {
|
|
22
22
|
new (input: DeleteServiceLinkedConfigurationRecorderCommandInput): import("@smithy/core/client").CommandImpl<DeleteServiceLinkedConfigurationRecorderCommandInput, DeleteServiceLinkedConfigurationRecorderCommandOutput, import("..").ConfigServiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
-
new (input: DeleteServiceLinkedConfigurationRecorderCommandInput): import("@smithy/core/client").CommandImpl<DeleteServiceLinkedConfigurationRecorderCommandInput, DeleteServiceLinkedConfigurationRecorderCommandOutput, import("..").ConfigServiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [DeleteServiceLinkedConfigurationRecorderCommandInput]): import("@smithy/core/client").CommandImpl<DeleteServiceLinkedConfigurationRecorderCommandInput, DeleteServiceLinkedConfigurationRecorderCommandOutput, import("..").ConfigServiceClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
24
|
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
@@ -45,7 +45,8 @@ declare const DeleteServiceLinkedConfigurationRecorderCommand_base: {
|
|
|
45
45
|
* const config = {}; // type is ConfigServiceClientConfig
|
|
46
46
|
* const client = new ConfigServiceClient(config);
|
|
47
47
|
* const input = { // DeleteServiceLinkedConfigurationRecorderRequest
|
|
48
|
-
* ServicePrincipal: "STRING_VALUE",
|
|
48
|
+
* ServicePrincipal: "STRING_VALUE",
|
|
49
|
+
* Arn: "STRING_VALUE",
|
|
49
50
|
* };
|
|
50
51
|
* const command = new DeleteServiceLinkedConfigurationRecorderCommand(input);
|
|
51
52
|
* const response = await client.send(command);
|
|
@@ -64,7 +65,12 @@ declare const DeleteServiceLinkedConfigurationRecorderCommand_base: {
|
|
|
64
65
|
*
|
|
65
66
|
* @throws {@link ConflictException} (client fault)
|
|
66
67
|
* <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>
|
|
68
|
+
* <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>
|
|
69
|
+
* <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>
|
|
70
|
+
* <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>
|
|
67
71
|
* <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>
|
|
72
|
+
* <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>
|
|
73
|
+
* <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>
|
|
68
74
|
* <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
|
|
69
75
|
* recorder.</p>
|
|
70
76
|
* <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>
|
|
@@ -116,6 +122,15 @@ declare const DeleteServiceLinkedConfigurationRecorderCommand_base: {
|
|
|
116
122
|
* <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
|
|
117
123
|
* </li>
|
|
118
124
|
* </ul>
|
|
125
|
+
* <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
|
|
126
|
+
* <ul>
|
|
127
|
+
* <li>
|
|
128
|
+
* <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>
|
|
129
|
+
* </li>
|
|
130
|
+
* <li>
|
|
131
|
+
* <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
|
|
132
|
+
* </li>
|
|
133
|
+
* </ul>
|
|
119
134
|
*
|
|
120
135
|
* @throws {@link ConfigServiceServiceException}
|
|
121
136
|
* <p>Base exception class for all service exceptions from ConfigService service.</p>
|
|
@@ -86,6 +86,15 @@ declare const DeleteStoredQueryCommand_base: {
|
|
|
86
86
|
* <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
|
|
87
87
|
* </li>
|
|
88
88
|
* </ul>
|
|
89
|
+
* <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
|
|
90
|
+
* <ul>
|
|
91
|
+
* <li>
|
|
92
|
+
* <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>
|
|
93
|
+
* </li>
|
|
94
|
+
* <li>
|
|
95
|
+
* <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
|
|
96
|
+
* </li>
|
|
97
|
+
* </ul>
|
|
89
98
|
*
|
|
90
99
|
* @throws {@link ConfigServiceServiceException}
|
|
91
100
|
* <p>Base exception class for all service exceptions from ConfigService service.</p>
|
|
@@ -125,6 +125,15 @@ declare const DescribeAggregateComplianceByConfigRulesCommand_base: {
|
|
|
125
125
|
* <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
|
|
126
126
|
* </li>
|
|
127
127
|
* </ul>
|
|
128
|
+
* <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
|
|
129
|
+
* <ul>
|
|
130
|
+
* <li>
|
|
131
|
+
* <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>
|
|
132
|
+
* </li>
|
|
133
|
+
* <li>
|
|
134
|
+
* <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
|
|
135
|
+
* </li>
|
|
136
|
+
* </ul>
|
|
128
137
|
*
|
|
129
138
|
* @throws {@link ConfigServiceServiceException}
|
|
130
139
|
* <p>Base exception class for all service exceptions from ConfigService service.</p>
|
|
@@ -121,6 +121,15 @@ declare const DescribeAggregateComplianceByConformancePacksCommand_base: {
|
|
|
121
121
|
* <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
|
|
122
122
|
* </li>
|
|
123
123
|
* </ul>
|
|
124
|
+
* <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
|
|
125
|
+
* <ul>
|
|
126
|
+
* <li>
|
|
127
|
+
* <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>
|
|
128
|
+
* </li>
|
|
129
|
+
* <li>
|
|
130
|
+
* <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
|
|
131
|
+
* </li>
|
|
132
|
+
* </ul>
|
|
124
133
|
*
|
|
125
134
|
* @throws {@link ConfigServiceServiceException}
|
|
126
135
|
* <p>Base exception class for all service exceptions from ConfigService service.</p>
|
|
@@ -37,11 +37,11 @@ declare const DescribeConfigRulesCommand_base: {
|
|
|
37
37
|
* ConfigRuleNames: [ // ConfigRuleNames
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
|
-
* NextToken: "STRING_VALUE",
|
|
41
40
|
* Filters: { // DescribeConfigRulesFilters
|
|
42
41
|
* EvaluationMode: "DETECTIVE" || "PROACTIVE",
|
|
43
42
|
* RuleEvaluationVisibility: "EXTERNAL" || "INTERNAL",
|
|
44
43
|
* },
|
|
44
|
+
* NextToken: "STRING_VALUE",
|
|
45
45
|
* };
|
|
46
46
|
* const command = new DescribeConfigRulesCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
@@ -113,6 +113,15 @@ declare const DescribeConfigurationRecorderStatusCommand_base: {
|
|
|
113
113
|
* <p>For service-linked configuration recorders, the configuration recorder does not record one or more of the specified resource types.</p>
|
|
114
114
|
* </li>
|
|
115
115
|
* </ul>
|
|
116
|
+
* <p>For <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DeleteServiceLinkedConfigurationRecorder.html">DeleteServiceLinkedConfigurationRecorder</a>, one of the following errors:</p>
|
|
117
|
+
* <ul>
|
|
118
|
+
* <li>
|
|
119
|
+
* <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>
|
|
120
|
+
* </li>
|
|
121
|
+
* <li>
|
|
122
|
+
* <p>You have provided a service principal for service-linked configuration recorder that is not valid.</p>
|
|
123
|
+
* </li>
|
|
124
|
+
* </ul>
|
|
116
125
|
*
|
|
117
126
|
* @throws {@link ConfigServiceServiceException}
|
|
118
127
|
* <p>Base exception class for all service exceptions from ConfigService service.</p>
|