@aws-sdk/client-config-service 3.1080.0 → 3.1082.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +8 -8
|
@@ -6,6 +6,7 @@ export * from "./DeleteConfigRuleCommand";
|
|
|
6
6
|
export * from "./DeleteConfigurationAggregatorCommand";
|
|
7
7
|
export * from "./DeleteConfigurationRecorderCommand";
|
|
8
8
|
export * from "./DeleteConformancePackCommand";
|
|
9
|
+
export * from "./DeleteConnectorCommand";
|
|
9
10
|
export * from "./DeleteDeliveryChannelCommand";
|
|
10
11
|
export * from "./DeleteEvaluationResultsCommand";
|
|
11
12
|
export * from "./DeleteOrganizationConfigRuleCommand";
|
|
@@ -55,6 +56,7 @@ export * from "./GetComplianceSummaryByConfigRuleCommand";
|
|
|
55
56
|
export * from "./GetComplianceSummaryByResourceTypeCommand";
|
|
56
57
|
export * from "./GetConformancePackComplianceDetailsCommand";
|
|
57
58
|
export * from "./GetConformancePackComplianceSummaryCommand";
|
|
59
|
+
export * from "./GetConnectorCommand";
|
|
58
60
|
export * from "./GetCustomRulePolicyCommand";
|
|
59
61
|
export * from "./GetDiscoveredResourceCountsCommand";
|
|
60
62
|
export * from "./GetOrganizationConfigRuleDetailedStatusCommand";
|
|
@@ -66,6 +68,7 @@ export * from "./GetStoredQueryCommand";
|
|
|
66
68
|
export * from "./ListAggregateDiscoveredResourcesCommand";
|
|
67
69
|
export * from "./ListConfigurationRecordersCommand";
|
|
68
70
|
export * from "./ListConformancePackComplianceScoresCommand";
|
|
71
|
+
export * from "./ListConnectorsCommand";
|
|
69
72
|
export * from "./ListDiscoveredResourcesCommand";
|
|
70
73
|
export * from "./ListResourceEvaluationsCommand";
|
|
71
74
|
export * from "./ListStoredQueriesCommand";
|
|
@@ -75,6 +78,7 @@ export * from "./PutConfigRuleCommand";
|
|
|
75
78
|
export * from "./PutConfigurationAggregatorCommand";
|
|
76
79
|
export * from "./PutConfigurationRecorderCommand";
|
|
77
80
|
export * from "./PutConformancePackCommand";
|
|
81
|
+
export * from "./PutConnectorCommand";
|
|
78
82
|
export * from "./PutDeliveryChannelCommand";
|
|
79
83
|
export * from "./PutEvaluationsCommand";
|
|
80
84
|
export * from "./PutExternalEvaluationCommand";
|
|
@@ -86,6 +90,7 @@ export * from "./PutResourceConfigCommand";
|
|
|
86
90
|
export * from "./PutRetentionConfigurationCommand";
|
|
87
91
|
export * from "./PutServiceLinkedConfigurationRecorderCommand";
|
|
88
92
|
export * from "./PutStoredQueryCommand";
|
|
93
|
+
export * from "./PutThirdPartyServiceLinkedConfigurationRecorderCommand";
|
|
89
94
|
export * from "./SelectAggregateResourceConfigCommand";
|
|
90
95
|
export * from "./SelectResourceConfigCommand";
|
|
91
96
|
export * from "./StartConfigRulesEvaluationCommand";
|
|
@@ -679,6 +679,10 @@ export declare const RecorderStatus: {
|
|
|
679
679
|
};
|
|
680
680
|
export type RecorderStatus =
|
|
681
681
|
(typeof RecorderStatus)[keyof typeof RecorderStatus];
|
|
682
|
+
export declare const Provider: {
|
|
683
|
+
readonly AZURE: "AZURE";
|
|
684
|
+
};
|
|
685
|
+
export type Provider = (typeof Provider)[keyof typeof Provider];
|
|
682
686
|
export declare const ConformancePackState: {
|
|
683
687
|
readonly CREATE_COMPLETE: "CREATE_COMPLETE";
|
|
684
688
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -688,6 +692,11 @@ export declare const ConformancePackState: {
|
|
|
688
692
|
};
|
|
689
693
|
export type ConformancePackState =
|
|
690
694
|
(typeof ConformancePackState)[keyof typeof ConformancePackState];
|
|
695
|
+
export declare const ConnectorFilterName: {
|
|
696
|
+
readonly provider: "provider";
|
|
697
|
+
};
|
|
698
|
+
export type ConnectorFilterName =
|
|
699
|
+
(typeof ConnectorFilterName)[keyof typeof ConnectorFilterName];
|
|
691
700
|
export declare const OrganizationConfigRuleTriggerTypeNoSN: {
|
|
692
701
|
readonly CONFIGURATION_ITEM_CHANGE_NOTIFICATION: "ConfigurationItemChangeNotification";
|
|
693
702
|
readonly OVERSIZED_CONFIGURATION_ITEM_CHANGE_NOTIFCATION: "OversizedConfigurationItemChangeNotification";
|
|
@@ -87,6 +87,13 @@ export declare class NoSuchConformancePackException extends __BaseException {
|
|
|
87
87
|
opts: __ExceptionOptionType<NoSuchConformancePackException, __BaseException>
|
|
88
88
|
);
|
|
89
89
|
}
|
|
90
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
91
|
+
readonly name: "ResourceNotFoundException";
|
|
92
|
+
readonly $fault: "client";
|
|
93
|
+
constructor(
|
|
94
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
95
|
+
);
|
|
96
|
+
}
|
|
90
97
|
export declare class LastDeliveryChannelDeleteFailedException extends __BaseException {
|
|
91
98
|
readonly name: "LastDeliveryChannelDeleteFailedException";
|
|
92
99
|
readonly $fault: "client";
|
|
@@ -191,13 +198,6 @@ export declare class NoSuchRetentionConfigurationException extends __BaseExcepti
|
|
|
191
198
|
>
|
|
192
199
|
);
|
|
193
200
|
}
|
|
194
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
195
|
-
readonly name: "ResourceNotFoundException";
|
|
196
|
-
readonly $fault: "client";
|
|
197
|
-
constructor(
|
|
198
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
199
|
-
);
|
|
200
|
-
}
|
|
201
201
|
export declare class InvalidLimitException extends __BaseException {
|
|
202
202
|
readonly name: "InvalidLimitException";
|
|
203
203
|
readonly $fault: "client";
|
|
@@ -379,6 +379,16 @@ export declare class MaxNumberOfConformancePacksExceededException extends __Base
|
|
|
379
379
|
>
|
|
380
380
|
);
|
|
381
381
|
}
|
|
382
|
+
export declare class MaxNumberOfConnectorsExceededException extends __BaseException {
|
|
383
|
+
readonly name: "MaxNumberOfConnectorsExceededException";
|
|
384
|
+
readonly $fault: "client";
|
|
385
|
+
constructor(
|
|
386
|
+
opts: __ExceptionOptionType<
|
|
387
|
+
MaxNumberOfConnectorsExceededException,
|
|
388
|
+
__BaseException
|
|
389
|
+
>
|
|
390
|
+
);
|
|
391
|
+
}
|
|
382
392
|
export declare class MaxNumberOfDeliveryChannelsExceededException extends __BaseException {
|
|
383
393
|
readonly name: "MaxNumberOfDeliveryChannelsExceededException";
|
|
384
394
|
readonly $fault: "client";
|
|
@@ -11,6 +11,7 @@ import {
|
|
|
11
11
|
ConfigurationRecorderFilterName,
|
|
12
12
|
ConformancePackComplianceType,
|
|
13
13
|
ConformancePackState,
|
|
14
|
+
ConnectorFilterName,
|
|
14
15
|
DeliveryStatus,
|
|
15
16
|
EvaluationMode,
|
|
16
17
|
EventSource,
|
|
@@ -23,6 +24,7 @@ import {
|
|
|
23
24
|
OrganizationResourceStatus,
|
|
24
25
|
OrganizationRuleStatus,
|
|
25
26
|
Owner,
|
|
27
|
+
Provider,
|
|
26
28
|
RecorderStatus,
|
|
27
29
|
RecordingFrequency,
|
|
28
30
|
RecordingScope,
|
|
@@ -177,6 +179,12 @@ export interface RecordingMode {
|
|
|
177
179
|
recordingFrequency: RecordingFrequency | undefined;
|
|
178
180
|
recordingModeOverrides?: RecordingModeOverride[] | undefined;
|
|
179
181
|
}
|
|
182
|
+
export interface ScopeConfiguration {
|
|
183
|
+
scopeType: string | undefined;
|
|
184
|
+
scopeValues?: string[] | undefined;
|
|
185
|
+
allRegions: boolean | undefined;
|
|
186
|
+
includedRegions?: string[] | undefined;
|
|
187
|
+
}
|
|
180
188
|
export interface ConfigurationRecorder {
|
|
181
189
|
arn?: string | undefined;
|
|
182
190
|
name?: string | undefined;
|
|
@@ -185,10 +193,16 @@ export interface ConfigurationRecorder {
|
|
|
185
193
|
recordingMode?: RecordingMode | undefined;
|
|
186
194
|
recordingScope?: RecordingScope | undefined;
|
|
187
195
|
servicePrincipal?: string | undefined;
|
|
196
|
+
connectorArn?: string | undefined;
|
|
197
|
+
scopeConfiguration?: ScopeConfiguration | undefined;
|
|
188
198
|
}
|
|
189
199
|
export interface AssociateResourceTypesResponse {
|
|
190
200
|
ConfigurationRecorder: ConfigurationRecorder | undefined;
|
|
191
201
|
}
|
|
202
|
+
export interface AzureConnectorConfiguration {
|
|
203
|
+
tenantIdentifier: string | undefined;
|
|
204
|
+
clientIdentifier: string | undefined;
|
|
205
|
+
}
|
|
192
206
|
export interface BaseConfigurationItem {
|
|
193
207
|
version?: string | undefined;
|
|
194
208
|
accountId?: string | undefined;
|
|
@@ -387,6 +401,7 @@ export interface ConfigurationRecorderSummary {
|
|
|
387
401
|
name: string | undefined;
|
|
388
402
|
servicePrincipal?: string | undefined;
|
|
389
403
|
recordingScope: RecordingScope | undefined;
|
|
404
|
+
provider?: Provider | undefined;
|
|
390
405
|
}
|
|
391
406
|
export interface ConformancePackComplianceFilters {
|
|
392
407
|
ConfigRuleNames?: string[] | undefined;
|
|
@@ -451,6 +466,26 @@ export interface ConformancePackStatusDetail {
|
|
|
451
466
|
LastUpdateRequestedTime: Date | undefined;
|
|
452
467
|
LastUpdateCompletedTime?: Date | undefined;
|
|
453
468
|
}
|
|
469
|
+
export interface ConnectorConfiguration {
|
|
470
|
+
azure?: AzureConnectorConfiguration | undefined;
|
|
471
|
+
}
|
|
472
|
+
export interface Connector {
|
|
473
|
+
name: string | undefined;
|
|
474
|
+
arn: string | undefined;
|
|
475
|
+
connectorConfiguration: ConnectorConfiguration | undefined;
|
|
476
|
+
createdTime: Date | undefined;
|
|
477
|
+
}
|
|
478
|
+
export interface ConnectorFilter {
|
|
479
|
+
filterName?: ConnectorFilterName | undefined;
|
|
480
|
+
filterValues?: string[] | undefined;
|
|
481
|
+
}
|
|
482
|
+
export interface ConnectorSummary {
|
|
483
|
+
arn: string | undefined;
|
|
484
|
+
name: string | undefined;
|
|
485
|
+
provider: Provider | undefined;
|
|
486
|
+
tenantIdentifier: string | undefined;
|
|
487
|
+
createdTime: Date | undefined;
|
|
488
|
+
}
|
|
454
489
|
export interface DeleteAggregationAuthorizationRequest {
|
|
455
490
|
AuthorizedAccountId: string | undefined;
|
|
456
491
|
AuthorizedAwsRegion: string | undefined;
|
|
@@ -467,6 +502,9 @@ export interface DeleteConfigurationRecorderRequest {
|
|
|
467
502
|
export interface DeleteConformancePackRequest {
|
|
468
503
|
ConformancePackName: string | undefined;
|
|
469
504
|
}
|
|
505
|
+
export interface DeleteConnectorRequest {
|
|
506
|
+
Arn: string | undefined;
|
|
507
|
+
}
|
|
470
508
|
export interface DeleteDeliveryChannelRequest {
|
|
471
509
|
DeliveryChannelName: string | undefined;
|
|
472
510
|
}
|
|
@@ -512,7 +550,8 @@ export interface DeleteRetentionConfigurationRequest {
|
|
|
512
550
|
RetentionConfigurationName: string | undefined;
|
|
513
551
|
}
|
|
514
552
|
export interface DeleteServiceLinkedConfigurationRecorderRequest {
|
|
515
|
-
ServicePrincipal
|
|
553
|
+
ServicePrincipal?: string | undefined;
|
|
554
|
+
Arn?: string | undefined;
|
|
516
555
|
}
|
|
517
556
|
export interface DeleteServiceLinkedConfigurationRecorderResponse {
|
|
518
557
|
Arn: string | undefined;
|
|
@@ -611,8 +650,8 @@ export interface DescribeConfigRulesFilters {
|
|
|
611
650
|
}
|
|
612
651
|
export interface DescribeConfigRulesRequest {
|
|
613
652
|
ConfigRuleNames?: string[] | undefined;
|
|
614
|
-
NextToken?: string | undefined;
|
|
615
653
|
Filters?: DescribeConfigRulesFilters | undefined;
|
|
654
|
+
NextToken?: string | undefined;
|
|
616
655
|
}
|
|
617
656
|
export interface DescribeConfigRulesResponse {
|
|
618
657
|
ConfigRules?: ConfigRule[] | undefined;
|
|
@@ -1078,6 +1117,12 @@ export interface GetConformancePackComplianceSummaryResponse {
|
|
|
1078
1117
|
| undefined;
|
|
1079
1118
|
NextToken?: string | undefined;
|
|
1080
1119
|
}
|
|
1120
|
+
export interface GetConnectorRequest {
|
|
1121
|
+
Arn: string | undefined;
|
|
1122
|
+
}
|
|
1123
|
+
export interface GetConnectorResponse {
|
|
1124
|
+
Connector: Connector | undefined;
|
|
1125
|
+
}
|
|
1081
1126
|
export interface GetCustomRulePolicyRequest {
|
|
1082
1127
|
ConfigRuleName?: string | undefined;
|
|
1083
1128
|
}
|
|
@@ -1231,6 +1276,15 @@ export interface ListConformancePackComplianceScoresResponse {
|
|
|
1231
1276
|
NextToken?: string | undefined;
|
|
1232
1277
|
ConformancePackComplianceScores: ConformancePackComplianceScore[] | undefined;
|
|
1233
1278
|
}
|
|
1279
|
+
export interface ListConnectorsRequest {
|
|
1280
|
+
MaxResults?: number | undefined;
|
|
1281
|
+
NextToken?: string | undefined;
|
|
1282
|
+
Filters?: ConnectorFilter[] | undefined;
|
|
1283
|
+
}
|
|
1284
|
+
export interface ListConnectorsResponse {
|
|
1285
|
+
ConnectorSummaries: ConnectorSummary[] | undefined;
|
|
1286
|
+
NextToken?: string | undefined;
|
|
1287
|
+
}
|
|
1234
1288
|
export interface ListDiscoveredResourcesRequest {
|
|
1235
1289
|
resourceType: ResourceType | undefined;
|
|
1236
1290
|
resourceIds?: string[] | undefined;
|
|
@@ -1353,6 +1407,13 @@ export interface PutConformancePackRequest {
|
|
|
1353
1407
|
export interface PutConformancePackResponse {
|
|
1354
1408
|
ConformancePackArn?: string | undefined;
|
|
1355
1409
|
}
|
|
1410
|
+
export interface PutConnectorRequest {
|
|
1411
|
+
ConnectorConfiguration: ConnectorConfiguration | undefined;
|
|
1412
|
+
Tags?: Tag[] | undefined;
|
|
1413
|
+
}
|
|
1414
|
+
export interface PutConnectorResponse {
|
|
1415
|
+
Arn: string | undefined;
|
|
1416
|
+
}
|
|
1356
1417
|
export interface PutDeliveryChannelRequest {
|
|
1357
1418
|
DeliveryChannel: DeliveryChannel | undefined;
|
|
1358
1419
|
}
|
|
@@ -1439,6 +1500,16 @@ export interface PutStoredQueryRequest {
|
|
|
1439
1500
|
export interface PutStoredQueryResponse {
|
|
1440
1501
|
QueryArn?: string | undefined;
|
|
1441
1502
|
}
|
|
1503
|
+
export interface PutThirdPartyServiceLinkedConfigurationRecorderRequest {
|
|
1504
|
+
ServicePrincipal: string | undefined;
|
|
1505
|
+
ConnectorArn: string | undefined;
|
|
1506
|
+
ScopeConfiguration: ScopeConfiguration | undefined;
|
|
1507
|
+
Tags?: Tag[] | undefined;
|
|
1508
|
+
}
|
|
1509
|
+
export interface PutThirdPartyServiceLinkedConfigurationRecorderResponse {
|
|
1510
|
+
Arn: string | undefined;
|
|
1511
|
+
Name: string | undefined;
|
|
1512
|
+
}
|
|
1442
1513
|
export interface QueryInfo {
|
|
1443
1514
|
SelectFields?: FieldInfo[] | undefined;
|
|
1444
1515
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConnectorsCommandInput,
|
|
4
|
+
ListConnectorsCommandOutput,
|
|
5
|
+
} from "../commands/ListConnectorsCommand";
|
|
6
|
+
import { ConfigServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConnectors: (
|
|
8
|
+
config: ConfigServicePaginationConfiguration,
|
|
9
|
+
input: ListConnectorsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConnectorsCommandOutput>;
|
|
@@ -34,6 +34,7 @@ export * from "./GetResourceConfigHistoryPaginator";
|
|
|
34
34
|
export * from "./ListAggregateDiscoveredResourcesPaginator";
|
|
35
35
|
export * from "./ListConfigurationRecordersPaginator";
|
|
36
36
|
export * from "./ListConformancePackComplianceScoresPaginator";
|
|
37
|
+
export * from "./ListConnectorsPaginator";
|
|
37
38
|
export * from "./ListDiscoveredResourcesPaginator";
|
|
38
39
|
export * from "./ListResourceEvaluationsPaginator";
|
|
39
40
|
export * from "./ListStoredQueriesPaginator";
|
|
@@ -29,6 +29,7 @@ export declare var MaxActiveResourcesExceededException$: StaticErrorSchema;
|
|
|
29
29
|
export declare var MaxNumberOfConfigRulesExceededException$: StaticErrorSchema;
|
|
30
30
|
export declare var MaxNumberOfConfigurationRecordersExceededException$: StaticErrorSchema;
|
|
31
31
|
export declare var MaxNumberOfConformancePacksExceededException$: StaticErrorSchema;
|
|
32
|
+
export declare var MaxNumberOfConnectorsExceededException$: StaticErrorSchema;
|
|
32
33
|
export declare var MaxNumberOfDeliveryChannelsExceededException$: StaticErrorSchema;
|
|
33
34
|
export declare var MaxNumberOfOrganizationConfigRulesExceededException$: StaticErrorSchema;
|
|
34
35
|
export declare var MaxNumberOfOrganizationConformancePacksExceededException$: StaticErrorSchema;
|
|
@@ -80,6 +81,7 @@ export declare var AggregatorFilters$: StaticStructureSchema;
|
|
|
80
81
|
export declare var AggregatorFilterServicePrincipal$: StaticStructureSchema;
|
|
81
82
|
export declare var AssociateResourceTypesRequest$: StaticStructureSchema;
|
|
82
83
|
export declare var AssociateResourceTypesResponse$: StaticStructureSchema;
|
|
84
|
+
export declare var AzureConnectorConfiguration$: StaticStructureSchema;
|
|
83
85
|
export declare var BaseConfigurationItem$: StaticStructureSchema;
|
|
84
86
|
export declare var BatchGetAggregateResourceConfigRequest$: StaticStructureSchema;
|
|
85
87
|
export declare var BatchGetAggregateResourceConfigResponse$: StaticStructureSchema;
|
|
@@ -114,12 +116,17 @@ export declare var ConformancePackEvaluationResult$: StaticStructureSchema;
|
|
|
114
116
|
export declare var ConformancePackInputParameter$: StaticStructureSchema;
|
|
115
117
|
export declare var ConformancePackRuleCompliance$: StaticStructureSchema;
|
|
116
118
|
export declare var ConformancePackStatusDetail$: StaticStructureSchema;
|
|
119
|
+
export declare var Connector$: StaticStructureSchema;
|
|
120
|
+
export declare var ConnectorConfiguration$: StaticStructureSchema;
|
|
121
|
+
export declare var ConnectorFilter$: StaticStructureSchema;
|
|
122
|
+
export declare var ConnectorSummary$: StaticStructureSchema;
|
|
117
123
|
export declare var CustomPolicyDetails$: StaticStructureSchema;
|
|
118
124
|
export declare var DeleteAggregationAuthorizationRequest$: StaticStructureSchema;
|
|
119
125
|
export declare var DeleteConfigRuleRequest$: StaticStructureSchema;
|
|
120
126
|
export declare var DeleteConfigurationAggregatorRequest$: StaticStructureSchema;
|
|
121
127
|
export declare var DeleteConfigurationRecorderRequest$: StaticStructureSchema;
|
|
122
128
|
export declare var DeleteConformancePackRequest$: StaticStructureSchema;
|
|
129
|
+
export declare var DeleteConnectorRequest$: StaticStructureSchema;
|
|
123
130
|
export declare var DeleteDeliveryChannelRequest$: StaticStructureSchema;
|
|
124
131
|
export declare var DeleteEvaluationResultsRequest$: StaticStructureSchema;
|
|
125
132
|
export declare var DeleteEvaluationResultsResponse$: StaticStructureSchema;
|
|
@@ -228,6 +235,8 @@ export declare var GetConformancePackComplianceDetailsRequest$: StaticStructureS
|
|
|
228
235
|
export declare var GetConformancePackComplianceDetailsResponse$: StaticStructureSchema;
|
|
229
236
|
export declare var GetConformancePackComplianceSummaryRequest$: StaticStructureSchema;
|
|
230
237
|
export declare var GetConformancePackComplianceSummaryResponse$: StaticStructureSchema;
|
|
238
|
+
export declare var GetConnectorRequest$: StaticStructureSchema;
|
|
239
|
+
export declare var GetConnectorResponse$: StaticStructureSchema;
|
|
231
240
|
export declare var GetCustomRulePolicyRequest$: StaticStructureSchema;
|
|
232
241
|
export declare var GetCustomRulePolicyResponse$: StaticStructureSchema;
|
|
233
242
|
export declare var GetDiscoveredResourceCountsRequest$: StaticStructureSchema;
|
|
@@ -251,6 +260,8 @@ export declare var ListConfigurationRecordersRequest$: StaticStructureSchema;
|
|
|
251
260
|
export declare var ListConfigurationRecordersResponse$: StaticStructureSchema;
|
|
252
261
|
export declare var ListConformancePackComplianceScoresRequest$: StaticStructureSchema;
|
|
253
262
|
export declare var ListConformancePackComplianceScoresResponse$: StaticStructureSchema;
|
|
263
|
+
export declare var ListConnectorsRequest$: StaticStructureSchema;
|
|
264
|
+
export declare var ListConnectorsResponse$: StaticStructureSchema;
|
|
254
265
|
export declare var ListDiscoveredResourcesRequest$: StaticStructureSchema;
|
|
255
266
|
export declare var ListDiscoveredResourcesResponse$: StaticStructureSchema;
|
|
256
267
|
export declare var ListResourceEvaluationsRequest$: StaticStructureSchema;
|
|
@@ -280,6 +291,8 @@ export declare var PutConfigurationAggregatorResponse$: StaticStructureSchema;
|
|
|
280
291
|
export declare var PutConfigurationRecorderRequest$: StaticStructureSchema;
|
|
281
292
|
export declare var PutConformancePackRequest$: StaticStructureSchema;
|
|
282
293
|
export declare var PutConformancePackResponse$: StaticStructureSchema;
|
|
294
|
+
export declare var PutConnectorRequest$: StaticStructureSchema;
|
|
295
|
+
export declare var PutConnectorResponse$: StaticStructureSchema;
|
|
283
296
|
export declare var PutDeliveryChannelRequest$: StaticStructureSchema;
|
|
284
297
|
export declare var PutEvaluationsRequest$: StaticStructureSchema;
|
|
285
298
|
export declare var PutEvaluationsResponse$: StaticStructureSchema;
|
|
@@ -300,6 +313,8 @@ export declare var PutServiceLinkedConfigurationRecorderRequest$: StaticStructur
|
|
|
300
313
|
export declare var PutServiceLinkedConfigurationRecorderResponse$: StaticStructureSchema;
|
|
301
314
|
export declare var PutStoredQueryRequest$: StaticStructureSchema;
|
|
302
315
|
export declare var PutStoredQueryResponse$: StaticStructureSchema;
|
|
316
|
+
export declare var PutThirdPartyServiceLinkedConfigurationRecorderRequest$: StaticStructureSchema;
|
|
317
|
+
export declare var PutThirdPartyServiceLinkedConfigurationRecorderResponse$: StaticStructureSchema;
|
|
303
318
|
export declare var QueryInfo$: StaticStructureSchema;
|
|
304
319
|
export declare var RecordingGroup$: StaticStructureSchema;
|
|
305
320
|
export declare var RecordingMode$: StaticStructureSchema;
|
|
@@ -323,6 +338,7 @@ export declare var ResourceKey$: StaticStructureSchema;
|
|
|
323
338
|
export declare var ResourceValue$: StaticStructureSchema;
|
|
324
339
|
export declare var RetentionConfiguration$: StaticStructureSchema;
|
|
325
340
|
export declare var Scope$: StaticStructureSchema;
|
|
341
|
+
export declare var ScopeConfiguration$: StaticStructureSchema;
|
|
326
342
|
export declare var SelectAggregateResourceConfigRequest$: StaticStructureSchema;
|
|
327
343
|
export declare var SelectAggregateResourceConfigResponse$: StaticStructureSchema;
|
|
328
344
|
export declare var SelectResourceConfigRequest$: StaticStructureSchema;
|
|
@@ -355,6 +371,7 @@ export declare var DeleteConfigRule$: StaticOperationSchema;
|
|
|
355
371
|
export declare var DeleteConfigurationAggregator$: StaticOperationSchema;
|
|
356
372
|
export declare var DeleteConfigurationRecorder$: StaticOperationSchema;
|
|
357
373
|
export declare var DeleteConformancePack$: StaticOperationSchema;
|
|
374
|
+
export declare var DeleteConnector$: StaticOperationSchema;
|
|
358
375
|
export declare var DeleteDeliveryChannel$: StaticOperationSchema;
|
|
359
376
|
export declare var DeleteEvaluationResults$: StaticOperationSchema;
|
|
360
377
|
export declare var DeleteOrganizationConfigRule$: StaticOperationSchema;
|
|
@@ -404,6 +421,7 @@ export declare var GetComplianceSummaryByConfigRule$: StaticOperationSchema;
|
|
|
404
421
|
export declare var GetComplianceSummaryByResourceType$: StaticOperationSchema;
|
|
405
422
|
export declare var GetConformancePackComplianceDetails$: StaticOperationSchema;
|
|
406
423
|
export declare var GetConformancePackComplianceSummary$: StaticOperationSchema;
|
|
424
|
+
export declare var GetConnector$: StaticOperationSchema;
|
|
407
425
|
export declare var GetCustomRulePolicy$: StaticOperationSchema;
|
|
408
426
|
export declare var GetDiscoveredResourceCounts$: StaticOperationSchema;
|
|
409
427
|
export declare var GetOrganizationConfigRuleDetailedStatus$: StaticOperationSchema;
|
|
@@ -415,6 +433,7 @@ export declare var GetStoredQuery$: StaticOperationSchema;
|
|
|
415
433
|
export declare var ListAggregateDiscoveredResources$: StaticOperationSchema;
|
|
416
434
|
export declare var ListConfigurationRecorders$: StaticOperationSchema;
|
|
417
435
|
export declare var ListConformancePackComplianceScores$: StaticOperationSchema;
|
|
436
|
+
export declare var ListConnectors$: StaticOperationSchema;
|
|
418
437
|
export declare var ListDiscoveredResources$: StaticOperationSchema;
|
|
419
438
|
export declare var ListResourceEvaluations$: StaticOperationSchema;
|
|
420
439
|
export declare var ListStoredQueries$: StaticOperationSchema;
|
|
@@ -424,6 +443,7 @@ export declare var PutConfigRule$: StaticOperationSchema;
|
|
|
424
443
|
export declare var PutConfigurationAggregator$: StaticOperationSchema;
|
|
425
444
|
export declare var PutConfigurationRecorder$: StaticOperationSchema;
|
|
426
445
|
export declare var PutConformancePack$: StaticOperationSchema;
|
|
446
|
+
export declare var PutConnector$: StaticOperationSchema;
|
|
427
447
|
export declare var PutDeliveryChannel$: StaticOperationSchema;
|
|
428
448
|
export declare var PutEvaluations$: StaticOperationSchema;
|
|
429
449
|
export declare var PutExternalEvaluation$: StaticOperationSchema;
|
|
@@ -435,6 +455,7 @@ export declare var PutResourceConfig$: StaticOperationSchema;
|
|
|
435
455
|
export declare var PutRetentionConfiguration$: StaticOperationSchema;
|
|
436
456
|
export declare var PutServiceLinkedConfigurationRecorder$: StaticOperationSchema;
|
|
437
457
|
export declare var PutStoredQuery$: StaticOperationSchema;
|
|
458
|
+
export declare var PutThirdPartyServiceLinkedConfigurationRecorder$: StaticOperationSchema;
|
|
438
459
|
export declare var SelectAggregateResourceConfig$: StaticOperationSchema;
|
|
439
460
|
export declare var SelectResourceConfig$: StaticOperationSchema;
|
|
440
461
|
export declare var StartConfigRulesEvaluation$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-config-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Config Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1082.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"module": "./dist-es/index.js",
|
|
22
22
|
"sideEffects": false,
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@aws-sdk/core": "^3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.
|
|
27
|
-
"@smithy/core": "^3.29.
|
|
28
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
29
|
-
"@smithy/node-http-handler": "^4.9.
|
|
30
|
-
"@smithy/types": "^4.
|
|
24
|
+
"@aws-sdk/core": "^3.975.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.65",
|
|
26
|
+
"@aws-sdk/types": "^3.974.0",
|
|
27
|
+
"@smithy/core": "^3.29.2",
|
|
28
|
+
"@smithy/fetch-http-handler": "^5.6.4",
|
|
29
|
+
"@smithy/node-http-handler": "^4.9.4",
|
|
30
|
+
"@smithy/types": "^4.16.0",
|
|
31
31
|
"tslib": "^2.6.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|