@aws-sdk/client-cloudwatch-logs 3.939.0 → 3.943.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 +40 -0
- package/dist-cjs/index.js +328 -71
- package/dist-es/CloudWatchLogs.js +10 -0
- package/dist-es/commands/AssociateSourceToS3TableIntegrationCommand.js +16 -0
- package/dist-es/commands/DisassociateSourceFromS3TableIntegrationCommand.js +16 -0
- package/dist-es/commands/GetLogFieldsCommand.js +16 -0
- package/dist-es/commands/ListAggregateLogGroupSummariesCommand.js +16 -0
- package/dist-es/commands/ListSourcesForS3TableIntegrationCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +14 -0
- package/dist-es/models/errors.js +32 -32
- package/dist-es/pagination/ListSourcesForS3TableIntegrationPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +207 -39
- package/dist-types/CloudWatchLogs.d.ts +35 -0
- package/dist-types/CloudWatchLogsClient.d.ts +7 -2
- package/dist-types/commands/AssociateSourceToS3TableIntegrationCommand.d.ts +97 -0
- package/dist-types/commands/CreateScheduledQueryCommand.d.ts +4 -2
- package/dist-types/commands/DeleteAccountPolicyCommand.d.ts +8 -3
- package/dist-types/commands/DeleteIndexPolicyCommand.d.ts +8 -3
- package/dist-types/commands/DeleteScheduledQueryCommand.d.ts +4 -2
- package/dist-types/commands/DescribeFieldIndexesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeLogGroupsCommand.d.ts +3 -2
- package/dist-types/commands/DescribeQueriesCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateSourceFromS3TableIntegrationCommand.d.ts +92 -0
- package/dist-types/commands/GetLogFieldsCommand.d.ts +107 -0
- package/dist-types/commands/GetLogGroupFieldsCommand.d.ts +2 -0
- package/dist-types/commands/GetQueryResultsCommand.d.ts +3 -0
- package/dist-types/commands/GetScheduledQueryCommand.d.ts +4 -2
- package/dist-types/commands/GetScheduledQueryHistoryCommand.d.ts +4 -2
- package/dist-types/commands/ListAggregateLogGroupSummariesCommand.d.ts +118 -0
- package/dist-types/commands/ListLogGroupsCommand.d.ts +14 -2
- package/dist-types/commands/ListScheduledQueriesCommand.d.ts +4 -2
- package/dist-types/commands/ListSourcesForS3TableIntegrationCommand.d.ts +106 -0
- package/dist-types/commands/PutAccountPolicyCommand.d.ts +19 -6
- package/dist-types/commands/PutIndexPolicyCommand.d.ts +12 -4
- package/dist-types/commands/StartQueryCommand.d.ts +9 -3
- package/dist-types/commands/StopQueryCommand.d.ts +4 -0
- package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +4 -2
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +38 -0
- package/dist-types/models/errors.d.ts +34 -32
- package/dist-types/models/models_0.d.ts +479 -102
- package/dist-types/pagination/ListSourcesForS3TableIntegrationPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +28 -0
- package/dist-types/ts3.4/CloudWatchLogs.d.ts +97 -0
- package/dist-types/ts3.4/CloudWatchLogsClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/AssociateSourceToS3TableIntegrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateSourceFromS3TableIntegrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetLogFieldsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAggregateLogGroupSummariesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSourcesForS3TableIntegrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +19 -0
- package/dist-types/ts3.4/models/errors.d.ts +21 -21
- package/dist-types/ts3.4/models/models_0.d.ts +81 -0
- package/dist-types/ts3.4/pagination/ListSourcesForS3TableIntegrationPaginator.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 +28 -0
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -179,64 +179,76 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends Cl
|
|
|
179
179
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
180
180
|
}
|
|
181
181
|
};
|
|
182
|
-
let
|
|
183
|
-
name = "
|
|
182
|
+
let InternalServerException$1 = class InternalServerException extends CloudWatchLogsServiceException$1 {
|
|
183
|
+
name = "InternalServerException";
|
|
184
|
+
$fault = "server";
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "InternalServerException",
|
|
188
|
+
$fault: "server",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
192
|
+
}
|
|
193
|
+
};
|
|
194
|
+
let ThrottlingException$1 = class ThrottlingException extends CloudWatchLogsServiceException$1 {
|
|
195
|
+
name = "ThrottlingException";
|
|
184
196
|
$fault = "client";
|
|
185
197
|
constructor(opts) {
|
|
186
198
|
super({
|
|
187
|
-
name: "
|
|
199
|
+
name: "ThrottlingException",
|
|
188
200
|
$fault: "client",
|
|
189
201
|
...opts,
|
|
190
202
|
});
|
|
191
|
-
Object.setPrototypeOf(this,
|
|
203
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
192
204
|
}
|
|
193
205
|
};
|
|
194
|
-
let
|
|
195
|
-
name = "
|
|
206
|
+
let ValidationException$1 = class ValidationException extends CloudWatchLogsServiceException$1 {
|
|
207
|
+
name = "ValidationException";
|
|
196
208
|
$fault = "client";
|
|
197
209
|
constructor(opts) {
|
|
198
210
|
super({
|
|
199
|
-
name: "
|
|
211
|
+
name: "ValidationException",
|
|
200
212
|
$fault: "client",
|
|
201
213
|
...opts,
|
|
202
214
|
});
|
|
203
|
-
Object.setPrototypeOf(this,
|
|
215
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
204
216
|
}
|
|
205
217
|
};
|
|
206
|
-
let
|
|
207
|
-
name = "
|
|
218
|
+
let InvalidOperationException$1 = class InvalidOperationException extends CloudWatchLogsServiceException$1 {
|
|
219
|
+
name = "InvalidOperationException";
|
|
208
220
|
$fault = "client";
|
|
209
221
|
constructor(opts) {
|
|
210
222
|
super({
|
|
211
|
-
name: "
|
|
223
|
+
name: "InvalidOperationException",
|
|
212
224
|
$fault: "client",
|
|
213
225
|
...opts,
|
|
214
226
|
});
|
|
215
|
-
Object.setPrototypeOf(this,
|
|
227
|
+
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
216
228
|
}
|
|
217
229
|
};
|
|
218
|
-
let
|
|
219
|
-
name = "
|
|
230
|
+
let ConflictException$1 = class ConflictException extends CloudWatchLogsServiceException$1 {
|
|
231
|
+
name = "ConflictException";
|
|
220
232
|
$fault = "client";
|
|
221
233
|
constructor(opts) {
|
|
222
234
|
super({
|
|
223
|
-
name: "
|
|
235
|
+
name: "ConflictException",
|
|
224
236
|
$fault: "client",
|
|
225
237
|
...opts,
|
|
226
238
|
});
|
|
227
|
-
Object.setPrototypeOf(this,
|
|
239
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
228
240
|
}
|
|
229
241
|
};
|
|
230
|
-
let
|
|
231
|
-
name = "
|
|
242
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends CloudWatchLogsServiceException$1 {
|
|
243
|
+
name = "ServiceQuotaExceededException";
|
|
232
244
|
$fault = "client";
|
|
233
245
|
constructor(opts) {
|
|
234
246
|
super({
|
|
235
|
-
name: "
|
|
247
|
+
name: "ServiceQuotaExceededException",
|
|
236
248
|
$fault: "client",
|
|
237
249
|
...opts,
|
|
238
250
|
});
|
|
239
|
-
Object.setPrototypeOf(this,
|
|
251
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
240
252
|
}
|
|
241
253
|
};
|
|
242
254
|
let LimitExceededException$1 = class LimitExceededException extends CloudWatchLogsServiceException$1 {
|
|
@@ -263,18 +275,6 @@ let ResourceAlreadyExistsException$1 = class ResourceAlreadyExistsException exte
|
|
|
263
275
|
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
264
276
|
}
|
|
265
277
|
};
|
|
266
|
-
let InternalServerException$1 = class InternalServerException extends CloudWatchLogsServiceException$1 {
|
|
267
|
-
name = "InternalServerException";
|
|
268
|
-
$fault = "server";
|
|
269
|
-
constructor(opts) {
|
|
270
|
-
super({
|
|
271
|
-
name: "InternalServerException",
|
|
272
|
-
$fault: "server",
|
|
273
|
-
...opts,
|
|
274
|
-
});
|
|
275
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
276
|
-
}
|
|
277
|
-
};
|
|
278
278
|
let DataAlreadyAcceptedException$1 = class DataAlreadyAcceptedException extends CloudWatchLogsServiceException$1 {
|
|
279
279
|
name = "DataAlreadyAcceptedException";
|
|
280
280
|
$fault = "client";
|
|
@@ -390,8 +390,13 @@ const _AKE = "AddKeyEntry";
|
|
|
390
390
|
const _AKEd = "AddKeyEntries";
|
|
391
391
|
const _AKK = "AssociateKmsKey";
|
|
392
392
|
const _AKKR = "AssociateKmsKeyRequest";
|
|
393
|
+
const _ALGS = "AggregateLogGroupSummary";
|
|
394
|
+
const _ALGSg = "AggregateLogGroupSummaries";
|
|
393
395
|
const _AP = "AccountPolicy";
|
|
394
396
|
const _APc = "AccountPolicies";
|
|
397
|
+
const _ASTSTI = "AssociateSourceToS3TableIntegration";
|
|
398
|
+
const _ASTSTIR = "AssociateSourceToS3TableIntegrationRequest";
|
|
399
|
+
const _ASTSTIRs = "AssociateSourceToS3TableIntegrationResponse";
|
|
395
400
|
const _An = "Anomalies";
|
|
396
401
|
const _CD = "CreateDelivery";
|
|
397
402
|
const _CDR = "CreateDeliveryRequest";
|
|
@@ -509,16 +514,22 @@ const _DRPRes = "DescribeResourcePoliciesRequest";
|
|
|
509
514
|
const _DRPResc = "DescribeResourcePoliciesResponse";
|
|
510
515
|
const _DRPe = "DeleteRetentionPolicy";
|
|
511
516
|
const _DRPes = "DescribeResourcePolicies";
|
|
512
|
-
const _DS = "
|
|
513
|
-
const _DSF = "
|
|
517
|
+
const _DS = "DataSource";
|
|
518
|
+
const _DSF = "DataSourceFilter";
|
|
514
519
|
const _DSFR = "DeleteSubscriptionFilterRequest";
|
|
515
520
|
const _DSFRe = "DescribeSubscriptionFiltersRequest";
|
|
516
521
|
const _DSFRes = "DescribeSubscriptionFiltersResponse";
|
|
517
|
-
const
|
|
522
|
+
const _DSFSTI = "DisassociateSourceFromS3TableIntegration";
|
|
523
|
+
const _DSFSTIR = "DisassociateSourceFromS3TableIntegrationRequest";
|
|
524
|
+
const _DSFSTIRi = "DisassociateSourceFromS3TableIntegrationResponse";
|
|
525
|
+
const _DSFa = "DataSourceFilters";
|
|
526
|
+
const _DSFe = "DeleteSubscriptionFilter";
|
|
527
|
+
const _DSFes = "DescribeSubscriptionFilters";
|
|
518
528
|
const _DSQ = "DeleteScheduledQuery";
|
|
519
529
|
const _DSQR = "DeleteScheduledQueryRequest";
|
|
520
530
|
const _DSQRe = "DeleteScheduledQueryResponse";
|
|
521
|
-
const _DSe = "
|
|
531
|
+
const _DSe = "DeliverySource";
|
|
532
|
+
const _DSel = "DeliverySources";
|
|
522
533
|
const _DT = "DeleteTransformer";
|
|
523
534
|
const _DTC = "DateTimeConverter";
|
|
524
535
|
const _DTR = "DeleteTransformerRequest";
|
|
@@ -554,15 +565,20 @@ const _GDRe = "GetDeliveryResponse";
|
|
|
554
565
|
const _GDS = "GetDeliverySource";
|
|
555
566
|
const _GDSR = "GetDeliverySourceRequest";
|
|
556
567
|
const _GDSRe = "GetDeliverySourceResponse";
|
|
557
|
-
const _GI = "
|
|
568
|
+
const _GI = "GroupingIdentifier";
|
|
558
569
|
const _GIR = "GetIntegrationRequest";
|
|
559
570
|
const _GIRe = "GetIntegrationResponse";
|
|
571
|
+
const _GIe = "GetIntegration";
|
|
572
|
+
const _GIr = "GroupingIdentifiers";
|
|
560
573
|
const _GLAD = "GetLogAnomalyDetector";
|
|
561
574
|
const _GLADR = "GetLogAnomalyDetectorRequest";
|
|
562
575
|
const _GLADRe = "GetLogAnomalyDetectorResponse";
|
|
563
576
|
const _GLE = "GetLogEvents";
|
|
564
577
|
const _GLER = "GetLogEventsRequest";
|
|
565
578
|
const _GLERe = "GetLogEventsResponse";
|
|
579
|
+
const _GLF = "GetLogFields";
|
|
580
|
+
const _GLFR = "GetLogFieldsRequest";
|
|
581
|
+
const _GLFRe = "GetLogFieldsResponse";
|
|
566
582
|
const _GLGF = "GetLogGroupFields";
|
|
567
583
|
const _GLGFR = "GetLogGroupFieldsRequest";
|
|
568
584
|
const _GLGFRe = "GetLogGroupFieldsResponse";
|
|
@@ -598,11 +614,17 @@ const _ISEn = "InternalStreamingException";
|
|
|
598
614
|
const _ISTE = "InvalidSequenceTokenException";
|
|
599
615
|
const _ISn = "IntegrationSummaries";
|
|
600
616
|
const _LA = "ListAnomalies";
|
|
617
|
+
const _LALGS = "ListAggregateLogGroupSummaries";
|
|
618
|
+
const _LALGSR = "ListAggregateLogGroupSummariesRequest";
|
|
619
|
+
const _LALGSRi = "ListAggregateLogGroupSummariesResponse";
|
|
601
620
|
const _LAR = "ListAnomaliesRequest";
|
|
602
621
|
const _LARi = "ListAnomaliesResponse";
|
|
603
622
|
const _LCS = "LowerCaseString";
|
|
604
623
|
const _LE = "LogEvent";
|
|
605
624
|
const _LEE = "LimitExceededException";
|
|
625
|
+
const _LFL = "LogFieldsList";
|
|
626
|
+
const _LFLI = "LogFieldsListItem";
|
|
627
|
+
const _LFT = "LogFieldType";
|
|
606
628
|
const _LG = "LogGroup";
|
|
607
629
|
const _LGF = "LogGroupField";
|
|
608
630
|
const _LGFL = "LogGroupFieldList";
|
|
@@ -622,6 +644,9 @@ const _LLGFQRi = "ListLogGroupsForQueryResponse";
|
|
|
622
644
|
const _LLGR = "ListLogGroupsRequest";
|
|
623
645
|
const _LLGRi = "ListLogGroupsResponse";
|
|
624
646
|
const _LS = "LogStream";
|
|
647
|
+
const _LSFSTI = "ListSourcesForS3TableIntegration";
|
|
648
|
+
const _LSFSTIR = "ListSourcesForS3TableIntegrationRequest";
|
|
649
|
+
const _LSFSTIRi = "ListSourcesForS3TableIntegrationResponse";
|
|
625
650
|
const _LSQ = "ListScheduledQueries";
|
|
626
651
|
const _LSQR = "ListScheduledQueriesRequest";
|
|
627
652
|
const _LSQRi = "ListScheduledQueriesResponse";
|
|
@@ -772,6 +797,8 @@ const _SSEu = "SubstituteStringEntry";
|
|
|
772
797
|
const _SSEub = "SubstituteStringEntries";
|
|
773
798
|
const _SSu = "SubstituteString";
|
|
774
799
|
const _STE = "SessionTimeoutException";
|
|
800
|
+
const _STIS = "S3TableIntegrationSource";
|
|
801
|
+
const _STISa = "S3TableIntegrationSources";
|
|
775
802
|
const _SUE = "ServiceUnavailableException";
|
|
776
803
|
const _TC = "TypeConverter";
|
|
777
804
|
const _TCE = "TypeConverterEntry";
|
|
@@ -824,6 +851,7 @@ const _aIc = "accountIdentifiers";
|
|
|
824
851
|
const _aIn = "anomalyId";
|
|
825
852
|
const _aIp = "applicationId";
|
|
826
853
|
const _aK = "addKeys";
|
|
854
|
+
const _aLGS = "aggregateLogGroupSummaries";
|
|
827
855
|
const _aOF = "allowedOutputFormats";
|
|
828
856
|
const _aOTL = "applyOnTransformedLogs";
|
|
829
857
|
const _aP = "accountPolicies";
|
|
@@ -842,6 +870,7 @@ const _cA = "collectionArn";
|
|
|
842
870
|
const _cE = "collectionEndpoint";
|
|
843
871
|
const _cT = "configurationTemplates";
|
|
844
872
|
const _cTS = "creationTimeStamp";
|
|
873
|
+
const _cTSr = "createdTimeStamp";
|
|
845
874
|
const _cTl = "clientToken";
|
|
846
875
|
const _cTo = "completionTime";
|
|
847
876
|
const _cTr = "creationTime";
|
|
@@ -871,12 +900,14 @@ const _dP = "destinationPrefix";
|
|
|
871
900
|
const _dPE = "deletionProtectionEnabled";
|
|
872
901
|
const _dPS = "dataProtectionStatus";
|
|
873
902
|
const _dRA = "destinationResourceArn";
|
|
874
|
-
const _dS = "
|
|
903
|
+
const _dS = "dataSource";
|
|
875
904
|
const _dSN = "deliverySourceName";
|
|
876
905
|
const _dSNa = "dataSourceName";
|
|
877
906
|
const _dSRA = "dataSourceRoleArn";
|
|
878
|
-
const
|
|
879
|
-
const
|
|
907
|
+
const _dST = "dataSourceType";
|
|
908
|
+
const _dSa = "dataSources";
|
|
909
|
+
const _dSe = "deliverySources";
|
|
910
|
+
const _dSel = "deliverySource";
|
|
880
911
|
const _dT = "destinationType";
|
|
881
912
|
const _dTC = "dateTimeConverter";
|
|
882
913
|
const _dTP = "dynamicTokenPosition";
|
|
@@ -917,6 +948,7 @@ const _eT = "exportTasks";
|
|
|
917
948
|
const _eTn = "endTime";
|
|
918
949
|
const _eTr = "errorType";
|
|
919
950
|
const _eV = "extractedValues";
|
|
951
|
+
const _el = "element";
|
|
920
952
|
const _en = "entries";
|
|
921
953
|
const _ena = "enabled";
|
|
922
954
|
const _end = "endpoint";
|
|
@@ -930,6 +962,7 @@ const _fET = "firstEventTime";
|
|
|
930
962
|
const _fETi = "firstEventTimestamp";
|
|
931
963
|
const _fI = "fieldIndexes";
|
|
932
964
|
const _fIN = "fieldIndexName";
|
|
965
|
+
const _fINi = "fieldIndexNames";
|
|
933
966
|
const _fLGA = "filterLogGroupArn";
|
|
934
967
|
const _fN = "filterName";
|
|
935
968
|
const _fNP = "filterNamePrefix";
|
|
@@ -938,14 +971,17 @@ const _fS = "firstSeen";
|
|
|
938
971
|
const _fSC = "fieldSelectionCriteria";
|
|
939
972
|
const _fSi = "fieldStream";
|
|
940
973
|
const _fU = "forceUpdate";
|
|
941
|
-
const _fi = "
|
|
942
|
-
const _fie = "
|
|
974
|
+
const _fi = "fields";
|
|
975
|
+
const _fie = "field";
|
|
943
976
|
const _fl = "flatten";
|
|
944
977
|
const _fo = "force";
|
|
945
978
|
const _g = "grok";
|
|
979
|
+
const _gB = "groupBy";
|
|
980
|
+
const _gI = "groupingIdentifiers";
|
|
946
981
|
const _h = "histogram";
|
|
947
982
|
const _hE = "httpError";
|
|
948
|
-
const _i = "
|
|
983
|
+
const _i = "identifier";
|
|
984
|
+
const _iA = "integrationArn";
|
|
949
985
|
const _iD = "integrationDetails";
|
|
950
986
|
const _iDs = "isDynamic";
|
|
951
987
|
const _iLA = "includeLinkedAccounts";
|
|
@@ -960,7 +996,7 @@ const _iSn = "integrationSummaries";
|
|
|
960
996
|
const _iT = "ingestionTime";
|
|
961
997
|
const _iTN = "inferredTokenName";
|
|
962
998
|
const _iTn = "integrationType";
|
|
963
|
-
const _id = "
|
|
999
|
+
const _id = "id";
|
|
964
1000
|
const _in = "interleaved";
|
|
965
1001
|
const _k = "key";
|
|
966
1002
|
const _kA = "keyAttributes";
|
|
@@ -976,10 +1012,14 @@ const _lEM = "logEventMessages";
|
|
|
976
1012
|
const _lES = "lastExecutionStatus";
|
|
977
1013
|
const _lET = "lastEventTime";
|
|
978
1014
|
const _lETa = "lastEventTimestamp";
|
|
1015
|
+
const _lF = "logFields";
|
|
1016
|
+
const _lFN = "logFieldName";
|
|
1017
|
+
const _lFT = "logFieldType";
|
|
979
1018
|
const _lG = "logGroups";
|
|
980
1019
|
const _lGA = "logGroupArn";
|
|
981
1020
|
const _lGAL = "logGroupArnList";
|
|
982
|
-
const _lGC = "
|
|
1021
|
+
const _lGC = "logGroupCount";
|
|
1022
|
+
const _lGCo = "logGroupClass";
|
|
983
1023
|
const _lGF = "logGroupFields";
|
|
984
1024
|
const _lGI = "logGroupIdentifiers";
|
|
985
1025
|
const _lGIo = "logGroupIdentifier";
|
|
@@ -1113,6 +1153,7 @@ const _sPu = "suppressionPeriod";
|
|
|
1113
1153
|
const _sQ = "scheduledQueries";
|
|
1114
1154
|
const _sQA = "scheduledQueryArn";
|
|
1115
1155
|
const _sR = "sessionResults";
|
|
1156
|
+
const _sRt = "statusReason";
|
|
1116
1157
|
const _sS = "suppressionState";
|
|
1117
1158
|
const _sST = "scheduleStartTime";
|
|
1118
1159
|
const _sSe = "sessionStart";
|
|
@@ -1131,6 +1172,7 @@ const _se = "service";
|
|
|
1131
1172
|
const _ser = "server";
|
|
1132
1173
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cloudwatchlogs";
|
|
1133
1174
|
const _so = "source";
|
|
1175
|
+
const _sou = "sources";
|
|
1134
1176
|
const _st = "state";
|
|
1135
1177
|
const _sta = "status";
|
|
1136
1178
|
const _stat = "statistics";
|
|
@@ -1191,6 +1233,14 @@ var AccountPolicy = [
|
|
|
1191
1233
|
];
|
|
1192
1234
|
var AddKeyEntry = [3, n0, _AKE, 0, [_k, _v, _oIE], [0, 0, 2]];
|
|
1193
1235
|
var AddKeys = [3, n0, _AK, 0, [_en], [() => AddKeyEntries]];
|
|
1236
|
+
var AggregateLogGroupSummary = [
|
|
1237
|
+
3,
|
|
1238
|
+
n0,
|
|
1239
|
+
_ALGS,
|
|
1240
|
+
0,
|
|
1241
|
+
[_lGC, _gI],
|
|
1242
|
+
[1, () => GroupingIdentifiers],
|
|
1243
|
+
];
|
|
1194
1244
|
var Anomaly = [
|
|
1195
1245
|
3,
|
|
1196
1246
|
n0,
|
|
@@ -1208,6 +1258,15 @@ var AnomalyDetector = [
|
|
|
1208
1258
|
[0, 0, 64 | 0, 0, 0, 0, 0, 1, 1, 1],
|
|
1209
1259
|
];
|
|
1210
1260
|
var AssociateKmsKeyRequest = [3, n0, _AKKR, 0, [_lGN, _kKI, _rI], [0, 0, 0]];
|
|
1261
|
+
var AssociateSourceToS3TableIntegrationRequest = [
|
|
1262
|
+
3,
|
|
1263
|
+
n0,
|
|
1264
|
+
_ASTSTIR,
|
|
1265
|
+
0,
|
|
1266
|
+
[_iA, _dS],
|
|
1267
|
+
[0, () => DataSource],
|
|
1268
|
+
];
|
|
1269
|
+
var AssociateSourceToS3TableIntegrationResponse = [3, n0, _ASTSTIRs, 0, [_i], [0]];
|
|
1211
1270
|
var CancelExportTaskRequest = [3, n0, _CETR, 0, [_tI], [0]];
|
|
1212
1271
|
var ConfigurationTemplate = [
|
|
1213
1272
|
3,
|
|
@@ -1270,7 +1329,7 @@ var CreateLogGroupRequest = [
|
|
|
1270
1329
|
n0,
|
|
1271
1330
|
_CLGR,
|
|
1272
1331
|
0,
|
|
1273
|
-
[_lGN, _kKI, _ta,
|
|
1332
|
+
[_lGN, _kKI, _ta, _lGCo, _dPE],
|
|
1274
1333
|
[0, 0, 128 | 0, 0, 2],
|
|
1275
1334
|
];
|
|
1276
1335
|
var CreateLogStreamRequest = [3, n0, _CLSR, 0, [_lGN, _lSN], [0, 0]];
|
|
@@ -1295,6 +1354,8 @@ var DataAlreadyAcceptedException = [
|
|
|
1295
1354
|
[0, 0],
|
|
1296
1355
|
];
|
|
1297
1356
|
schema.TypeRegistry.for(n0).registerError(DataAlreadyAcceptedException, DataAlreadyAcceptedException$1);
|
|
1357
|
+
var DataSource = [3, n0, _DS, 0, [_n, _ty], [0, 0]];
|
|
1358
|
+
var DataSourceFilter = [3, n0, _DSF, 0, [_n, _ty], [0, 0]];
|
|
1298
1359
|
var DateTimeConverter = [
|
|
1299
1360
|
3,
|
|
1300
1361
|
n0,
|
|
@@ -1307,7 +1368,7 @@ var DeleteAccountPolicyRequest = [3, n0, _DAPR, 0, [_pN, _pT], [0, 0]];
|
|
|
1307
1368
|
var DeleteDataProtectionPolicyRequest = [3, n0, _DDPPR, 0, [_lGIo], [0]];
|
|
1308
1369
|
var DeleteDeliveryDestinationPolicyRequest = [3, n0, _DDDPR, 0, [_dDN], [0]];
|
|
1309
1370
|
var DeleteDeliveryDestinationRequest = [3, n0, _DDDR, 0, [_n], [0]];
|
|
1310
|
-
var DeleteDeliveryRequest = [3, n0, _DDR, 0, [
|
|
1371
|
+
var DeleteDeliveryRequest = [3, n0, _DDR, 0, [_id], [0]];
|
|
1311
1372
|
var DeleteDeliverySourceRequest = [3, n0, _DDSR, 0, [_n], [0]];
|
|
1312
1373
|
var DeleteDestinationRequest = [3, n0, _DDRe, 0, [_dNe], [0]];
|
|
1313
1374
|
var DeleteIndexPolicyRequest = [3, n0, _DIPR, 0, [_lGIo], [0]];
|
|
@@ -1323,7 +1384,7 @@ var DeleteQueryDefinitionRequest = [3, n0, _DQDR, 0, [_qDI], [0]];
|
|
|
1323
1384
|
var DeleteQueryDefinitionResponse = [3, n0, _DQDRe, 0, [_suc], [2]];
|
|
1324
1385
|
var DeleteResourcePolicyRequest = [3, n0, _DRPR, 0, [_pN, _rA, _eRI], [0, 0, 0]];
|
|
1325
1386
|
var DeleteRetentionPolicyRequest = [3, n0, _DRPRe, 0, [_lGN], [0]];
|
|
1326
|
-
var DeleteScheduledQueryRequest = [3, n0, _DSQR, 0, [
|
|
1387
|
+
var DeleteScheduledQueryRequest = [3, n0, _DSQR, 0, [_i], [0]];
|
|
1327
1388
|
var DeleteScheduledQueryResponse = [3, n0, _DSQRe, 0, [], []];
|
|
1328
1389
|
var DeleteSubscriptionFilterRequest = [3, n0, _DSFR, 0, [_lGN, _fN], [0, 0]];
|
|
1329
1390
|
var DeleteTransformerRequest = [3, n0, _DTR, 0, [_lGIo], [0]];
|
|
@@ -1332,7 +1393,7 @@ var Delivery = [
|
|
|
1332
1393
|
n0,
|
|
1333
1394
|
_D,
|
|
1334
1395
|
0,
|
|
1335
|
-
[
|
|
1396
|
+
[_id, _ar, _dSN, _dDA, _dDT, _rF, _fD, _sDC, _ta],
|
|
1336
1397
|
[0, 0, 0, 0, 0, 64 | 0, 0, () => S3DeliveryConfiguration, 128 | 0],
|
|
1337
1398
|
];
|
|
1338
1399
|
var DeliveryDestination = [
|
|
@@ -1347,7 +1408,7 @@ var DeliveryDestinationConfiguration = [3, n0, _DDC, 0, [_dRA], [0]];
|
|
|
1347
1408
|
var DeliverySource = [
|
|
1348
1409
|
3,
|
|
1349
1410
|
n0,
|
|
1350
|
-
|
|
1411
|
+
_DSe,
|
|
1351
1412
|
0,
|
|
1352
1413
|
[_n, _ar, _rAe, _se, _lT, _ta],
|
|
1353
1414
|
[0, 0, 64 | 0, 0, 0, 128 | 0],
|
|
@@ -1401,7 +1462,7 @@ var DescribeDeliverySourcesResponse = [
|
|
|
1401
1462
|
n0,
|
|
1402
1463
|
_DDSRes,
|
|
1403
1464
|
0,
|
|
1404
|
-
[
|
|
1465
|
+
[_dSe, _nT],
|
|
1405
1466
|
[() => DeliverySources, 0],
|
|
1406
1467
|
];
|
|
1407
1468
|
var DescribeDestinationsRequest = [3, n0, _DDRescr, 0, [_DNP, _nT, _li], [0, 0, 1]];
|
|
@@ -1438,7 +1499,7 @@ var DescribeLogGroupsRequest = [
|
|
|
1438
1499
|
n0,
|
|
1439
1500
|
_DLGRe,
|
|
1440
1501
|
0,
|
|
1441
|
-
[_aIc, _lGNP, _lGNPo, _nT, _li, _iLA,
|
|
1502
|
+
[_aIc, _lGNP, _lGNPo, _nT, _li, _iLA, _lGCo, _lGI],
|
|
1442
1503
|
[64 | 0, 0, 0, 0, 1, 2, 0, 64 | 0],
|
|
1443
1504
|
];
|
|
1444
1505
|
var DescribeLogGroupsResponse = [3, n0, _DLGRes, 0, [_lG, _nT], [() => LogGroups, 0]];
|
|
@@ -1527,6 +1588,8 @@ var DescribeSubscriptionFiltersResponse = [
|
|
|
1527
1588
|
var Destination = [3, n0, _De, 0, [_dNe, _tA, _rAo, _aPc, _ar, _cTr], [0, 0, 0, 0, 0, 1]];
|
|
1528
1589
|
var DestinationConfiguration = [3, n0, _DC, 0, [_sCo], [() => S3Configuration]];
|
|
1529
1590
|
var DisassociateKmsKeyRequest = [3, n0, _DKKR, 0, [_lGN, _rI], [0, 0]];
|
|
1591
|
+
var DisassociateSourceFromS3TableIntegrationRequest = [3, n0, _DSFSTIR, 0, [_i], [0]];
|
|
1592
|
+
var DisassociateSourceFromS3TableIntegrationResponse = [3, n0, _DSFSTIRi, 0, [_i], [0]];
|
|
1530
1593
|
var Entity = [3, n0, _E, 0, [_kA, _at], [128 | 0, 128 | 0]];
|
|
1531
1594
|
var ExportTask = [
|
|
1532
1595
|
3,
|
|
@@ -1538,7 +1601,14 @@ var ExportTask = [
|
|
|
1538
1601
|
];
|
|
1539
1602
|
var ExportTaskExecutionInfo = [3, n0, _ETEI, 0, [_cTr, _cTo], [1, 1]];
|
|
1540
1603
|
var ExportTaskStatus = [3, n0, _ETS, 0, [_cod, _m], [0, 0]];
|
|
1541
|
-
var FieldIndex = [
|
|
1604
|
+
var FieldIndex = [
|
|
1605
|
+
3,
|
|
1606
|
+
n0,
|
|
1607
|
+
_FI,
|
|
1608
|
+
0,
|
|
1609
|
+
[_lGIo, _fIN, _lST, _fET, _lET, _ty],
|
|
1610
|
+
[0, 0, 1, 1, 1, 0],
|
|
1611
|
+
];
|
|
1542
1612
|
var FieldsData = [3, n0, _FD, 0, [_da], [21]];
|
|
1543
1613
|
var FilteredLogEvent = [3, n0, _FLE, 0, [_lSN, _tim, _m, _iT, _eIv], [0, 1, 0, 1, 0]];
|
|
1544
1614
|
var FilterLogEventsRequest = [
|
|
@@ -1570,10 +1640,10 @@ var GetDeliveryDestinationResponse = [
|
|
|
1570
1640
|
[_dDe],
|
|
1571
1641
|
[() => DeliveryDestination],
|
|
1572
1642
|
];
|
|
1573
|
-
var GetDeliveryRequest = [3, n0, _GDR, 0, [
|
|
1643
|
+
var GetDeliveryRequest = [3, n0, _GDR, 0, [_id], [0]];
|
|
1574
1644
|
var GetDeliveryResponse = [3, n0, _GDRe, 0, [_de], [() => Delivery]];
|
|
1575
1645
|
var GetDeliverySourceRequest = [3, n0, _GDSR, 0, [_n], [0]];
|
|
1576
|
-
var GetDeliverySourceResponse = [3, n0, _GDSRe, 0, [
|
|
1646
|
+
var GetDeliverySourceResponse = [3, n0, _GDSRe, 0, [_dSel], [() => DeliverySource]];
|
|
1577
1647
|
var GetIntegrationRequest = [3, n0, _GIR, 0, [_iN], [0]];
|
|
1578
1648
|
var GetIntegrationResponse = [
|
|
1579
1649
|
3,
|
|
@@ -1608,6 +1678,8 @@ var GetLogEventsResponse = [
|
|
|
1608
1678
|
[_ev, _nFT, _nBT],
|
|
1609
1679
|
[() => OutputLogEvents, 0, 0],
|
|
1610
1680
|
];
|
|
1681
|
+
var GetLogFieldsRequest = [3, n0, _GLFR, 0, [_dSNa, _dST], [0, 0]];
|
|
1682
|
+
var GetLogFieldsResponse = [3, n0, _GLFRe, 0, [_lF], [() => LogFieldsList]];
|
|
1611
1683
|
var GetLogGroupFieldsRequest = [3, n0, _GLGFR, 0, [_lGN, _time, _lGIo], [0, 1, 0]];
|
|
1612
1684
|
var GetLogGroupFieldsResponse = [3, n0, _GLGFRe, 0, [_lGF], [() => LogGroupFieldList]];
|
|
1613
1685
|
var GetLogObjectRequest = [3, n0, _GLOR, 0, [_u, _lOP], [2, 0]];
|
|
@@ -1635,7 +1707,7 @@ var GetScheduledQueryHistoryRequest = [
|
|
|
1635
1707
|
n0,
|
|
1636
1708
|
_GSQHR,
|
|
1637
1709
|
0,
|
|
1638
|
-
[
|
|
1710
|
+
[_i, _sTt, _eTn, _eS, _mR, _nT],
|
|
1639
1711
|
[0, 1, 1, 64 | 0, 1, 0],
|
|
1640
1712
|
];
|
|
1641
1713
|
var GetScheduledQueryHistoryResponse = [
|
|
@@ -1646,7 +1718,7 @@ var GetScheduledQueryHistoryResponse = [
|
|
|
1646
1718
|
[_n, _sQA, _tH, _nT],
|
|
1647
1719
|
[0, 0, () => TriggerHistoryRecordList, 0],
|
|
1648
1720
|
];
|
|
1649
|
-
var GetScheduledQueryRequest = [3, n0, _GSQR, 0, [
|
|
1721
|
+
var GetScheduledQueryRequest = [3, n0, _GSQR, 0, [_i], [0]];
|
|
1650
1722
|
var GetScheduledQueryResponse = [
|
|
1651
1723
|
3,
|
|
1652
1724
|
n0,
|
|
@@ -1665,6 +1737,7 @@ var GetTransformerResponse = [
|
|
|
1665
1737
|
[0, 1, 1, () => Processors],
|
|
1666
1738
|
];
|
|
1667
1739
|
var Grok = [3, n0, _G, 0, [_so, _ma], [0, 0]];
|
|
1740
|
+
var GroupingIdentifier = [3, n0, _GI, 0, [_k, _v], [0, 0]];
|
|
1668
1741
|
var IndexPolicy = [3, n0, _IP, 0, [_lGIo, _lUTa, _pD, _pN, _so], [0, 1, 0, 0, 0]];
|
|
1669
1742
|
var InputLogEvent = [3, n0, _ILE, 0, [_tim, _m], [1, 0]];
|
|
1670
1743
|
var IntegrationSummary = [3, n0, _IS, 0, [_iN, _iTn, _iS], [0, 0, 0]];
|
|
@@ -1735,6 +1808,22 @@ var LimitExceededException = [
|
|
|
1735
1808
|
[0],
|
|
1736
1809
|
];
|
|
1737
1810
|
schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
|
|
1811
|
+
var ListAggregateLogGroupSummariesRequest = [
|
|
1812
|
+
3,
|
|
1813
|
+
n0,
|
|
1814
|
+
_LALGSR,
|
|
1815
|
+
0,
|
|
1816
|
+
[_aIc, _iLA, _lGCo, _lGNPo, _dSa, _gB, _nT, _li],
|
|
1817
|
+
[64 | 0, 2, 0, 0, () => DataSourceFilters, 0, 0, 1],
|
|
1818
|
+
];
|
|
1819
|
+
var ListAggregateLogGroupSummariesResponse = [
|
|
1820
|
+
3,
|
|
1821
|
+
n0,
|
|
1822
|
+
_LALGSRi,
|
|
1823
|
+
0,
|
|
1824
|
+
[_aLGS, _nT],
|
|
1825
|
+
[() => AggregateLogGroupSummaries, 0],
|
|
1826
|
+
];
|
|
1738
1827
|
var ListAnomaliesRequest = [3, n0, _LAR, 0, [_aDA, _sS, _li, _nT], [0, 0, 1, 0]];
|
|
1739
1828
|
var ListAnomaliesResponse = [3, n0, _LARi, 0, [_an, _nT], [() => Anomalies, 0]];
|
|
1740
1829
|
var ListIntegrationsRequest = [3, n0, _LIR, 0, [_iNP, _iTn, _iS], [0, 0, 0]];
|
|
@@ -1755,8 +1844,8 @@ var ListLogGroupsRequest = [
|
|
|
1755
1844
|
n0,
|
|
1756
1845
|
_LLGR,
|
|
1757
1846
|
0,
|
|
1758
|
-
[_lGNPo,
|
|
1759
|
-
[0, 0, 2, 64 | 0, 0, 1],
|
|
1847
|
+
[_lGNPo, _lGCo, _iLA, _aIc, _nT, _li, _dSa, _fINi],
|
|
1848
|
+
[0, 0, 2, 64 | 0, 0, 1, () => DataSourceFilters, 64 | 0],
|
|
1760
1849
|
];
|
|
1761
1850
|
var ListLogGroupsResponse = [3, n0, _LLGRi, 0, [_lG, _nT], [() => LogGroupSummaries, 0]];
|
|
1762
1851
|
var ListScheduledQueriesRequest = [3, n0, _LSQR, 0, [_mR, _nT, _st], [1, 0, 0]];
|
|
@@ -1768,6 +1857,22 @@ var ListScheduledQueriesResponse = [
|
|
|
1768
1857
|
[_nT, _sQ],
|
|
1769
1858
|
[0, () => ScheduledQuerySummaryList],
|
|
1770
1859
|
];
|
|
1860
|
+
var ListSourcesForS3TableIntegrationRequest = [
|
|
1861
|
+
3,
|
|
1862
|
+
n0,
|
|
1863
|
+
_LSFSTIR,
|
|
1864
|
+
0,
|
|
1865
|
+
[_iA, _mR, _nT],
|
|
1866
|
+
[0, 1, 0],
|
|
1867
|
+
];
|
|
1868
|
+
var ListSourcesForS3TableIntegrationResponse = [
|
|
1869
|
+
3,
|
|
1870
|
+
n0,
|
|
1871
|
+
_LSFSTIRi,
|
|
1872
|
+
0,
|
|
1873
|
+
[_sou, _nT],
|
|
1874
|
+
[() => S3TableIntegrationSources, 0],
|
|
1875
|
+
];
|
|
1771
1876
|
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
|
|
1772
1877
|
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
|
|
1773
1878
|
var ListTagsLogGroupRequest = [3, n0, _LTLGR, 0, [_lGN], [0]];
|
|
@@ -1799,16 +1904,25 @@ var LiveTailSessionUpdate = [
|
|
|
1799
1904
|
[() => LiveTailSessionMetadata, () => LiveTailSessionResults],
|
|
1800
1905
|
];
|
|
1801
1906
|
var LogEvent = [3, n0, _LE, 0, [_tim, _m], [1, 0]];
|
|
1907
|
+
var LogFieldsListItem = [3, n0, _LFLI, 0, [_lFN, _lFT], [0, () => LogFieldType]];
|
|
1908
|
+
var LogFieldType = [
|
|
1909
|
+
3,
|
|
1910
|
+
n0,
|
|
1911
|
+
_LFT,
|
|
1912
|
+
0,
|
|
1913
|
+
[_ty, _el, _fi],
|
|
1914
|
+
[0, () => LogFieldType, () => LogFieldsList],
|
|
1915
|
+
];
|
|
1802
1916
|
var LogGroup = [
|
|
1803
1917
|
3,
|
|
1804
1918
|
n0,
|
|
1805
1919
|
_LG,
|
|
1806
1920
|
0,
|
|
1807
|
-
[_lGN, _cTr, _rID, _mFC, _ar, _sB, _kKI, _dPS, _iPn,
|
|
1921
|
+
[_lGN, _cTr, _rID, _mFC, _ar, _sB, _kKI, _dPS, _iPn, _lGCo, _lGA, _dPE],
|
|
1808
1922
|
[0, 1, 1, 1, 0, 1, 0, 0, 64 | 0, 0, 0, 2],
|
|
1809
1923
|
];
|
|
1810
1924
|
var LogGroupField = [3, n0, _LGF, 0, [_n, _pe], [0, 1]];
|
|
1811
|
-
var LogGroupSummary = [3, n0, _LGS, 0, [_lGN, _lGA,
|
|
1925
|
+
var LogGroupSummary = [3, n0, _LGS, 0, [_lGN, _lGA, _lGCo], [0, 0, 0]];
|
|
1812
1926
|
var LogStream = [
|
|
1813
1927
|
3,
|
|
1814
1928
|
n0,
|
|
@@ -1893,7 +2007,7 @@ var OpenSearchIntegrationDetails = [
|
|
|
1893
2007
|
n0,
|
|
1894
2008
|
_OSID,
|
|
1895
2009
|
0,
|
|
1896
|
-
[
|
|
2010
|
+
[_dS, _ap, _col, _w, _eP, _nP, _aPc, _lP],
|
|
1897
2011
|
[
|
|
1898
2012
|
() => OpenSearchDataSource,
|
|
1899
2013
|
() => OpenSearchApplication,
|
|
@@ -2053,7 +2167,7 @@ var PutDeliveryDestinationResponse = [
|
|
|
2053
2167
|
[() => DeliveryDestination],
|
|
2054
2168
|
];
|
|
2055
2169
|
var PutDeliverySourceRequest = [3, n0, _PDSR, 0, [_n, _rA, _lT, _ta], [0, 0, 0, 128 | 0]];
|
|
2056
|
-
var PutDeliverySourceResponse = [3, n0, _PDSRu, 0, [
|
|
2170
|
+
var PutDeliverySourceResponse = [3, n0, _PDSRu, 0, [_dSel], [() => DeliverySource]];
|
|
2057
2171
|
var PutDestinationPolicyRequest = [3, n0, _PDPR, 0, [_dNe, _aPc, _fU], [0, 0, 2]];
|
|
2058
2172
|
var PutDestinationRequest = [3, n0, _PDR, 0, [_dNe, _tA, _rAo, _ta], [0, 0, 0, 128 | 0]];
|
|
2059
2173
|
var PutDestinationResponse = [3, n0, _PDRu, 0, [_des], [() => Destination]];
|
|
@@ -2175,9 +2289,17 @@ var ResourcePolicy = [
|
|
|
2175
2289
|
[_pN, _pD, _lUT, _pSo, _rA, _rIev],
|
|
2176
2290
|
[0, 0, 1, 0, 0, 0],
|
|
2177
2291
|
];
|
|
2178
|
-
var ResultField = [3, n0, _RFe, 0, [
|
|
2292
|
+
var ResultField = [3, n0, _RFe, 0, [_fie, _v], [0, 0]];
|
|
2179
2293
|
var S3Configuration = [3, n0, _SC, 0, [_dI, _rAo], [0, 0]];
|
|
2180
2294
|
var S3DeliveryConfiguration = [3, n0, _SDC, 0, [_sP, _eHCP], [0, 2]];
|
|
2295
|
+
var S3TableIntegrationSource = [
|
|
2296
|
+
3,
|
|
2297
|
+
n0,
|
|
2298
|
+
_STIS,
|
|
2299
|
+
0,
|
|
2300
|
+
[_i, _dS, _sta, _sRt, _cTSr],
|
|
2301
|
+
[0, () => DataSource, 0, 0, 1],
|
|
2302
|
+
];
|
|
2181
2303
|
var ScheduledQueryDestination = [
|
|
2182
2304
|
3,
|
|
2183
2305
|
n0,
|
|
@@ -2346,7 +2468,7 @@ var UpdateDeliveryConfigurationRequest = [
|
|
|
2346
2468
|
n0,
|
|
2347
2469
|
_UDCR,
|
|
2348
2470
|
0,
|
|
2349
|
-
[
|
|
2471
|
+
[_id, _rF, _fD, _sDC],
|
|
2350
2472
|
[0, 64 | 0, 0, () => S3DeliveryConfiguration],
|
|
2351
2473
|
];
|
|
2352
2474
|
var UpdateDeliveryConfigurationResponse = [3, n0, _UDCRp, 0, [], []];
|
|
@@ -2363,7 +2485,7 @@ var UpdateScheduledQueryRequest = [
|
|
|
2363
2485
|
n0,
|
|
2364
2486
|
_USQR,
|
|
2365
2487
|
0,
|
|
2366
|
-
[
|
|
2488
|
+
[_i, _d, _qL, _qS, _lGI, _sE, _ti, _sTO, _dC, _sST, _sET, _eRA, _st],
|
|
2367
2489
|
[0, 0, 0, 0, 64 | 0, 0, 0, 1, () => DestinationConfiguration, 1, 1, 0, 0],
|
|
2368
2490
|
];
|
|
2369
2491
|
var UpdateScheduledQueryResponse = [
|
|
@@ -2391,22 +2513,26 @@ var CloudWatchLogsServiceException = [-3, _sm, "CloudWatchLogsServiceException",
|
|
|
2391
2513
|
schema.TypeRegistry.for(_sm).registerError(CloudWatchLogsServiceException, CloudWatchLogsServiceException$1);
|
|
2392
2514
|
var AccountPolicies = [1, n0, _APc, 0, () => AccountPolicy];
|
|
2393
2515
|
var AddKeyEntries = [1, n0, _AKEd, 0, () => AddKeyEntry];
|
|
2516
|
+
var AggregateLogGroupSummaries = [1, n0, _ALGSg, 0, () => AggregateLogGroupSummary];
|
|
2394
2517
|
var AllowedFields = [1, n0, _AF, 0, () => RecordField];
|
|
2395
2518
|
var Anomalies = [1, n0, _An, 0, () => Anomaly];
|
|
2396
2519
|
var AnomalyDetectors = [1, n0, _ADn, 0, () => AnomalyDetector];
|
|
2397
2520
|
var ConfigurationTemplates = [1, n0, _CTo, 0, () => ConfigurationTemplate];
|
|
2398
2521
|
var CopyValueEntries = [1, n0, _CVEo, 0, () => CopyValueEntry];
|
|
2522
|
+
var DataSourceFilters = [1, n0, _DSFa, 0, () => DataSourceFilter];
|
|
2399
2523
|
var Deliveries = [1, n0, _Del, 0, () => Delivery];
|
|
2400
2524
|
var DeliveryDestinations = [1, n0, _DDe, 0, () => DeliveryDestination];
|
|
2401
|
-
var DeliverySources = [1, n0,
|
|
2525
|
+
var DeliverySources = [1, n0, _DSel, 0, () => DeliverySource];
|
|
2402
2526
|
var Destinations = [1, n0, _Des, 0, () => Destination];
|
|
2403
2527
|
var ExportTasks = [1, n0, _ETx, 0, () => ExportTask];
|
|
2404
2528
|
var FieldIndexes = [1, n0, _FIi, 0, () => FieldIndex];
|
|
2405
2529
|
var FilteredLogEvents = [1, n0, _FLEi, 0, () => FilteredLogEvent];
|
|
2530
|
+
var GroupingIdentifiers = [1, n0, _GIr, 0, () => GroupingIdentifier];
|
|
2406
2531
|
var IndexPolicies = [1, n0, _IPn, 0, () => IndexPolicy];
|
|
2407
2532
|
var InputLogEvents = [1, n0, _ILEn, 0, () => InputLogEvent];
|
|
2408
2533
|
var IntegrationSummaries = [1, n0, _ISn, 0, () => IntegrationSummary];
|
|
2409
2534
|
var LiveTailSessionResults = [1, n0, _LTSR, 0, () => LiveTailSessionLogEvent];
|
|
2535
|
+
var LogFieldsList = [1, n0, _LFL, 0, () => LogFieldsListItem];
|
|
2410
2536
|
var LogGroupFieldList = [1, n0, _LGFL, 0, () => LogGroupField];
|
|
2411
2537
|
var LogGroups = [1, n0, _LGo, 0, () => LogGroup];
|
|
2412
2538
|
var LogGroupSummaries = [1, n0, _LGSo, 0, () => LogGroupSummary];
|
|
@@ -2425,6 +2551,7 @@ var QueryResults = [1, n0, _QR, 0, () => ResultRows];
|
|
|
2425
2551
|
var RenameKeyEntries = [1, n0, _RKEe, 0, () => RenameKeyEntry];
|
|
2426
2552
|
var ResourcePolicies = [1, n0, _RPe, 0, () => ResourcePolicy];
|
|
2427
2553
|
var ResultRows = [1, n0, _RR, 0, () => ResultField];
|
|
2554
|
+
var S3TableIntegrationSources = [1, n0, _STISa, 0, () => S3TableIntegrationSource];
|
|
2428
2555
|
var ScheduledQueryDestinationList = [1, n0, _SQDL, 0, () => ScheduledQueryDestination];
|
|
2429
2556
|
var ScheduledQuerySummaryList = [1, n0, _SQSL, 0, () => ScheduledQuerySummary];
|
|
2430
2557
|
var SearchedLogStreams = [1, n0, _SLSe, 0, () => SearchedLogStream];
|
|
@@ -2441,7 +2568,7 @@ var GetLogObjectResponseStream = [
|
|
|
2441
2568
|
{
|
|
2442
2569
|
[_str]: 1,
|
|
2443
2570
|
},
|
|
2444
|
-
[
|
|
2571
|
+
[_fi, _ISEn],
|
|
2445
2572
|
[() => FieldsData, [() => InternalStreamingException, 0]],
|
|
2446
2573
|
];
|
|
2447
2574
|
var IntegrationDetails = [3, n0, _ID, 0, [_oSID], [() => OpenSearchIntegrationDetails]];
|
|
@@ -2462,6 +2589,14 @@ var StartLiveTailResponseStream = [
|
|
|
2462
2589
|
],
|
|
2463
2590
|
];
|
|
2464
2591
|
var AssociateKmsKey = [9, n0, _AKK, 0, () => AssociateKmsKeyRequest, () => __Unit];
|
|
2592
|
+
var AssociateSourceToS3TableIntegration = [
|
|
2593
|
+
9,
|
|
2594
|
+
n0,
|
|
2595
|
+
_ASTSTI,
|
|
2596
|
+
0,
|
|
2597
|
+
() => AssociateSourceToS3TableIntegrationRequest,
|
|
2598
|
+
() => AssociateSourceToS3TableIntegrationResponse,
|
|
2599
|
+
];
|
|
2465
2600
|
var CancelExportTask = [9, n0, _CET, 0, () => CancelExportTaskRequest, () => __Unit];
|
|
2466
2601
|
var CreateDelivery = [
|
|
2467
2602
|
9,
|
|
@@ -2601,7 +2736,7 @@ var DeleteScheduledQuery = [
|
|
|
2601
2736
|
var DeleteSubscriptionFilter = [
|
|
2602
2737
|
9,
|
|
2603
2738
|
n0,
|
|
2604
|
-
|
|
2739
|
+
_DSFe,
|
|
2605
2740
|
0,
|
|
2606
2741
|
() => DeleteSubscriptionFilterRequest,
|
|
2607
2742
|
() => __Unit,
|
|
@@ -2730,12 +2865,20 @@ var DescribeResourcePolicies = [
|
|
|
2730
2865
|
var DescribeSubscriptionFilters = [
|
|
2731
2866
|
9,
|
|
2732
2867
|
n0,
|
|
2733
|
-
|
|
2868
|
+
_DSFes,
|
|
2734
2869
|
0,
|
|
2735
2870
|
() => DescribeSubscriptionFiltersRequest,
|
|
2736
2871
|
() => DescribeSubscriptionFiltersResponse,
|
|
2737
2872
|
];
|
|
2738
2873
|
var DisassociateKmsKey = [9, n0, _DKK, 0, () => DisassociateKmsKeyRequest, () => __Unit];
|
|
2874
|
+
var DisassociateSourceFromS3TableIntegration = [
|
|
2875
|
+
9,
|
|
2876
|
+
n0,
|
|
2877
|
+
_DSFSTI,
|
|
2878
|
+
0,
|
|
2879
|
+
() => DisassociateSourceFromS3TableIntegrationRequest,
|
|
2880
|
+
() => DisassociateSourceFromS3TableIntegrationResponse,
|
|
2881
|
+
];
|
|
2739
2882
|
var FilterLogEvents = [
|
|
2740
2883
|
9,
|
|
2741
2884
|
n0,
|
|
@@ -2780,7 +2923,7 @@ var GetDeliverySource = [
|
|
|
2780
2923
|
var GetIntegration = [
|
|
2781
2924
|
9,
|
|
2782
2925
|
n0,
|
|
2783
|
-
|
|
2926
|
+
_GIe,
|
|
2784
2927
|
0,
|
|
2785
2928
|
() => GetIntegrationRequest,
|
|
2786
2929
|
() => GetIntegrationResponse,
|
|
@@ -2801,6 +2944,14 @@ var GetLogEvents = [
|
|
|
2801
2944
|
() => GetLogEventsRequest,
|
|
2802
2945
|
() => GetLogEventsResponse,
|
|
2803
2946
|
];
|
|
2947
|
+
var GetLogFields = [
|
|
2948
|
+
9,
|
|
2949
|
+
n0,
|
|
2950
|
+
_GLF,
|
|
2951
|
+
0,
|
|
2952
|
+
() => GetLogFieldsRequest,
|
|
2953
|
+
() => GetLogFieldsResponse,
|
|
2954
|
+
];
|
|
2804
2955
|
var GetLogGroupFields = [
|
|
2805
2956
|
9,
|
|
2806
2957
|
n0,
|
|
@@ -2859,6 +3010,14 @@ var GetTransformer = [
|
|
|
2859
3010
|
() => GetTransformerRequest,
|
|
2860
3011
|
() => GetTransformerResponse,
|
|
2861
3012
|
];
|
|
3013
|
+
var ListAggregateLogGroupSummaries = [
|
|
3014
|
+
9,
|
|
3015
|
+
n0,
|
|
3016
|
+
_LALGS,
|
|
3017
|
+
0,
|
|
3018
|
+
() => ListAggregateLogGroupSummariesRequest,
|
|
3019
|
+
() => ListAggregateLogGroupSummariesResponse,
|
|
3020
|
+
];
|
|
2862
3021
|
var ListAnomalies = [
|
|
2863
3022
|
9,
|
|
2864
3023
|
n0,
|
|
@@ -2907,6 +3066,14 @@ var ListScheduledQueries = [
|
|
|
2907
3066
|
() => ListScheduledQueriesRequest,
|
|
2908
3067
|
() => ListScheduledQueriesResponse,
|
|
2909
3068
|
];
|
|
3069
|
+
var ListSourcesForS3TableIntegration = [
|
|
3070
|
+
9,
|
|
3071
|
+
n0,
|
|
3072
|
+
_LSFSTI,
|
|
3073
|
+
0,
|
|
3074
|
+
() => ListSourcesForS3TableIntegrationRequest,
|
|
3075
|
+
() => ListSourcesForS3TableIntegrationResponse,
|
|
3076
|
+
];
|
|
2910
3077
|
var ListTagsForResource = [
|
|
2911
3078
|
9,
|
|
2912
3079
|
n0,
|
|
@@ -3108,6 +3275,18 @@ class AssociateKmsKeyCommand extends smithyClient.Command
|
|
|
3108
3275
|
.build() {
|
|
3109
3276
|
}
|
|
3110
3277
|
|
|
3278
|
+
class AssociateSourceToS3TableIntegrationCommand extends smithyClient.Command
|
|
3279
|
+
.classBuilder()
|
|
3280
|
+
.ep(commonParams)
|
|
3281
|
+
.m(function (Command, cs, config, o) {
|
|
3282
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3283
|
+
})
|
|
3284
|
+
.s("Logs_20140328", "AssociateSourceToS3TableIntegration", {})
|
|
3285
|
+
.n("CloudWatchLogsClient", "AssociateSourceToS3TableIntegrationCommand")
|
|
3286
|
+
.sc(AssociateSourceToS3TableIntegration)
|
|
3287
|
+
.build() {
|
|
3288
|
+
}
|
|
3289
|
+
|
|
3111
3290
|
class CancelExportTaskCommand extends smithyClient.Command
|
|
3112
3291
|
.classBuilder()
|
|
3113
3292
|
.ep(commonParams)
|
|
@@ -3624,6 +3803,18 @@ class DisassociateKmsKeyCommand extends smithyClient.Command
|
|
|
3624
3803
|
.build() {
|
|
3625
3804
|
}
|
|
3626
3805
|
|
|
3806
|
+
class DisassociateSourceFromS3TableIntegrationCommand extends smithyClient.Command
|
|
3807
|
+
.classBuilder()
|
|
3808
|
+
.ep(commonParams)
|
|
3809
|
+
.m(function (Command, cs, config, o) {
|
|
3810
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3811
|
+
})
|
|
3812
|
+
.s("Logs_20140328", "DisassociateSourceFromS3TableIntegration", {})
|
|
3813
|
+
.n("CloudWatchLogsClient", "DisassociateSourceFromS3TableIntegrationCommand")
|
|
3814
|
+
.sc(DisassociateSourceFromS3TableIntegration)
|
|
3815
|
+
.build() {
|
|
3816
|
+
}
|
|
3817
|
+
|
|
3627
3818
|
class FilterLogEventsCommand extends smithyClient.Command
|
|
3628
3819
|
.classBuilder()
|
|
3629
3820
|
.ep(commonParams)
|
|
@@ -3732,6 +3923,18 @@ class GetLogEventsCommand extends smithyClient.Command
|
|
|
3732
3923
|
.build() {
|
|
3733
3924
|
}
|
|
3734
3925
|
|
|
3926
|
+
class GetLogFieldsCommand extends smithyClient.Command
|
|
3927
|
+
.classBuilder()
|
|
3928
|
+
.ep(commonParams)
|
|
3929
|
+
.m(function (Command, cs, config, o) {
|
|
3930
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3931
|
+
})
|
|
3932
|
+
.s("Logs_20140328", "GetLogFields", {})
|
|
3933
|
+
.n("CloudWatchLogsClient", "GetLogFieldsCommand")
|
|
3934
|
+
.sc(GetLogFields)
|
|
3935
|
+
.build() {
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3735
3938
|
class GetLogGroupFieldsCommand extends smithyClient.Command
|
|
3736
3939
|
.classBuilder()
|
|
3737
3940
|
.ep(commonParams)
|
|
@@ -3820,6 +4023,18 @@ class GetTransformerCommand extends smithyClient.Command
|
|
|
3820
4023
|
.build() {
|
|
3821
4024
|
}
|
|
3822
4025
|
|
|
4026
|
+
class ListAggregateLogGroupSummariesCommand extends smithyClient.Command
|
|
4027
|
+
.classBuilder()
|
|
4028
|
+
.ep(commonParams)
|
|
4029
|
+
.m(function (Command, cs, config, o) {
|
|
4030
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4031
|
+
})
|
|
4032
|
+
.s("Logs_20140328", "ListAggregateLogGroupSummaries", {})
|
|
4033
|
+
.n("CloudWatchLogsClient", "ListAggregateLogGroupSummariesCommand")
|
|
4034
|
+
.sc(ListAggregateLogGroupSummaries)
|
|
4035
|
+
.build() {
|
|
4036
|
+
}
|
|
4037
|
+
|
|
3823
4038
|
class ListAnomaliesCommand extends smithyClient.Command
|
|
3824
4039
|
.classBuilder()
|
|
3825
4040
|
.ep(commonParams)
|
|
@@ -3892,6 +4107,18 @@ class ListScheduledQueriesCommand extends smithyClient.Command
|
|
|
3892
4107
|
.build() {
|
|
3893
4108
|
}
|
|
3894
4109
|
|
|
4110
|
+
class ListSourcesForS3TableIntegrationCommand extends smithyClient.Command
|
|
4111
|
+
.classBuilder()
|
|
4112
|
+
.ep(commonParams)
|
|
4113
|
+
.m(function (Command, cs, config, o) {
|
|
4114
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4115
|
+
})
|
|
4116
|
+
.s("Logs_20140328", "ListSourcesForS3TableIntegration", {})
|
|
4117
|
+
.n("CloudWatchLogsClient", "ListSourcesForS3TableIntegrationCommand")
|
|
4118
|
+
.sc(ListSourcesForS3TableIntegration)
|
|
4119
|
+
.build() {
|
|
4120
|
+
}
|
|
4121
|
+
|
|
3895
4122
|
class ListTagsForResourceCommand extends smithyClient.Command
|
|
3896
4123
|
.classBuilder()
|
|
3897
4124
|
.ep(commonParams)
|
|
@@ -4282,6 +4509,7 @@ class UpdateScheduledQueryCommand extends smithyClient.Command
|
|
|
4282
4509
|
|
|
4283
4510
|
const commands = {
|
|
4284
4511
|
AssociateKmsKeyCommand,
|
|
4512
|
+
AssociateSourceToS3TableIntegrationCommand,
|
|
4285
4513
|
CancelExportTaskCommand,
|
|
4286
4514
|
CreateDeliveryCommand,
|
|
4287
4515
|
CreateExportTaskCommand,
|
|
@@ -4325,6 +4553,7 @@ const commands = {
|
|
|
4325
4553
|
DescribeResourcePoliciesCommand,
|
|
4326
4554
|
DescribeSubscriptionFiltersCommand,
|
|
4327
4555
|
DisassociateKmsKeyCommand,
|
|
4556
|
+
DisassociateSourceFromS3TableIntegrationCommand,
|
|
4328
4557
|
FilterLogEventsCommand,
|
|
4329
4558
|
GetDataProtectionPolicyCommand,
|
|
4330
4559
|
GetDeliveryCommand,
|
|
@@ -4334,6 +4563,7 @@ const commands = {
|
|
|
4334
4563
|
GetIntegrationCommand,
|
|
4335
4564
|
GetLogAnomalyDetectorCommand,
|
|
4336
4565
|
GetLogEventsCommand,
|
|
4566
|
+
GetLogFieldsCommand,
|
|
4337
4567
|
GetLogGroupFieldsCommand,
|
|
4338
4568
|
GetLogObjectCommand,
|
|
4339
4569
|
GetLogRecordCommand,
|
|
@@ -4341,12 +4571,14 @@ const commands = {
|
|
|
4341
4571
|
GetScheduledQueryCommand,
|
|
4342
4572
|
GetScheduledQueryHistoryCommand,
|
|
4343
4573
|
GetTransformerCommand,
|
|
4574
|
+
ListAggregateLogGroupSummariesCommand,
|
|
4344
4575
|
ListAnomaliesCommand,
|
|
4345
4576
|
ListIntegrationsCommand,
|
|
4346
4577
|
ListLogAnomalyDetectorsCommand,
|
|
4347
4578
|
ListLogGroupsCommand,
|
|
4348
4579
|
ListLogGroupsForQueryCommand,
|
|
4349
4580
|
ListScheduledQueriesCommand,
|
|
4581
|
+
ListSourcesForS3TableIntegrationCommand,
|
|
4350
4582
|
ListTagsForResourceCommand,
|
|
4351
4583
|
ListTagsLogGroupCommand,
|
|
4352
4584
|
PutAccountPolicyCommand,
|
|
@@ -4416,6 +4648,8 @@ const paginateListLogGroupsForQuery = core.createPaginator(CloudWatchLogsClient,
|
|
|
4416
4648
|
|
|
4417
4649
|
const paginateListScheduledQueries = core.createPaginator(CloudWatchLogsClient, ListScheduledQueriesCommand, "nextToken", "nextToken", "maxResults");
|
|
4418
4650
|
|
|
4651
|
+
const paginateListSourcesForS3TableIntegration = core.createPaginator(CloudWatchLogsClient, ListSourcesForS3TableIntegrationCommand, "nextToken", "nextToken", "maxResults");
|
|
4652
|
+
|
|
4419
4653
|
const PolicyType = {
|
|
4420
4654
|
DATA_PROTECTION_POLICY: "DATA_PROTECTION_POLICY",
|
|
4421
4655
|
FIELD_INDEX_POLICY: "FIELD_INDEX_POLICY",
|
|
@@ -4494,6 +4728,10 @@ const ExportTaskStatusCode = {
|
|
|
4494
4728
|
PENDING_CANCEL: "PENDING_CANCEL",
|
|
4495
4729
|
RUNNING: "RUNNING",
|
|
4496
4730
|
};
|
|
4731
|
+
const IndexType = {
|
|
4732
|
+
FACET: "FACET",
|
|
4733
|
+
FIELD_INDEX: "FIELD_INDEX",
|
|
4734
|
+
};
|
|
4497
4735
|
const IndexSource = {
|
|
4498
4736
|
ACCOUNT: "ACCOUNT",
|
|
4499
4737
|
LOG_GROUP: "LOG_GROUP",
|
|
@@ -4604,10 +4842,20 @@ const Type = {
|
|
|
4604
4842
|
INTEGER: "integer",
|
|
4605
4843
|
STRING: "string",
|
|
4606
4844
|
};
|
|
4845
|
+
const ListAggregateLogGroupSummariesGroupBy = {
|
|
4846
|
+
DATA_SOURCE_NAME_AND_TYPE: "DATA_SOURCE_NAME_AND_TYPE",
|
|
4847
|
+
DATA_SOURCE_NAME_TYPE_AND_FORMAT: "DATA_SOURCE_NAME_TYPE_AND_FORMAT",
|
|
4848
|
+
};
|
|
4607
4849
|
const SuppressionState = {
|
|
4608
4850
|
SUPPRESSED: "SUPPRESSED",
|
|
4609
4851
|
UNSUPPRESSED: "UNSUPPRESSED",
|
|
4610
4852
|
};
|
|
4853
|
+
const S3TableIntegrationSourceStatus = {
|
|
4854
|
+
ACTIVE: "ACTIVE",
|
|
4855
|
+
DATA_SOURCE_DELETE_IN_PROGRESS: "DATA_SOURCE_DELETE_IN_PROGRESS",
|
|
4856
|
+
FAILED: "FAILED",
|
|
4857
|
+
UNHEALTHY: "UNHEALTHY",
|
|
4858
|
+
};
|
|
4611
4859
|
const SuppressionUnit = {
|
|
4612
4860
|
HOURS: "HOURS",
|
|
4613
4861
|
MINUTES: "MINUTES",
|
|
@@ -4630,6 +4878,7 @@ exports.AccessDeniedException = AccessDeniedException$1;
|
|
|
4630
4878
|
exports.ActionStatus = ActionStatus;
|
|
4631
4879
|
exports.AnomalyDetectorStatus = AnomalyDetectorStatus;
|
|
4632
4880
|
exports.AssociateKmsKeyCommand = AssociateKmsKeyCommand;
|
|
4881
|
+
exports.AssociateSourceToS3TableIntegrationCommand = AssociateSourceToS3TableIntegrationCommand;
|
|
4633
4882
|
exports.CancelExportTaskCommand = CancelExportTaskCommand;
|
|
4634
4883
|
exports.CloudWatchLogs = CloudWatchLogs;
|
|
4635
4884
|
exports.CloudWatchLogsClient = CloudWatchLogsClient;
|
|
@@ -4680,6 +4929,7 @@ exports.DescribeQueryDefinitionsCommand = DescribeQueryDefinitionsCommand;
|
|
|
4680
4929
|
exports.DescribeResourcePoliciesCommand = DescribeResourcePoliciesCommand;
|
|
4681
4930
|
exports.DescribeSubscriptionFiltersCommand = DescribeSubscriptionFiltersCommand;
|
|
4682
4931
|
exports.DisassociateKmsKeyCommand = DisassociateKmsKeyCommand;
|
|
4932
|
+
exports.DisassociateSourceFromS3TableIntegrationCommand = DisassociateSourceFromS3TableIntegrationCommand;
|
|
4683
4933
|
exports.Distribution = Distribution;
|
|
4684
4934
|
exports.EntityRejectionErrorType = EntityRejectionErrorType;
|
|
4685
4935
|
exports.EvaluationFrequency = EvaluationFrequency;
|
|
@@ -4696,6 +4946,7 @@ exports.GetDeliverySourceCommand = GetDeliverySourceCommand;
|
|
|
4696
4946
|
exports.GetIntegrationCommand = GetIntegrationCommand;
|
|
4697
4947
|
exports.GetLogAnomalyDetectorCommand = GetLogAnomalyDetectorCommand;
|
|
4698
4948
|
exports.GetLogEventsCommand = GetLogEventsCommand;
|
|
4949
|
+
exports.GetLogFieldsCommand = GetLogFieldsCommand;
|
|
4699
4950
|
exports.GetLogGroupFieldsCommand = GetLogGroupFieldsCommand;
|
|
4700
4951
|
exports.GetLogObjectCommand = GetLogObjectCommand;
|
|
4701
4952
|
exports.GetLogRecordCommand = GetLogRecordCommand;
|
|
@@ -4704,6 +4955,7 @@ exports.GetScheduledQueryCommand = GetScheduledQueryCommand;
|
|
|
4704
4955
|
exports.GetScheduledQueryHistoryCommand = GetScheduledQueryHistoryCommand;
|
|
4705
4956
|
exports.GetTransformerCommand = GetTransformerCommand;
|
|
4706
4957
|
exports.IndexSource = IndexSource;
|
|
4958
|
+
exports.IndexType = IndexType;
|
|
4707
4959
|
exports.InheritedProperty = InheritedProperty;
|
|
4708
4960
|
exports.IntegrationStatus = IntegrationStatus;
|
|
4709
4961
|
exports.IntegrationType = IntegrationType;
|
|
@@ -4713,12 +4965,15 @@ exports.InvalidOperationException = InvalidOperationException$1;
|
|
|
4713
4965
|
exports.InvalidParameterException = InvalidParameterException$1;
|
|
4714
4966
|
exports.InvalidSequenceTokenException = InvalidSequenceTokenException$1;
|
|
4715
4967
|
exports.LimitExceededException = LimitExceededException$1;
|
|
4968
|
+
exports.ListAggregateLogGroupSummariesCommand = ListAggregateLogGroupSummariesCommand;
|
|
4969
|
+
exports.ListAggregateLogGroupSummariesGroupBy = ListAggregateLogGroupSummariesGroupBy;
|
|
4716
4970
|
exports.ListAnomaliesCommand = ListAnomaliesCommand;
|
|
4717
4971
|
exports.ListIntegrationsCommand = ListIntegrationsCommand;
|
|
4718
4972
|
exports.ListLogAnomalyDetectorsCommand = ListLogAnomalyDetectorsCommand;
|
|
4719
4973
|
exports.ListLogGroupsCommand = ListLogGroupsCommand;
|
|
4720
4974
|
exports.ListLogGroupsForQueryCommand = ListLogGroupsForQueryCommand;
|
|
4721
4975
|
exports.ListScheduledQueriesCommand = ListScheduledQueriesCommand;
|
|
4976
|
+
exports.ListSourcesForS3TableIntegrationCommand = ListSourcesForS3TableIntegrationCommand;
|
|
4722
4977
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4723
4978
|
exports.ListTagsLogGroupCommand = ListTagsLogGroupCommand;
|
|
4724
4979
|
exports.LogGroupClass = LogGroupClass;
|
|
@@ -4751,6 +5006,7 @@ exports.QueryLanguage = QueryLanguage;
|
|
|
4751
5006
|
exports.QueryStatus = QueryStatus;
|
|
4752
5007
|
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException$1;
|
|
4753
5008
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
5009
|
+
exports.S3TableIntegrationSourceStatus = S3TableIntegrationSourceStatus;
|
|
4754
5010
|
exports.ScheduledQueryDestinationType = ScheduledQueryDestinationType;
|
|
4755
5011
|
exports.ScheduledQueryState = ScheduledQueryState;
|
|
4756
5012
|
exports.Scope = Scope;
|
|
@@ -4797,3 +5053,4 @@ exports.paginateListAnomalies = paginateListAnomalies;
|
|
|
4797
5053
|
exports.paginateListLogAnomalyDetectors = paginateListLogAnomalyDetectors;
|
|
4798
5054
|
exports.paginateListLogGroupsForQuery = paginateListLogGroupsForQuery;
|
|
4799
5055
|
exports.paginateListScheduledQueries = paginateListScheduledQueries;
|
|
5056
|
+
exports.paginateListSourcesForS3TableIntegration = paginateListSourcesForS3TableIntegration;
|