@aws-sdk/client-cloudwatch-logs 3.940.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
|
@@ -62,64 +62,78 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
62
62
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
|
-
* <p>
|
|
65
|
+
* <p>An internal server error occurred while processing the request. This exception is returned
|
|
66
|
+
* when the service encounters an unexpected condition that prevents it from fulfilling the
|
|
67
|
+
* request.</p>
|
|
66
68
|
* @public
|
|
67
69
|
*/
|
|
68
|
-
export declare class
|
|
69
|
-
readonly name: "
|
|
70
|
+
export declare class InternalServerException extends __BaseException {
|
|
71
|
+
readonly name: "InternalServerException";
|
|
72
|
+
readonly $fault: "server";
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
76
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* <p>The request was throttled because of quota limits.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export declare class ThrottlingException extends __BaseException {
|
|
83
|
+
readonly name: "ThrottlingException";
|
|
70
84
|
readonly $fault: "client";
|
|
71
85
|
/**
|
|
72
86
|
* @internal
|
|
73
87
|
*/
|
|
74
|
-
constructor(opts: __ExceptionOptionType<
|
|
88
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
75
89
|
}
|
|
76
90
|
/**
|
|
77
|
-
* <p>
|
|
91
|
+
* <p>One of the parameters for the request is not valid.</p>
|
|
78
92
|
* @public
|
|
79
93
|
*/
|
|
80
|
-
export declare class
|
|
81
|
-
readonly name: "
|
|
94
|
+
export declare class ValidationException extends __BaseException {
|
|
95
|
+
readonly name: "ValidationException";
|
|
82
96
|
readonly $fault: "client";
|
|
83
97
|
/**
|
|
84
98
|
* @internal
|
|
85
99
|
*/
|
|
86
|
-
constructor(opts: __ExceptionOptionType<
|
|
100
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
87
101
|
}
|
|
88
102
|
/**
|
|
89
|
-
* <p>
|
|
103
|
+
* <p>The operation is not valid on the specified resource.</p>
|
|
90
104
|
* @public
|
|
91
105
|
*/
|
|
92
|
-
export declare class
|
|
93
|
-
readonly name: "
|
|
106
|
+
export declare class InvalidOperationException extends __BaseException {
|
|
107
|
+
readonly name: "InvalidOperationException";
|
|
94
108
|
readonly $fault: "client";
|
|
95
109
|
/**
|
|
96
110
|
* @internal
|
|
97
111
|
*/
|
|
98
|
-
constructor(opts: __ExceptionOptionType<
|
|
112
|
+
constructor(opts: __ExceptionOptionType<InvalidOperationException, __BaseException>);
|
|
99
113
|
}
|
|
100
114
|
/**
|
|
101
|
-
* <p>
|
|
115
|
+
* <p>This operation attempted to create a resource that already exists.</p>
|
|
102
116
|
* @public
|
|
103
117
|
*/
|
|
104
|
-
export declare class
|
|
105
|
-
readonly name: "
|
|
118
|
+
export declare class ConflictException extends __BaseException {
|
|
119
|
+
readonly name: "ConflictException";
|
|
106
120
|
readonly $fault: "client";
|
|
107
121
|
/**
|
|
108
122
|
* @internal
|
|
109
123
|
*/
|
|
110
|
-
constructor(opts: __ExceptionOptionType<
|
|
124
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
111
125
|
}
|
|
112
126
|
/**
|
|
113
|
-
* <p>
|
|
127
|
+
* <p>This request exceeds a service quota.</p>
|
|
114
128
|
* @public
|
|
115
129
|
*/
|
|
116
|
-
export declare class
|
|
117
|
-
readonly name: "
|
|
130
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
131
|
+
readonly name: "ServiceQuotaExceededException";
|
|
118
132
|
readonly $fault: "client";
|
|
119
133
|
/**
|
|
120
134
|
* @internal
|
|
121
135
|
*/
|
|
122
|
-
constructor(opts: __ExceptionOptionType<
|
|
136
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
123
137
|
}
|
|
124
138
|
/**
|
|
125
139
|
* <p>You have reached the maximum number of resources that can be created.</p>
|
|
@@ -145,18 +159,6 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
145
159
|
*/
|
|
146
160
|
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
147
161
|
}
|
|
148
|
-
/**
|
|
149
|
-
* <p>An internal server error occurred while processing the request. This is typically a temporary issue and the request can be retried.</p>
|
|
150
|
-
* @public
|
|
151
|
-
*/
|
|
152
|
-
export declare class InternalServerException extends __BaseException {
|
|
153
|
-
readonly name: "InternalServerException";
|
|
154
|
-
readonly $fault: "server";
|
|
155
|
-
/**
|
|
156
|
-
* @internal
|
|
157
|
-
*/
|
|
158
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
159
|
-
}
|
|
160
162
|
/**
|
|
161
163
|
* <p>The event was already logged.</p>
|
|
162
164
|
* <important>
|