@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
package/dist-cjs/index.js
CHANGED
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1081.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -273,6 +273,18 @@ class NoSuchConformancePackException extends ConfigServiceServiceException {
|
|
|
273
273
|
Object.setPrototypeOf(this, NoSuchConformancePackException.prototype);
|
|
274
274
|
}
|
|
275
275
|
}
|
|
276
|
+
class ResourceNotFoundException extends ConfigServiceServiceException {
|
|
277
|
+
name = "ResourceNotFoundException";
|
|
278
|
+
$fault = "client";
|
|
279
|
+
constructor(opts) {
|
|
280
|
+
super({
|
|
281
|
+
name: "ResourceNotFoundException",
|
|
282
|
+
$fault: "client",
|
|
283
|
+
...opts,
|
|
284
|
+
});
|
|
285
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
286
|
+
}
|
|
287
|
+
}
|
|
276
288
|
class LastDeliveryChannelDeleteFailedException extends ConfigServiceServiceException {
|
|
277
289
|
name = "LastDeliveryChannelDeleteFailedException";
|
|
278
290
|
$fault = "client";
|
|
@@ -405,18 +417,6 @@ class NoSuchRetentionConfigurationException extends ConfigServiceServiceExceptio
|
|
|
405
417
|
Object.setPrototypeOf(this, NoSuchRetentionConfigurationException.prototype);
|
|
406
418
|
}
|
|
407
419
|
}
|
|
408
|
-
class ResourceNotFoundException extends ConfigServiceServiceException {
|
|
409
|
-
name = "ResourceNotFoundException";
|
|
410
|
-
$fault = "client";
|
|
411
|
-
constructor(opts) {
|
|
412
|
-
super({
|
|
413
|
-
name: "ResourceNotFoundException",
|
|
414
|
-
$fault: "client",
|
|
415
|
-
...opts,
|
|
416
|
-
});
|
|
417
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
418
|
-
}
|
|
419
|
-
}
|
|
420
420
|
class InvalidLimitException extends ConfigServiceServiceException {
|
|
421
421
|
name = "InvalidLimitException";
|
|
422
422
|
$fault = "client";
|
|
@@ -681,6 +681,18 @@ class MaxNumberOfConformancePacksExceededException extends ConfigServiceServiceE
|
|
|
681
681
|
Object.setPrototypeOf(this, MaxNumberOfConformancePacksExceededException.prototype);
|
|
682
682
|
}
|
|
683
683
|
}
|
|
684
|
+
class MaxNumberOfConnectorsExceededException extends ConfigServiceServiceException {
|
|
685
|
+
name = "MaxNumberOfConnectorsExceededException";
|
|
686
|
+
$fault = "client";
|
|
687
|
+
constructor(opts) {
|
|
688
|
+
super({
|
|
689
|
+
name: "MaxNumberOfConnectorsExceededException",
|
|
690
|
+
$fault: "client",
|
|
691
|
+
...opts,
|
|
692
|
+
});
|
|
693
|
+
Object.setPrototypeOf(this, MaxNumberOfConnectorsExceededException.prototype);
|
|
694
|
+
}
|
|
695
|
+
}
|
|
684
696
|
class MaxNumberOfDeliveryChannelsExceededException extends ConfigServiceServiceException {
|
|
685
697
|
name = "MaxNumberOfDeliveryChannelsExceededException";
|
|
686
698
|
$fault = "client";
|
|
@@ -834,6 +846,7 @@ const _ACBCRg = "AggregateComplianceByConfigRules";
|
|
|
834
846
|
const _ACC = "AggregateComplianceCount";
|
|
835
847
|
const _ACCL = "AggregateComplianceCountList";
|
|
836
848
|
const _ACCg = "AggregateComplianceCounts";
|
|
849
|
+
const _ACCz = "AzureConnectorConfiguration";
|
|
837
850
|
const _ACPC = "AggregateConformancePackCompliance";
|
|
838
851
|
const _ACPCC = "AggregateConformancePackComplianceCount";
|
|
839
852
|
const _ACPCF = "AggregateConformancePackComplianceFilters";
|
|
@@ -874,6 +887,7 @@ const _CAL = "ConfigurationAggregatorList";
|
|
|
874
887
|
const _CAN = "ConfigurationAggregatorName";
|
|
875
888
|
const _CANo = "ConfigurationAggregatorNames";
|
|
876
889
|
const _CAo = "ConfigurationAggregators";
|
|
890
|
+
const _CAon = "ConnectorArn";
|
|
877
891
|
const _CB = "CreatedBy";
|
|
878
892
|
const _CBCR = "ComplianceByConfigRule";
|
|
879
893
|
const _CBCRo = "ComplianceByConfigRules";
|
|
@@ -883,10 +897,13 @@ const _CBS = "CreatedByService";
|
|
|
883
897
|
const _CC = "CappedCount";
|
|
884
898
|
const _CCC = "ComplianceContributorCount";
|
|
885
899
|
const _CCPC = "CompliantConformancePackCount";
|
|
900
|
+
const _CCo = "ConnectorConfiguration";
|
|
886
901
|
const _CE = "ConflictException";
|
|
887
902
|
const _CEDI = "ConfigExportDeliveryInfo";
|
|
888
903
|
const _CERP = "ConcurrentExecutionRatePercentage";
|
|
889
904
|
const _CEa = "CapExceeded";
|
|
905
|
+
const _CF = "ConnectorFilter";
|
|
906
|
+
const _CFL = "ConnectorFilterList";
|
|
890
907
|
const _CI = "ConfigurationItem";
|
|
891
908
|
const _CIL = "ConfigurationItemList";
|
|
892
909
|
const _CPA = "ConformancePackArn";
|
|
@@ -955,12 +972,15 @@ const _CSBRTo = "ComplianceSummariesByResourceType";
|
|
|
955
972
|
const _CSDI = "ConfigStreamDeliveryInfo";
|
|
956
973
|
const _CSDP = "ConfigSnapshotDeliveryProperties";
|
|
957
974
|
const _CST = "ComplianceSummaryTimestamp";
|
|
975
|
+
const _CSo = "ConnectorSummary";
|
|
976
|
+
const _CSon = "ConnectorSummaries";
|
|
958
977
|
const _CT = "ComplianceType";
|
|
959
978
|
const _CTl = "ClientToken";
|
|
960
979
|
const _CTo = "ComplianceTypes";
|
|
961
980
|
const _CTr = "CreationTime";
|
|
962
981
|
const _Co = "Controls";
|
|
963
|
-
const _Con = "
|
|
982
|
+
const _Con = "Connector";
|
|
983
|
+
const _Conf = "Configuration";
|
|
964
984
|
const _D = "Description";
|
|
965
985
|
const _DAA = "DeleteAggregationAuthorization";
|
|
966
986
|
const _DAAR = "DeleteAggregationAuthorizationRequest";
|
|
@@ -1002,7 +1022,7 @@ const _DCPS = "DescribeConformancePackStatus";
|
|
|
1002
1022
|
const _DCPSR = "DescribeConformancePackStatusRequest";
|
|
1003
1023
|
const _DCPSRe = "DescribeConformancePackStatusResponse";
|
|
1004
1024
|
const _DCPe = "DescribeConformancePacks";
|
|
1005
|
-
const _DCR = "
|
|
1025
|
+
const _DCR = "DeleteConnectorRequest";
|
|
1006
1026
|
const _DCRES = "DescribeConfigRuleEvaluationStatus";
|
|
1007
1027
|
const _DCRESR = "DescribeConfigRuleEvaluationStatusRequest";
|
|
1008
1028
|
const _DCRESRe = "DescribeConfigRuleEvaluationStatusResponse";
|
|
@@ -1016,7 +1036,8 @@ const _DCRRescri = "DescribeConfigurationRecordersResponse";
|
|
|
1016
1036
|
const _DCRS = "DescribeConfigurationRecorderStatus";
|
|
1017
1037
|
const _DCRSR = "DescribeConfigurationRecorderStatusRequest";
|
|
1018
1038
|
const _DCRSRe = "DescribeConfigurationRecorderStatusResponse";
|
|
1019
|
-
const _DCRe = "
|
|
1039
|
+
const _DCRe = "DeleteConfigRule";
|
|
1040
|
+
const _DCRel = "DeleteConfigurationRecorder";
|
|
1020
1041
|
const _DCRes = "DescribeConfigRules";
|
|
1021
1042
|
const _DCResc = "DescribeConfigurationRecorders";
|
|
1022
1043
|
const _DCS = "DeliveryChannelStatus";
|
|
@@ -1026,6 +1047,7 @@ const _DCSRe = "DeliverConfigSnapshotResponse";
|
|
|
1026
1047
|
const _DCSe = "DeliveryChannelsStatus";
|
|
1027
1048
|
const _DCSel = "DeliverConfigSnapshot";
|
|
1028
1049
|
const _DCe = "DeliveryChannels";
|
|
1050
|
+
const _DCel = "DeleteConnector";
|
|
1029
1051
|
const _DDC = "DeleteDeliveryChannel";
|
|
1030
1052
|
const _DDCR = "DeleteDeliveryChannelRequest";
|
|
1031
1053
|
const _DDCRe = "DescribeDeliveryChannelsRequest";
|
|
@@ -1153,6 +1175,7 @@ const _GARC = "GetAggregateResourceConfig";
|
|
|
1153
1175
|
const _GARCR = "GetAggregateResourceConfigRequest";
|
|
1154
1176
|
const _GARCRe = "GetAggregateResourceConfigResponse";
|
|
1155
1177
|
const _GBK = "GroupByKey";
|
|
1178
|
+
const _GC = "GetConnector";
|
|
1156
1179
|
const _GCDBCR = "GetComplianceDetailsByConfigRule";
|
|
1157
1180
|
const _GCDBCRR = "GetComplianceDetailsByConfigRuleRequest";
|
|
1158
1181
|
const _GCDBCRRe = "GetComplianceDetailsByConfigRuleResponse";
|
|
@@ -1165,9 +1188,11 @@ const _GCPCDRe = "GetConformancePackComplianceDetailsResponse";
|
|
|
1165
1188
|
const _GCPCS = "GetConformancePackComplianceSummary";
|
|
1166
1189
|
const _GCPCSR = "GetConformancePackComplianceSummaryRequest";
|
|
1167
1190
|
const _GCPCSRe = "GetConformancePackComplianceSummaryResponse";
|
|
1191
|
+
const _GCR = "GetConnectorRequest";
|
|
1168
1192
|
const _GCRP = "GetCustomRulePolicy";
|
|
1169
1193
|
const _GCRPR = "GetCustomRulePolicyRequest";
|
|
1170
1194
|
const _GCRPRe = "GetCustomRulePolicyResponse";
|
|
1195
|
+
const _GCRe = "GetConnectorResponse";
|
|
1171
1196
|
const _GCSBCR = "GetComplianceSummaryByConfigRule";
|
|
1172
1197
|
const _GCSBCRR = "GetComplianceSummaryByConfigRuleResponse";
|
|
1173
1198
|
const _GCSBRT = "GetComplianceSummaryByResourceType";
|
|
@@ -1221,12 +1246,15 @@ const _L = "Limit";
|
|
|
1221
1246
|
const _LADR = "ListAggregateDiscoveredResources";
|
|
1222
1247
|
const _LADRR = "ListAggregateDiscoveredResourcesRequest";
|
|
1223
1248
|
const _LADRRi = "ListAggregateDiscoveredResourcesResponse";
|
|
1249
|
+
const _LC = "ListConnectors";
|
|
1224
1250
|
const _LCPCS = "ListConformancePackComplianceScores";
|
|
1225
1251
|
const _LCPCSR = "ListConformancePackComplianceScoresRequest";
|
|
1226
1252
|
const _LCPCSRi = "ListConformancePackComplianceScoresResponse";
|
|
1227
|
-
const _LCR = "
|
|
1253
|
+
const _LCR = "ListConnectorsRequest";
|
|
1228
1254
|
const _LCRR = "ListConfigurationRecordersRequest";
|
|
1229
1255
|
const _LCRRi = "ListConfigurationRecordersResponse";
|
|
1256
|
+
const _LCRi = "ListConnectorsResponse";
|
|
1257
|
+
const _LCRis = "ListConfigurationRecorders";
|
|
1230
1258
|
const _LDCDFE = "LastDeliveryChannelDeleteFailedException";
|
|
1231
1259
|
const _LDLDS = "LastDebugLogDeliveryStatus";
|
|
1232
1260
|
const _LDLDSR = "LastDebugLogDeliveryStatusReason";
|
|
@@ -1263,6 +1291,7 @@ const _MAREE = "MaxActiveResourcesExceededException";
|
|
|
1263
1291
|
const _MARS = "MemberAccountRuleStatus";
|
|
1264
1292
|
const _MAS = "MemberAccountStatus";
|
|
1265
1293
|
const _MEF = "MaximumExecutionFrequency";
|
|
1294
|
+
const _MNOCEE = "MaxNumberOfConnectorsExceededException";
|
|
1266
1295
|
const _MNOCPEE = "MaxNumberOfConformancePacksExceededException";
|
|
1267
1296
|
const _MNOCREE = "MaxNumberOfConfigRulesExceededException";
|
|
1268
1297
|
const _MNOCREEa = "MaxNumberOfConfigurationRecordersExceededException";
|
|
@@ -1332,16 +1361,19 @@ const _PAARu = "PutAggregationAuthorizationResponse";
|
|
|
1332
1361
|
const _PAR = "PendingAggregationRequests";
|
|
1333
1362
|
const _PARL = "PendingAggregationRequestList";
|
|
1334
1363
|
const _PARe = "PendingAggregationRequest";
|
|
1364
|
+
const _PC = "PutConnector";
|
|
1335
1365
|
const _PCA = "PutConfigurationAggregator";
|
|
1336
1366
|
const _PCAR = "PutConfigurationAggregatorRequest";
|
|
1337
1367
|
const _PCARu = "PutConfigurationAggregatorResponse";
|
|
1338
1368
|
const _PCP = "PutConformancePack";
|
|
1339
1369
|
const _PCPR = "PutConformancePackRequest";
|
|
1340
1370
|
const _PCPRu = "PutConformancePackResponse";
|
|
1341
|
-
const _PCR = "
|
|
1371
|
+
const _PCR = "PutConnectorRequest";
|
|
1342
1372
|
const _PCRR = "PutConfigRuleRequest";
|
|
1343
1373
|
const _PCRRu = "PutConfigurationRecorderRequest";
|
|
1344
|
-
const _PCRu = "
|
|
1374
|
+
const _PCRu = "PutConnectorResponse";
|
|
1375
|
+
const _PCRut = "PutConfigRule";
|
|
1376
|
+
const _PCRuto = "PutConfigurationRecorder";
|
|
1345
1377
|
const _PDC = "PutDeliveryChannel";
|
|
1346
1378
|
const _PDCR = "PutDeliveryChannelRequest";
|
|
1347
1379
|
const _PE = "PutEvaluations";
|
|
@@ -1376,6 +1408,9 @@ const _PSQ = "PutStoredQuery";
|
|
|
1376
1408
|
const _PSQR = "PutStoredQueryRequest";
|
|
1377
1409
|
const _PSQRu = "PutStoredQueryResponse";
|
|
1378
1410
|
const _PT = "PolicyText";
|
|
1411
|
+
const _PTPSLCR = "PutThirdPartyServiceLinkedConfigurationRecorder";
|
|
1412
|
+
const _PTPSLCRR = "PutThirdPartyServiceLinkedConfigurationRecorderRequest";
|
|
1413
|
+
const _PTPSLCRRu = "PutThirdPartyServiceLinkedConfigurationRecorderResponse";
|
|
1379
1414
|
const _PV = "ParameterValue";
|
|
1380
1415
|
const _QA = "QueryArn";
|
|
1381
1416
|
const _QI = "QueryInfo";
|
|
@@ -1462,6 +1497,7 @@ const _SCRERt = "StartConfigRulesEvaluationResponse";
|
|
|
1462
1497
|
const _SCRR = "StartConfigurationRecorderRequest";
|
|
1463
1498
|
const _SCRRt = "StopConfigurationRecorderRequest";
|
|
1464
1499
|
const _SCRt = "StopConfigurationRecorder";
|
|
1500
|
+
const _SCc = "ScopeConfiguration";
|
|
1465
1501
|
const _SD = "StepDetails";
|
|
1466
1502
|
const _SDF = "StatusDetailFilters";
|
|
1467
1503
|
const _SDo = "SourceDetails";
|
|
@@ -1529,22 +1565,28 @@ const _Va = "Values";
|
|
|
1529
1565
|
const _a = "arn";
|
|
1530
1566
|
const _aI = "accountId";
|
|
1531
1567
|
const _aR = "awsRegion";
|
|
1568
|
+
const _aRl = "allRegions";
|
|
1532
1569
|
const _aS = "allSupported";
|
|
1533
1570
|
const _aZ = "availabilityZone";
|
|
1571
|
+
const _az = "azure";
|
|
1534
1572
|
const _bCI = "baseConfigurationItems";
|
|
1535
1573
|
const _c = "client";
|
|
1574
|
+
const _cA = "connectorArn";
|
|
1575
|
+
const _cC = "connectorConfiguration";
|
|
1536
1576
|
const _cHDI = "configHistoryDeliveryInfo";
|
|
1537
|
-
const _cI = "
|
|
1577
|
+
const _cI = "clientIdentifier";
|
|
1538
1578
|
const _cICT = "configurationItemCaptureTime";
|
|
1539
1579
|
const _cIDT = "configurationItemDeliveryTime";
|
|
1540
1580
|
const _cIMDH = "configurationItemMD5Hash";
|
|
1541
1581
|
const _cIS = "configurationItemStatus";
|
|
1582
|
+
const _cIo = "configurationItems";
|
|
1542
1583
|
const _cO = "chronologicalOrder";
|
|
1543
1584
|
const _cSDI = "configSnapshotDeliveryInfo";
|
|
1544
1585
|
const _cSDIo = "configStreamDeliveryInfo";
|
|
1545
1586
|
const _cSDP = "configSnapshotDeliveryProperties";
|
|
1546
1587
|
const _cSI = "configurationStateId";
|
|
1547
1588
|
const _cSIo = "configSnapshotId";
|
|
1589
|
+
const _cT = "createdTime";
|
|
1548
1590
|
const _co = "configuration";
|
|
1549
1591
|
const _cou = "count";
|
|
1550
1592
|
const _d = "description";
|
|
@@ -1555,9 +1597,11 @@ const _eBRT = "exclusionByResourceTypes";
|
|
|
1555
1597
|
const _eT = "earlierTime";
|
|
1556
1598
|
const _fN = "filterName";
|
|
1557
1599
|
const _fV = "filterValue";
|
|
1600
|
+
const _fVi = "filterValues";
|
|
1558
1601
|
const _hE = "httpError";
|
|
1559
1602
|
const _iDR = "includeDeletedResources";
|
|
1560
1603
|
const _iGRT = "includeGlobalResourceTypes";
|
|
1604
|
+
const _iR = "includedRegions";
|
|
1561
1605
|
const _l = "limit";
|
|
1562
1606
|
const _lAT = "lastAttemptTime";
|
|
1563
1607
|
const _lEC = "lastErrorCode";
|
|
@@ -1572,6 +1616,7 @@ const _m = "message";
|
|
|
1572
1616
|
const _n = "name";
|
|
1573
1617
|
const _nDT = "nextDeliveryTime";
|
|
1574
1618
|
const _nT = "nextToken";
|
|
1619
|
+
const _p = "provider";
|
|
1575
1620
|
const _r = "relationships";
|
|
1576
1621
|
const _rARN = "roleARN";
|
|
1577
1622
|
const _rC = "resourceCounts";
|
|
@@ -1596,12 +1641,16 @@ const _re = "recording";
|
|
|
1596
1641
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.configservice";
|
|
1597
1642
|
const _sBN = "s3BucketName";
|
|
1598
1643
|
const _sC = "supplementaryConfiguration";
|
|
1644
|
+
const _sCc = "scopeConfiguration";
|
|
1599
1645
|
const _sKKA = "s3KmsKeyArn";
|
|
1600
1646
|
const _sKP = "s3KeyPrefix";
|
|
1601
1647
|
const _sP = "servicePrincipal";
|
|
1648
|
+
const _sT = "scopeType";
|
|
1602
1649
|
const _sTARN = "snsTopicARN";
|
|
1650
|
+
const _sV = "scopeValues";
|
|
1603
1651
|
const _t = "tags";
|
|
1604
1652
|
const _tDR = "totalDiscoveredResources";
|
|
1653
|
+
const _tI = "tenantIdentifier";
|
|
1605
1654
|
const _uO = "useOnly";
|
|
1606
1655
|
const _uRK = "unprocessedResourceKeys";
|
|
1607
1656
|
const _v = "version";
|
|
@@ -1754,6 +1803,12 @@ var MaxNumberOfConformancePacksExceededException$ = [-3, n0, _MNOCPEE,
|
|
|
1754
1803
|
[0]
|
|
1755
1804
|
];
|
|
1756
1805
|
n0_registry.registerError(MaxNumberOfConformancePacksExceededException$, MaxNumberOfConformancePacksExceededException);
|
|
1806
|
+
var MaxNumberOfConnectorsExceededException$ = [-3, n0, _MNOCEE,
|
|
1807
|
+
{ [_e]: _c },
|
|
1808
|
+
[_m],
|
|
1809
|
+
[0]
|
|
1810
|
+
];
|
|
1811
|
+
n0_registry.registerError(MaxNumberOfConnectorsExceededException$, MaxNumberOfConnectorsExceededException);
|
|
1757
1812
|
var MaxNumberOfDeliveryChannelsExceededException$ = [-3, n0, _MNODCEE,
|
|
1758
1813
|
{ [_e]: _c },
|
|
1759
1814
|
[_m],
|
|
@@ -2040,6 +2095,11 @@ var AssociateResourceTypesResponse$ = [3, n0, _ARTRs,
|
|
|
2040
2095
|
[_CR],
|
|
2041
2096
|
[() => ConfigurationRecorder$], 1
|
|
2042
2097
|
];
|
|
2098
|
+
var AzureConnectorConfiguration$ = [3, n0, _ACCz,
|
|
2099
|
+
0,
|
|
2100
|
+
[_tI, _cI],
|
|
2101
|
+
[0, 0], 2
|
|
2102
|
+
];
|
|
2043
2103
|
var BaseConfigurationItem$ = [3, n0, _BCI,
|
|
2044
2104
|
0,
|
|
2045
2105
|
[_v, _aI, _cICT, _cIS, _cSI, _a, _rT, _rI, _rN, _aR, _aZ, _rCT, _co, _sC, _rF, _cIDT],
|
|
@@ -2142,8 +2202,8 @@ var ConfigurationItem$ = [3, n0, _CI,
|
|
|
2142
2202
|
];
|
|
2143
2203
|
var ConfigurationRecorder$ = [3, n0, _CR,
|
|
2144
2204
|
0,
|
|
2145
|
-
[_a, _n, _rARN, _rG, _rM, _rS, _sP],
|
|
2146
|
-
[0, 0, 0, () => RecordingGroup$, () => RecordingMode$, 0, 0]
|
|
2205
|
+
[_a, _n, _rARN, _rG, _rM, _rS, _sP, _cA, _sCc],
|
|
2206
|
+
[0, 0, 0, () => RecordingGroup$, () => RecordingMode$, 0, 0, 0, () => ScopeConfiguration$]
|
|
2147
2207
|
];
|
|
2148
2208
|
var ConfigurationRecorderFilter$ = [3, n0, _CRF,
|
|
2149
2209
|
0,
|
|
@@ -2157,8 +2217,8 @@ var ConfigurationRecorderStatus$ = [3, n0, _CRSo,
|
|
|
2157
2217
|
];
|
|
2158
2218
|
var ConfigurationRecorderSummary$ = [3, n0, _CRSon,
|
|
2159
2219
|
0,
|
|
2160
|
-
[_a, _n, _rS, _sP],
|
|
2161
|
-
[0, 0, 0, 0], 3
|
|
2220
|
+
[_a, _n, _rS, _sP, _p],
|
|
2221
|
+
[0, 0, 0, 0, 0], 3
|
|
2162
2222
|
];
|
|
2163
2223
|
var ConformancePackComplianceFilters$ = [3, n0, _CPCF,
|
|
2164
2224
|
0,
|
|
@@ -2210,6 +2270,26 @@ var ConformancePackStatusDetail$ = [3, n0, _CPSD,
|
|
|
2210
2270
|
[_CPN, _CPI, _CPA, _CPS, _SA, _LURT, _CPSR, _LUCT],
|
|
2211
2271
|
[0, 0, 0, 0, 0, 4, 0, 4], 6
|
|
2212
2272
|
];
|
|
2273
|
+
var Connector$ = [3, n0, _Con,
|
|
2274
|
+
0,
|
|
2275
|
+
[_n, _a, _cC, _cT],
|
|
2276
|
+
[0, 0, () => ConnectorConfiguration$, 4], 4
|
|
2277
|
+
];
|
|
2278
|
+
var ConnectorConfiguration$ = [3, n0, _CCo,
|
|
2279
|
+
0,
|
|
2280
|
+
[_az],
|
|
2281
|
+
[() => AzureConnectorConfiguration$]
|
|
2282
|
+
];
|
|
2283
|
+
var ConnectorFilter$ = [3, n0, _CF,
|
|
2284
|
+
0,
|
|
2285
|
+
[_fN, _fVi],
|
|
2286
|
+
[0, 64 | 0]
|
|
2287
|
+
];
|
|
2288
|
+
var ConnectorSummary$ = [3, n0, _CSo,
|
|
2289
|
+
0,
|
|
2290
|
+
[_a, _n, _p, _tI, _cT],
|
|
2291
|
+
[0, 0, 0, 0, 4], 5
|
|
2292
|
+
];
|
|
2213
2293
|
var CustomPolicyDetails$ = [3, n0, _CPDu,
|
|
2214
2294
|
0,
|
|
2215
2295
|
[_PR, _PT, _EDLD],
|
|
@@ -2240,6 +2320,11 @@ var DeleteConformancePackRequest$ = [3, n0, _DCPR,
|
|
|
2240
2320
|
[_CPN],
|
|
2241
2321
|
[0], 1
|
|
2242
2322
|
];
|
|
2323
|
+
var DeleteConnectorRequest$ = [3, n0, _DCR,
|
|
2324
|
+
0,
|
|
2325
|
+
[_Ar],
|
|
2326
|
+
[0], 1
|
|
2327
|
+
];
|
|
2243
2328
|
var DeleteDeliveryChannelRequest$ = [3, n0, _DDCR,
|
|
2244
2329
|
0,
|
|
2245
2330
|
[_DCN],
|
|
@@ -2302,8 +2387,8 @@ var DeleteRetentionConfigurationRequest$ = [3, n0, _DRCRele,
|
|
|
2302
2387
|
];
|
|
2303
2388
|
var DeleteServiceLinkedConfigurationRecorderRequest$ = [3, n0, _DSLCRR,
|
|
2304
2389
|
0,
|
|
2305
|
-
[_SP],
|
|
2306
|
-
[0
|
|
2390
|
+
[_SP, _Ar],
|
|
2391
|
+
[0, 0]
|
|
2307
2392
|
];
|
|
2308
2393
|
var DeleteServiceLinkedConfigurationRecorderResponse$ = [3, n0, _DSLCRRe,
|
|
2309
2394
|
0,
|
|
@@ -2407,8 +2492,8 @@ var DescribeConfigRulesFilters$ = [3, n0, _DCRF,
|
|
|
2407
2492
|
];
|
|
2408
2493
|
var DescribeConfigRulesRequest$ = [3, n0, _DCRRes,
|
|
2409
2494
|
0,
|
|
2410
|
-
[_CRNo,
|
|
2411
|
-
[64 | 0,
|
|
2495
|
+
[_CRNo, _F, _NT],
|
|
2496
|
+
[64 | 0, () => DescribeConfigRulesFilters$, 0]
|
|
2412
2497
|
];
|
|
2413
2498
|
var DescribeConfigRulesResponse$ = [3, n0, _DCRResc,
|
|
2414
2499
|
0,
|
|
@@ -2780,6 +2865,16 @@ var GetConformancePackComplianceSummaryResponse$ = [3, n0, _GCPCSRe,
|
|
|
2780
2865
|
[_CPCSL, _NT],
|
|
2781
2866
|
[() => ConformancePackComplianceSummaryList, 0]
|
|
2782
2867
|
];
|
|
2868
|
+
var GetConnectorRequest$ = [3, n0, _GCR,
|
|
2869
|
+
0,
|
|
2870
|
+
[_Ar],
|
|
2871
|
+
[0], 1
|
|
2872
|
+
];
|
|
2873
|
+
var GetConnectorResponse$ = [3, n0, _GCRe,
|
|
2874
|
+
0,
|
|
2875
|
+
[_Con],
|
|
2876
|
+
[() => Connector$], 1
|
|
2877
|
+
];
|
|
2783
2878
|
var GetCustomRulePolicyRequest$ = [3, n0, _GCRPR,
|
|
2784
2879
|
0,
|
|
2785
2880
|
[_CRN],
|
|
@@ -2837,7 +2932,7 @@ var GetResourceConfigHistoryRequest$ = [3, n0, _GRCHR,
|
|
|
2837
2932
|
];
|
|
2838
2933
|
var GetResourceConfigHistoryResponse$ = [3, n0, _GRCHRe,
|
|
2839
2934
|
0,
|
|
2840
|
-
[
|
|
2935
|
+
[_cIo, _nT],
|
|
2841
2936
|
[() => ConfigurationItemList, 0]
|
|
2842
2937
|
];
|
|
2843
2938
|
var GetResourceEvaluationSummaryRequest$ = [3, n0, _GRESR,
|
|
@@ -2895,6 +2990,16 @@ var ListConformancePackComplianceScoresResponse$ = [3, n0, _LCPCSRi,
|
|
|
2895
2990
|
[_CPCSonf, _NT],
|
|
2896
2991
|
[() => ConformancePackComplianceScores, 0], 1
|
|
2897
2992
|
];
|
|
2993
|
+
var ListConnectorsRequest$ = [3, n0, _LCR,
|
|
2994
|
+
0,
|
|
2995
|
+
[_MR, _NT, _F],
|
|
2996
|
+
[1, 0, () => ConnectorFilterList]
|
|
2997
|
+
];
|
|
2998
|
+
var ListConnectorsResponse$ = [3, n0, _LCRi,
|
|
2999
|
+
0,
|
|
3000
|
+
[_CSon, _NT],
|
|
3001
|
+
[() => ConnectorSummaries, 0], 1
|
|
3002
|
+
];
|
|
2898
3003
|
var ListDiscoveredResourcesRequest$ = [3, n0, _LDRR,
|
|
2899
3004
|
0,
|
|
2900
3005
|
[_rT, _rIe, _rN, _l, _iDR, _nT],
|
|
@@ -3040,6 +3145,16 @@ var PutConformancePackResponse$ = [3, n0, _PCPRu,
|
|
|
3040
3145
|
[_CPA],
|
|
3041
3146
|
[0]
|
|
3042
3147
|
];
|
|
3148
|
+
var PutConnectorRequest$ = [3, n0, _PCR,
|
|
3149
|
+
0,
|
|
3150
|
+
[_CCo, _Ta],
|
|
3151
|
+
[() => ConnectorConfiguration$, () => TagsList], 1
|
|
3152
|
+
];
|
|
3153
|
+
var PutConnectorResponse$ = [3, n0, _PCRu,
|
|
3154
|
+
0,
|
|
3155
|
+
[_Ar],
|
|
3156
|
+
[0], 1
|
|
3157
|
+
];
|
|
3043
3158
|
var PutDeliveryChannelRequest$ = [3, n0, _PDCR,
|
|
3044
3159
|
0,
|
|
3045
3160
|
[_DC],
|
|
@@ -3107,7 +3222,7 @@ var PutRemediationExceptionsResponse$ = [3, n0, _PRERu,
|
|
|
3107
3222
|
];
|
|
3108
3223
|
var PutResourceConfigRequest$ = [3, n0, _PRCRut,
|
|
3109
3224
|
0,
|
|
3110
|
-
[_RT, _SVI, _RI,
|
|
3225
|
+
[_RT, _SVI, _RI, _Conf, _RN, _Ta],
|
|
3111
3226
|
[0, 0, 0, 0, 0, 128 | 0], 4
|
|
3112
3227
|
];
|
|
3113
3228
|
var PutRetentionConfigurationRequest$ = [3, n0, _PRCRute,
|
|
@@ -3140,6 +3255,16 @@ var PutStoredQueryResponse$ = [3, n0, _PSQRu,
|
|
|
3140
3255
|
[_QA],
|
|
3141
3256
|
[0]
|
|
3142
3257
|
];
|
|
3258
|
+
var PutThirdPartyServiceLinkedConfigurationRecorderRequest$ = [3, n0, _PTPSLCRR,
|
|
3259
|
+
0,
|
|
3260
|
+
[_SP, _CAon, _SCc, _Ta],
|
|
3261
|
+
[0, 0, () => ScopeConfiguration$, () => TagsList], 3
|
|
3262
|
+
];
|
|
3263
|
+
var PutThirdPartyServiceLinkedConfigurationRecorderResponse$ = [3, n0, _PTPSLCRRu,
|
|
3264
|
+
0,
|
|
3265
|
+
[_Ar, _N],
|
|
3266
|
+
[0, 0], 2
|
|
3267
|
+
];
|
|
3143
3268
|
var QueryInfo$ = [3, n0, _QI,
|
|
3144
3269
|
0,
|
|
3145
3270
|
[_SF],
|
|
@@ -3255,6 +3380,11 @@ var Scope$ = [3, n0, _Sc,
|
|
|
3255
3380
|
[_CRTo, _TK, _TVa, _CRIo, _SPe],
|
|
3256
3381
|
[64 | 0, 0, 0, 0, 64 | 0]
|
|
3257
3382
|
];
|
|
3383
|
+
var ScopeConfiguration$ = [3, n0, _SCc,
|
|
3384
|
+
0,
|
|
3385
|
+
[_sT, _aRl, _sV, _iR],
|
|
3386
|
+
[0, 2, 64 | 0, 64 | 0], 2
|
|
3387
|
+
];
|
|
3258
3388
|
var SelectAggregateResourceConfigRequest$ = [3, n0, _SARCR,
|
|
3259
3389
|
0,
|
|
3260
3390
|
[_Ex, _CAN, _L, _MR, _NT],
|
|
@@ -3457,6 +3587,12 @@ var ConformancePackRuleEvaluationResultsList = [1, n0, _CPRERL,
|
|
|
3457
3587
|
var ConformancePackStatusDetailsList = [1, n0, _CPSDL,
|
|
3458
3588
|
0, () => ConformancePackStatusDetail$
|
|
3459
3589
|
];
|
|
3590
|
+
var ConnectorFilterList = [1, n0, _CFL,
|
|
3591
|
+
0, () => ConnectorFilter$
|
|
3592
|
+
];
|
|
3593
|
+
var ConnectorSummaries = [1, n0, _CSon,
|
|
3594
|
+
0, () => ConnectorSummary$
|
|
3595
|
+
];
|
|
3460
3596
|
var DeliveryChannelList = [1, n0, _DCL,
|
|
3461
3597
|
0, () => DeliveryChannel$
|
|
3462
3598
|
];
|
|
@@ -3580,18 +3716,21 @@ var BatchGetResourceConfig$ = [9, n0, _BGRC,
|
|
|
3580
3716
|
var DeleteAggregationAuthorization$ = [9, n0, _DAA,
|
|
3581
3717
|
0, () => DeleteAggregationAuthorizationRequest$, () => __Unit
|
|
3582
3718
|
];
|
|
3583
|
-
var DeleteConfigRule$ = [9, n0,
|
|
3719
|
+
var DeleteConfigRule$ = [9, n0, _DCRe,
|
|
3584
3720
|
0, () => DeleteConfigRuleRequest$, () => __Unit
|
|
3585
3721
|
];
|
|
3586
3722
|
var DeleteConfigurationAggregator$ = [9, n0, _DCA,
|
|
3587
3723
|
0, () => DeleteConfigurationAggregatorRequest$, () => __Unit
|
|
3588
3724
|
];
|
|
3589
|
-
var DeleteConfigurationRecorder$ = [9, n0,
|
|
3725
|
+
var DeleteConfigurationRecorder$ = [9, n0, _DCRel,
|
|
3590
3726
|
0, () => DeleteConfigurationRecorderRequest$, () => __Unit
|
|
3591
3727
|
];
|
|
3592
3728
|
var DeleteConformancePack$ = [9, n0, _DCP,
|
|
3593
3729
|
0, () => DeleteConformancePackRequest$, () => __Unit
|
|
3594
3730
|
];
|
|
3731
|
+
var DeleteConnector$ = [9, n0, _DCel,
|
|
3732
|
+
0, () => DeleteConnectorRequest$, () => __Unit
|
|
3733
|
+
];
|
|
3595
3734
|
var DeleteDeliveryChannel$ = [9, n0, _DDC,
|
|
3596
3735
|
0, () => DeleteDeliveryChannelRequest$, () => __Unit
|
|
3597
3736
|
];
|
|
@@ -3739,6 +3878,9 @@ var GetConformancePackComplianceDetails$ = [9, n0, _GCPCD,
|
|
|
3739
3878
|
var GetConformancePackComplianceSummary$ = [9, n0, _GCPCS,
|
|
3740
3879
|
0, () => GetConformancePackComplianceSummaryRequest$, () => GetConformancePackComplianceSummaryResponse$
|
|
3741
3880
|
];
|
|
3881
|
+
var GetConnector$ = [9, n0, _GC,
|
|
3882
|
+
0, () => GetConnectorRequest$, () => GetConnectorResponse$
|
|
3883
|
+
];
|
|
3742
3884
|
var GetCustomRulePolicy$ = [9, n0, _GCRP,
|
|
3743
3885
|
0, () => GetCustomRulePolicyRequest$, () => GetCustomRulePolicyResponse$
|
|
3744
3886
|
];
|
|
@@ -3766,12 +3908,15 @@ var GetStoredQuery$ = [9, n0, _GSQ,
|
|
|
3766
3908
|
var ListAggregateDiscoveredResources$ = [9, n0, _LADR,
|
|
3767
3909
|
0, () => ListAggregateDiscoveredResourcesRequest$, () => ListAggregateDiscoveredResourcesResponse$
|
|
3768
3910
|
];
|
|
3769
|
-
var ListConfigurationRecorders$ = [9, n0,
|
|
3911
|
+
var ListConfigurationRecorders$ = [9, n0, _LCRis,
|
|
3770
3912
|
0, () => ListConfigurationRecordersRequest$, () => ListConfigurationRecordersResponse$
|
|
3771
3913
|
];
|
|
3772
3914
|
var ListConformancePackComplianceScores$ = [9, n0, _LCPCS,
|
|
3773
3915
|
0, () => ListConformancePackComplianceScoresRequest$, () => ListConformancePackComplianceScoresResponse$
|
|
3774
3916
|
];
|
|
3917
|
+
var ListConnectors$ = [9, n0, _LC,
|
|
3918
|
+
0, () => ListConnectorsRequest$, () => ListConnectorsResponse$
|
|
3919
|
+
];
|
|
3775
3920
|
var ListDiscoveredResources$ = [9, n0, _LDR,
|
|
3776
3921
|
0, () => ListDiscoveredResourcesRequest$, () => ListDiscoveredResourcesResponse$
|
|
3777
3922
|
];
|
|
@@ -3787,18 +3932,21 @@ var ListTagsForResource$ = [9, n0, _LTFR,
|
|
|
3787
3932
|
var PutAggregationAuthorization$ = [9, n0, _PAA,
|
|
3788
3933
|
0, () => PutAggregationAuthorizationRequest$, () => PutAggregationAuthorizationResponse$
|
|
3789
3934
|
];
|
|
3790
|
-
var PutConfigRule$ = [9, n0,
|
|
3935
|
+
var PutConfigRule$ = [9, n0, _PCRut,
|
|
3791
3936
|
0, () => PutConfigRuleRequest$, () => __Unit
|
|
3792
3937
|
];
|
|
3793
3938
|
var PutConfigurationAggregator$ = [9, n0, _PCA,
|
|
3794
3939
|
0, () => PutConfigurationAggregatorRequest$, () => PutConfigurationAggregatorResponse$
|
|
3795
3940
|
];
|
|
3796
|
-
var PutConfigurationRecorder$ = [9, n0,
|
|
3941
|
+
var PutConfigurationRecorder$ = [9, n0, _PCRuto,
|
|
3797
3942
|
0, () => PutConfigurationRecorderRequest$, () => __Unit
|
|
3798
3943
|
];
|
|
3799
3944
|
var PutConformancePack$ = [9, n0, _PCP,
|
|
3800
3945
|
0, () => PutConformancePackRequest$, () => PutConformancePackResponse$
|
|
3801
3946
|
];
|
|
3947
|
+
var PutConnector$ = [9, n0, _PC,
|
|
3948
|
+
0, () => PutConnectorRequest$, () => PutConnectorResponse$
|
|
3949
|
+
];
|
|
3802
3950
|
var PutDeliveryChannel$ = [9, n0, _PDC,
|
|
3803
3951
|
0, () => PutDeliveryChannelRequest$, () => __Unit
|
|
3804
3952
|
];
|
|
@@ -3832,6 +3980,9 @@ var PutServiceLinkedConfigurationRecorder$ = [9, n0, _PSLCR,
|
|
|
3832
3980
|
var PutStoredQuery$ = [9, n0, _PSQ,
|
|
3833
3981
|
0, () => PutStoredQueryRequest$, () => PutStoredQueryResponse$
|
|
3834
3982
|
];
|
|
3983
|
+
var PutThirdPartyServiceLinkedConfigurationRecorder$ = [9, n0, _PTPSLCR,
|
|
3984
|
+
0, () => PutThirdPartyServiceLinkedConfigurationRecorderRequest$, () => PutThirdPartyServiceLinkedConfigurationRecorderResponse$
|
|
3985
|
+
];
|
|
3835
3986
|
var SelectAggregateResourceConfig$ = [9, n0, _SARC,
|
|
3836
3987
|
0, () => SelectAggregateResourceConfigRequest$, () => SelectAggregateResourceConfigResponse$
|
|
3837
3988
|
];
|
|
@@ -4035,6 +4186,9 @@ class DeleteConfigurationRecorderCommand extends command(_ep0, _mw0, "DeleteConf
|
|
|
4035
4186
|
class DeleteConformancePackCommand extends command(_ep0, _mw0, "DeleteConformancePack", DeleteConformancePack$) {
|
|
4036
4187
|
}
|
|
4037
4188
|
|
|
4189
|
+
class DeleteConnectorCommand extends command(_ep0, _mw0, "DeleteConnector", DeleteConnector$) {
|
|
4190
|
+
}
|
|
4191
|
+
|
|
4038
4192
|
class DeleteDeliveryChannelCommand extends command(_ep0, _mw0, "DeleteDeliveryChannel", DeleteDeliveryChannel$) {
|
|
4039
4193
|
}
|
|
4040
4194
|
|
|
@@ -4182,6 +4336,9 @@ class GetConformancePackComplianceDetailsCommand extends command(_ep0, _mw0, "Ge
|
|
|
4182
4336
|
class GetConformancePackComplianceSummaryCommand extends command(_ep0, _mw0, "GetConformancePackComplianceSummary", GetConformancePackComplianceSummary$) {
|
|
4183
4337
|
}
|
|
4184
4338
|
|
|
4339
|
+
class GetConnectorCommand extends command(_ep0, _mw0, "GetConnector", GetConnector$) {
|
|
4340
|
+
}
|
|
4341
|
+
|
|
4185
4342
|
class GetCustomRulePolicyCommand extends command(_ep0, _mw0, "GetCustomRulePolicy", GetCustomRulePolicy$) {
|
|
4186
4343
|
}
|
|
4187
4344
|
|
|
@@ -4215,6 +4372,9 @@ class ListConfigurationRecordersCommand extends command(_ep0, _mw0, "ListConfigu
|
|
|
4215
4372
|
class ListConformancePackComplianceScoresCommand extends command(_ep0, _mw0, "ListConformancePackComplianceScores", ListConformancePackComplianceScores$) {
|
|
4216
4373
|
}
|
|
4217
4374
|
|
|
4375
|
+
class ListConnectorsCommand extends command(_ep0, _mw0, "ListConnectors", ListConnectors$) {
|
|
4376
|
+
}
|
|
4377
|
+
|
|
4218
4378
|
class ListDiscoveredResourcesCommand extends command(_ep0, _mw0, "ListDiscoveredResources", ListDiscoveredResources$) {
|
|
4219
4379
|
}
|
|
4220
4380
|
|
|
@@ -4242,6 +4402,9 @@ class PutConfigurationRecorderCommand extends command(_ep0, _mw0, "PutConfigurat
|
|
|
4242
4402
|
class PutConformancePackCommand extends command(_ep0, _mw0, "PutConformancePack", PutConformancePack$) {
|
|
4243
4403
|
}
|
|
4244
4404
|
|
|
4405
|
+
class PutConnectorCommand extends command(_ep0, _mw0, "PutConnector", PutConnector$) {
|
|
4406
|
+
}
|
|
4407
|
+
|
|
4245
4408
|
class PutDeliveryChannelCommand extends command(_ep0, _mw0, "PutDeliveryChannel", PutDeliveryChannel$) {
|
|
4246
4409
|
}
|
|
4247
4410
|
|
|
@@ -4275,6 +4438,9 @@ class PutServiceLinkedConfigurationRecorderCommand extends command(_ep0, _mw0, "
|
|
|
4275
4438
|
class PutStoredQueryCommand extends command(_ep0, _mw0, "PutStoredQuery", PutStoredQuery$) {
|
|
4276
4439
|
}
|
|
4277
4440
|
|
|
4441
|
+
class PutThirdPartyServiceLinkedConfigurationRecorderCommand extends command(_ep0, _mw0, "PutThirdPartyServiceLinkedConfigurationRecorder", PutThirdPartyServiceLinkedConfigurationRecorder$) {
|
|
4442
|
+
}
|
|
4443
|
+
|
|
4278
4444
|
class SelectAggregateResourceConfigCommand extends command(_ep0, _mw0, "SelectAggregateResourceConfig", SelectAggregateResourceConfig$) {
|
|
4279
4445
|
}
|
|
4280
4446
|
|
|
@@ -4372,6 +4538,8 @@ const paginateListConfigurationRecorders = createPaginator(ConfigServiceClient,
|
|
|
4372
4538
|
|
|
4373
4539
|
const paginateListConformancePackComplianceScores = createPaginator(ConfigServiceClient, ListConformancePackComplianceScoresCommand, "NextToken", "NextToken", "Limit");
|
|
4374
4540
|
|
|
4541
|
+
const paginateListConnectors = createPaginator(ConfigServiceClient, ListConnectorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4542
|
+
|
|
4375
4543
|
const paginateListDiscoveredResources = createPaginator(ConfigServiceClient, ListDiscoveredResourcesCommand, "nextToken", "nextToken", "limit");
|
|
4376
4544
|
|
|
4377
4545
|
const paginateListResourceEvaluations = createPaginator(ConfigServiceClient, ListResourceEvaluationsCommand, "NextToken", "NextToken", "Limit");
|
|
@@ -4393,6 +4561,7 @@ const commands = {
|
|
|
4393
4561
|
DeleteConfigurationAggregatorCommand,
|
|
4394
4562
|
DeleteConfigurationRecorderCommand,
|
|
4395
4563
|
DeleteConformancePackCommand,
|
|
4564
|
+
DeleteConnectorCommand,
|
|
4396
4565
|
DeleteDeliveryChannelCommand,
|
|
4397
4566
|
DeleteEvaluationResultsCommand,
|
|
4398
4567
|
DeleteOrganizationConfigRuleCommand,
|
|
@@ -4442,6 +4611,7 @@ const commands = {
|
|
|
4442
4611
|
GetComplianceSummaryByResourceTypeCommand,
|
|
4443
4612
|
GetConformancePackComplianceDetailsCommand,
|
|
4444
4613
|
GetConformancePackComplianceSummaryCommand,
|
|
4614
|
+
GetConnectorCommand,
|
|
4445
4615
|
GetCustomRulePolicyCommand,
|
|
4446
4616
|
GetDiscoveredResourceCountsCommand,
|
|
4447
4617
|
GetOrganizationConfigRuleDetailedStatusCommand,
|
|
@@ -4453,6 +4623,7 @@ const commands = {
|
|
|
4453
4623
|
ListAggregateDiscoveredResourcesCommand,
|
|
4454
4624
|
ListConfigurationRecordersCommand,
|
|
4455
4625
|
ListConformancePackComplianceScoresCommand,
|
|
4626
|
+
ListConnectorsCommand,
|
|
4456
4627
|
ListDiscoveredResourcesCommand,
|
|
4457
4628
|
ListResourceEvaluationsCommand,
|
|
4458
4629
|
ListStoredQueriesCommand,
|
|
@@ -4462,6 +4633,7 @@ const commands = {
|
|
|
4462
4633
|
PutConfigurationAggregatorCommand,
|
|
4463
4634
|
PutConfigurationRecorderCommand,
|
|
4464
4635
|
PutConformancePackCommand,
|
|
4636
|
+
PutConnectorCommand,
|
|
4465
4637
|
PutDeliveryChannelCommand,
|
|
4466
4638
|
PutEvaluationsCommand,
|
|
4467
4639
|
PutExternalEvaluationCommand,
|
|
@@ -4473,6 +4645,7 @@ const commands = {
|
|
|
4473
4645
|
PutRetentionConfigurationCommand,
|
|
4474
4646
|
PutServiceLinkedConfigurationRecorderCommand,
|
|
4475
4647
|
PutStoredQueryCommand,
|
|
4648
|
+
PutThirdPartyServiceLinkedConfigurationRecorderCommand,
|
|
4476
4649
|
SelectAggregateResourceConfigCommand,
|
|
4477
4650
|
SelectResourceConfigCommand,
|
|
4478
4651
|
StartConfigRulesEvaluationCommand,
|
|
@@ -4519,6 +4692,7 @@ const paginators = {
|
|
|
4519
4692
|
paginateListAggregateDiscoveredResources,
|
|
4520
4693
|
paginateListConfigurationRecorders,
|
|
4521
4694
|
paginateListConformancePackComplianceScores,
|
|
4695
|
+
paginateListConnectors,
|
|
4522
4696
|
paginateListDiscoveredResources,
|
|
4523
4697
|
paginateListResourceEvaluations,
|
|
4524
4698
|
paginateListStoredQueries,
|
|
@@ -5169,6 +5343,9 @@ const RecorderStatus = {
|
|
|
5169
5343
|
Pending: "Pending",
|
|
5170
5344
|
Success: "Success",
|
|
5171
5345
|
};
|
|
5346
|
+
const Provider = {
|
|
5347
|
+
AZURE: "AZURE",
|
|
5348
|
+
};
|
|
5172
5349
|
const ConformancePackState = {
|
|
5173
5350
|
CREATE_COMPLETE: "CREATE_COMPLETE",
|
|
5174
5351
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -5176,6 +5353,9 @@ const ConformancePackState = {
|
|
|
5176
5353
|
DELETE_FAILED: "DELETE_FAILED",
|
|
5177
5354
|
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
5178
5355
|
};
|
|
5356
|
+
const ConnectorFilterName = {
|
|
5357
|
+
provider: "provider",
|
|
5358
|
+
};
|
|
5179
5359
|
const OrganizationConfigRuleTriggerTypeNoSN = {
|
|
5180
5360
|
CONFIGURATION_ITEM_CHANGE_NOTIFICATION: "ConfigurationItemChangeNotification",
|
|
5181
5361
|
OVERSIZED_CONFIGURATION_ITEM_CHANGE_NOTIFCATION: "OversizedConfigurationItemChangeNotification",
|
|
@@ -5295,6 +5475,7 @@ exports.AssociateResourceTypes$ = AssociateResourceTypes$;
|
|
|
5295
5475
|
exports.AssociateResourceTypesCommand = AssociateResourceTypesCommand;
|
|
5296
5476
|
exports.AssociateResourceTypesRequest$ = AssociateResourceTypesRequest$;
|
|
5297
5477
|
exports.AssociateResourceTypesResponse$ = AssociateResourceTypesResponse$;
|
|
5478
|
+
exports.AzureConnectorConfiguration$ = AzureConnectorConfiguration$;
|
|
5298
5479
|
exports.BaseConfigurationItem$ = BaseConfigurationItem$;
|
|
5299
5480
|
exports.BatchGetAggregateResourceConfig$ = BatchGetAggregateResourceConfig$;
|
|
5300
5481
|
exports.BatchGetAggregateResourceConfigCommand = BatchGetAggregateResourceConfigCommand;
|
|
@@ -5349,6 +5530,11 @@ exports.ConformancePackState = ConformancePackState;
|
|
|
5349
5530
|
exports.ConformancePackStatusDetail$ = ConformancePackStatusDetail$;
|
|
5350
5531
|
exports.ConformancePackTemplateValidationException = ConformancePackTemplateValidationException;
|
|
5351
5532
|
exports.ConformancePackTemplateValidationException$ = ConformancePackTemplateValidationException$;
|
|
5533
|
+
exports.Connector$ = Connector$;
|
|
5534
|
+
exports.ConnectorConfiguration$ = ConnectorConfiguration$;
|
|
5535
|
+
exports.ConnectorFilter$ = ConnectorFilter$;
|
|
5536
|
+
exports.ConnectorFilterName = ConnectorFilterName;
|
|
5537
|
+
exports.ConnectorSummary$ = ConnectorSummary$;
|
|
5352
5538
|
exports.CustomPolicyDetails$ = CustomPolicyDetails$;
|
|
5353
5539
|
exports.DeleteAggregationAuthorization$ = DeleteAggregationAuthorization$;
|
|
5354
5540
|
exports.DeleteAggregationAuthorizationCommand = DeleteAggregationAuthorizationCommand;
|
|
@@ -5365,6 +5551,9 @@ exports.DeleteConfigurationRecorderRequest$ = DeleteConfigurationRecorderRequest
|
|
|
5365
5551
|
exports.DeleteConformancePack$ = DeleteConformancePack$;
|
|
5366
5552
|
exports.DeleteConformancePackCommand = DeleteConformancePackCommand;
|
|
5367
5553
|
exports.DeleteConformancePackRequest$ = DeleteConformancePackRequest$;
|
|
5554
|
+
exports.DeleteConnector$ = DeleteConnector$;
|
|
5555
|
+
exports.DeleteConnectorCommand = DeleteConnectorCommand;
|
|
5556
|
+
exports.DeleteConnectorRequest$ = DeleteConnectorRequest$;
|
|
5368
5557
|
exports.DeleteDeliveryChannel$ = DeleteDeliveryChannel$;
|
|
5369
5558
|
exports.DeleteDeliveryChannelCommand = DeleteDeliveryChannelCommand;
|
|
5370
5559
|
exports.DeleteDeliveryChannelRequest$ = DeleteDeliveryChannelRequest$;
|
|
@@ -5574,6 +5763,10 @@ exports.GetConformancePackComplianceSummary$ = GetConformancePackComplianceSumma
|
|
|
5574
5763
|
exports.GetConformancePackComplianceSummaryCommand = GetConformancePackComplianceSummaryCommand;
|
|
5575
5764
|
exports.GetConformancePackComplianceSummaryRequest$ = GetConformancePackComplianceSummaryRequest$;
|
|
5576
5765
|
exports.GetConformancePackComplianceSummaryResponse$ = GetConformancePackComplianceSummaryResponse$;
|
|
5766
|
+
exports.GetConnector$ = GetConnector$;
|
|
5767
|
+
exports.GetConnectorCommand = GetConnectorCommand;
|
|
5768
|
+
exports.GetConnectorRequest$ = GetConnectorRequest$;
|
|
5769
|
+
exports.GetConnectorResponse$ = GetConnectorResponse$;
|
|
5577
5770
|
exports.GetCustomRulePolicy$ = GetCustomRulePolicy$;
|
|
5578
5771
|
exports.GetCustomRulePolicyCommand = GetCustomRulePolicyCommand;
|
|
5579
5772
|
exports.GetCustomRulePolicyRequest$ = GetCustomRulePolicyRequest$;
|
|
@@ -5655,6 +5848,10 @@ exports.ListConformancePackComplianceScores$ = ListConformancePackComplianceScor
|
|
|
5655
5848
|
exports.ListConformancePackComplianceScoresCommand = ListConformancePackComplianceScoresCommand;
|
|
5656
5849
|
exports.ListConformancePackComplianceScoresRequest$ = ListConformancePackComplianceScoresRequest$;
|
|
5657
5850
|
exports.ListConformancePackComplianceScoresResponse$ = ListConformancePackComplianceScoresResponse$;
|
|
5851
|
+
exports.ListConnectors$ = ListConnectors$;
|
|
5852
|
+
exports.ListConnectorsCommand = ListConnectorsCommand;
|
|
5853
|
+
exports.ListConnectorsRequest$ = ListConnectorsRequest$;
|
|
5854
|
+
exports.ListConnectorsResponse$ = ListConnectorsResponse$;
|
|
5658
5855
|
exports.ListDiscoveredResources$ = ListDiscoveredResources$;
|
|
5659
5856
|
exports.ListDiscoveredResourcesCommand = ListDiscoveredResourcesCommand;
|
|
5660
5857
|
exports.ListDiscoveredResourcesRequest$ = ListDiscoveredResourcesRequest$;
|
|
@@ -5679,6 +5876,8 @@ exports.MaxNumberOfConfigurationRecordersExceededException = MaxNumberOfConfigur
|
|
|
5679
5876
|
exports.MaxNumberOfConfigurationRecordersExceededException$ = MaxNumberOfConfigurationRecordersExceededException$;
|
|
5680
5877
|
exports.MaxNumberOfConformancePacksExceededException = MaxNumberOfConformancePacksExceededException;
|
|
5681
5878
|
exports.MaxNumberOfConformancePacksExceededException$ = MaxNumberOfConformancePacksExceededException$;
|
|
5879
|
+
exports.MaxNumberOfConnectorsExceededException = MaxNumberOfConnectorsExceededException;
|
|
5880
|
+
exports.MaxNumberOfConnectorsExceededException$ = MaxNumberOfConnectorsExceededException$;
|
|
5682
5881
|
exports.MaxNumberOfDeliveryChannelsExceededException = MaxNumberOfDeliveryChannelsExceededException;
|
|
5683
5882
|
exports.MaxNumberOfDeliveryChannelsExceededException$ = MaxNumberOfDeliveryChannelsExceededException$;
|
|
5684
5883
|
exports.MaxNumberOfOrganizationConfigRulesExceededException = MaxNumberOfOrganizationConfigRulesExceededException;
|
|
@@ -5749,6 +5948,7 @@ exports.OversizedConfigurationItemException = OversizedConfigurationItemExceptio
|
|
|
5749
5948
|
exports.OversizedConfigurationItemException$ = OversizedConfigurationItemException$;
|
|
5750
5949
|
exports.Owner = Owner;
|
|
5751
5950
|
exports.PendingAggregationRequest$ = PendingAggregationRequest$;
|
|
5951
|
+
exports.Provider = Provider;
|
|
5752
5952
|
exports.PutAggregationAuthorization$ = PutAggregationAuthorization$;
|
|
5753
5953
|
exports.PutAggregationAuthorizationCommand = PutAggregationAuthorizationCommand;
|
|
5754
5954
|
exports.PutAggregationAuthorizationRequest$ = PutAggregationAuthorizationRequest$;
|
|
@@ -5767,6 +5967,10 @@ exports.PutConformancePack$ = PutConformancePack$;
|
|
|
5767
5967
|
exports.PutConformancePackCommand = PutConformancePackCommand;
|
|
5768
5968
|
exports.PutConformancePackRequest$ = PutConformancePackRequest$;
|
|
5769
5969
|
exports.PutConformancePackResponse$ = PutConformancePackResponse$;
|
|
5970
|
+
exports.PutConnector$ = PutConnector$;
|
|
5971
|
+
exports.PutConnectorCommand = PutConnectorCommand;
|
|
5972
|
+
exports.PutConnectorRequest$ = PutConnectorRequest$;
|
|
5973
|
+
exports.PutConnectorResponse$ = PutConnectorResponse$;
|
|
5770
5974
|
exports.PutDeliveryChannel$ = PutDeliveryChannel$;
|
|
5771
5975
|
exports.PutDeliveryChannelCommand = PutDeliveryChannelCommand;
|
|
5772
5976
|
exports.PutDeliveryChannelRequest$ = PutDeliveryChannelRequest$;
|
|
@@ -5809,6 +6013,10 @@ exports.PutStoredQuery$ = PutStoredQuery$;
|
|
|
5809
6013
|
exports.PutStoredQueryCommand = PutStoredQueryCommand;
|
|
5810
6014
|
exports.PutStoredQueryRequest$ = PutStoredQueryRequest$;
|
|
5811
6015
|
exports.PutStoredQueryResponse$ = PutStoredQueryResponse$;
|
|
6016
|
+
exports.PutThirdPartyServiceLinkedConfigurationRecorder$ = PutThirdPartyServiceLinkedConfigurationRecorder$;
|
|
6017
|
+
exports.PutThirdPartyServiceLinkedConfigurationRecorderCommand = PutThirdPartyServiceLinkedConfigurationRecorderCommand;
|
|
6018
|
+
exports.PutThirdPartyServiceLinkedConfigurationRecorderRequest$ = PutThirdPartyServiceLinkedConfigurationRecorderRequest$;
|
|
6019
|
+
exports.PutThirdPartyServiceLinkedConfigurationRecorderResponse$ = PutThirdPartyServiceLinkedConfigurationRecorderResponse$;
|
|
5812
6020
|
exports.QueryInfo$ = QueryInfo$;
|
|
5813
6021
|
exports.RecorderStatus = RecorderStatus;
|
|
5814
6022
|
exports.RecordingFrequency = RecordingFrequency;
|
|
@@ -5855,6 +6063,7 @@ exports.ResourceValueType = ResourceValueType;
|
|
|
5855
6063
|
exports.RetentionConfiguration$ = RetentionConfiguration$;
|
|
5856
6064
|
exports.RuleEvaluationVisibility = RuleEvaluationVisibility;
|
|
5857
6065
|
exports.Scope$ = Scope$;
|
|
6066
|
+
exports.ScopeConfiguration$ = ScopeConfiguration$;
|
|
5858
6067
|
exports.SelectAggregateResourceConfig$ = SelectAggregateResourceConfig$;
|
|
5859
6068
|
exports.SelectAggregateResourceConfigCommand = SelectAggregateResourceConfigCommand;
|
|
5860
6069
|
exports.SelectAggregateResourceConfigRequest$ = SelectAggregateResourceConfigRequest$;
|
|
@@ -5941,6 +6150,7 @@ exports.paginateGetResourceConfigHistory = paginateGetResourceConfigHistory;
|
|
|
5941
6150
|
exports.paginateListAggregateDiscoveredResources = paginateListAggregateDiscoveredResources;
|
|
5942
6151
|
exports.paginateListConfigurationRecorders = paginateListConfigurationRecorders;
|
|
5943
6152
|
exports.paginateListConformancePackComplianceScores = paginateListConformancePackComplianceScores;
|
|
6153
|
+
exports.paginateListConnectors = paginateListConnectors;
|
|
5944
6154
|
exports.paginateListDiscoveredResources = paginateListDiscoveredResources;
|
|
5945
6155
|
exports.paginateListResourceEvaluations = paginateListResourceEvaluations;
|
|
5946
6156
|
exports.paginateListStoredQueries = paginateListStoredQueries;
|