@aws-sdk/client-codeguruprofiler 3.49.0 → 3.50.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/CHANGELOG.md +8 -0
- package/package.json +25 -25
- package/dist-types/ts3.4/CodeGuruProfiler.d.ts +0 -120
- package/dist-types/ts3.4/CodeGuruProfilerClient.d.ts +0 -96
- package/dist-types/ts3.4/commands/AddNotificationChannelsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/BatchGetFrameMetricDataCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ConfigureAgentCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/CreateProfilingGroupCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DeleteProfilingGroupCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeProfilingGroupCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetFindingsReportAccountSummaryCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetNotificationConfigurationCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListFindingsReportsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListProfileTimesCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListProfilingGroupsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/PostAgentProfileCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/PutPermissionCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/SubmitFeedbackCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UpdateProfilingGroupCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/index.d.ts +0 -23
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/index.d.ts +0 -5
- package/dist-types/ts3.4/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -913
- package/dist-types/ts3.4/pagination/GetFindingsReportAccountSummaryPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist-types/ts3.4/pagination/ListFindingsReportsPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/ListProfileTimesPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/ListProfilingGroupsPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/index.d.ts +0 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -71
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
|
@@ -1,913 +0,0 @@
|
|
|
1
|
-
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
-
export declare enum ActionGroup {
|
|
3
|
-
|
|
4
|
-
AGENT_PERMISSIONS = "agentPermissions"
|
|
5
|
-
}
|
|
6
|
-
export declare enum EventPublisher {
|
|
7
|
-
|
|
8
|
-
ANOMALY_DETECTION = "AnomalyDetection"
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export interface Channel {
|
|
12
|
-
|
|
13
|
-
id?: string;
|
|
14
|
-
|
|
15
|
-
uri: string | undefined;
|
|
16
|
-
|
|
17
|
-
eventPublishers: (EventPublisher | string)[] | undefined;
|
|
18
|
-
}
|
|
19
|
-
export declare namespace Channel {
|
|
20
|
-
|
|
21
|
-
const filterSensitiveLog: (obj: Channel) => any;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export interface AddNotificationChannelsRequest {
|
|
25
|
-
|
|
26
|
-
profilingGroupName: string | undefined;
|
|
27
|
-
|
|
28
|
-
channels: Channel[] | undefined;
|
|
29
|
-
}
|
|
30
|
-
export declare namespace AddNotificationChannelsRequest {
|
|
31
|
-
|
|
32
|
-
const filterSensitiveLog: (obj: AddNotificationChannelsRequest) => any;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export interface NotificationConfiguration {
|
|
36
|
-
|
|
37
|
-
channels?: Channel[];
|
|
38
|
-
}
|
|
39
|
-
export declare namespace NotificationConfiguration {
|
|
40
|
-
|
|
41
|
-
const filterSensitiveLog: (obj: NotificationConfiguration) => any;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
export interface AddNotificationChannelsResponse {
|
|
45
|
-
|
|
46
|
-
notificationConfiguration?: NotificationConfiguration;
|
|
47
|
-
}
|
|
48
|
-
export declare namespace AddNotificationChannelsResponse {
|
|
49
|
-
|
|
50
|
-
const filterSensitiveLog: (obj: AddNotificationChannelsResponse) => any;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
54
|
-
name: "ConflictException";
|
|
55
|
-
$fault: "client";
|
|
56
|
-
message: string | undefined;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
60
|
-
name: "InternalServerException";
|
|
61
|
-
$fault: "server";
|
|
62
|
-
$retryable: {};
|
|
63
|
-
message: string | undefined;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
67
|
-
name: "ResourceNotFoundException";
|
|
68
|
-
$fault: "client";
|
|
69
|
-
message: string | undefined;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
73
|
-
name: "ServiceQuotaExceededException";
|
|
74
|
-
$fault: "client";
|
|
75
|
-
$retryable: {};
|
|
76
|
-
message: string | undefined;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
80
|
-
name: "ThrottlingException";
|
|
81
|
-
$fault: "client";
|
|
82
|
-
$retryable: {};
|
|
83
|
-
message: string | undefined;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
87
|
-
name: "ValidationException";
|
|
88
|
-
$fault: "client";
|
|
89
|
-
message: string | undefined;
|
|
90
|
-
}
|
|
91
|
-
export declare enum AgentParameterField {
|
|
92
|
-
|
|
93
|
-
MAX_STACK_DEPTH = "MaxStackDepth",
|
|
94
|
-
|
|
95
|
-
MEMORY_USAGE_LIMIT_PERCENT = "MemoryUsageLimitPercent",
|
|
96
|
-
|
|
97
|
-
MINIMUM_TIME_FOR_REPORTING_IN_MILLISECONDS = "MinimumTimeForReportingInMilliseconds",
|
|
98
|
-
|
|
99
|
-
REPORTING_INTERVAL_IN_MILLISECONDS = "ReportingIntervalInMilliseconds",
|
|
100
|
-
|
|
101
|
-
SAMPLING_INTERVAL_IN_MILLISECONDS = "SamplingIntervalInMilliseconds"
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
export interface AgentConfiguration {
|
|
105
|
-
|
|
106
|
-
shouldProfile: boolean | undefined;
|
|
107
|
-
|
|
108
|
-
periodInSeconds: number | undefined;
|
|
109
|
-
|
|
110
|
-
agentParameters?: {
|
|
111
|
-
[key: string]: string;
|
|
112
|
-
};
|
|
113
|
-
}
|
|
114
|
-
export declare namespace AgentConfiguration {
|
|
115
|
-
|
|
116
|
-
const filterSensitiveLog: (obj: AgentConfiguration) => any;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
export interface AgentOrchestrationConfig {
|
|
120
|
-
|
|
121
|
-
profilingEnabled: boolean | undefined;
|
|
122
|
-
}
|
|
123
|
-
export declare namespace AgentOrchestrationConfig {
|
|
124
|
-
|
|
125
|
-
const filterSensitiveLog: (obj: AgentOrchestrationConfig) => any;
|
|
126
|
-
}
|
|
127
|
-
export declare enum AggregationPeriod {
|
|
128
|
-
|
|
129
|
-
P1D = "P1D",
|
|
130
|
-
|
|
131
|
-
PT1H = "PT1H",
|
|
132
|
-
|
|
133
|
-
PT5M = "PT5M"
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
export interface AggregatedProfileTime {
|
|
137
|
-
|
|
138
|
-
start?: Date;
|
|
139
|
-
|
|
140
|
-
period?: AggregationPeriod | string;
|
|
141
|
-
}
|
|
142
|
-
export declare namespace AggregatedProfileTime {
|
|
143
|
-
|
|
144
|
-
const filterSensitiveLog: (obj: AggregatedProfileTime) => any;
|
|
145
|
-
}
|
|
146
|
-
export declare enum FeedbackType {
|
|
147
|
-
|
|
148
|
-
Negative = "Negative",
|
|
149
|
-
|
|
150
|
-
Positive = "Positive"
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
export interface UserFeedback {
|
|
154
|
-
|
|
155
|
-
type: FeedbackType | string | undefined;
|
|
156
|
-
}
|
|
157
|
-
export declare namespace UserFeedback {
|
|
158
|
-
|
|
159
|
-
const filterSensitiveLog: (obj: UserFeedback) => any;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
export interface AnomalyInstance {
|
|
163
|
-
|
|
164
|
-
id: string | undefined;
|
|
165
|
-
|
|
166
|
-
startTime: Date | undefined;
|
|
167
|
-
|
|
168
|
-
endTime?: Date;
|
|
169
|
-
|
|
170
|
-
userFeedback?: UserFeedback;
|
|
171
|
-
}
|
|
172
|
-
export declare namespace AnomalyInstance {
|
|
173
|
-
|
|
174
|
-
const filterSensitiveLog: (obj: AnomalyInstance) => any;
|
|
175
|
-
}
|
|
176
|
-
export declare enum MetricType {
|
|
177
|
-
|
|
178
|
-
AggregatedRelativeTotalTime = "AggregatedRelativeTotalTime"
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
export interface Metric {
|
|
182
|
-
|
|
183
|
-
frameName: string | undefined;
|
|
184
|
-
|
|
185
|
-
type: MetricType | string | undefined;
|
|
186
|
-
|
|
187
|
-
threadStates: string[] | undefined;
|
|
188
|
-
}
|
|
189
|
-
export declare namespace Metric {
|
|
190
|
-
|
|
191
|
-
const filterSensitiveLog: (obj: Metric) => any;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
export interface Anomaly {
|
|
195
|
-
|
|
196
|
-
metric: Metric | undefined;
|
|
197
|
-
|
|
198
|
-
reason: string | undefined;
|
|
199
|
-
|
|
200
|
-
instances: AnomalyInstance[] | undefined;
|
|
201
|
-
}
|
|
202
|
-
export declare namespace Anomaly {
|
|
203
|
-
|
|
204
|
-
const filterSensitiveLog: (obj: Anomaly) => any;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
export interface FrameMetric {
|
|
208
|
-
|
|
209
|
-
frameName: string | undefined;
|
|
210
|
-
|
|
211
|
-
type: MetricType | string | undefined;
|
|
212
|
-
|
|
213
|
-
threadStates: string[] | undefined;
|
|
214
|
-
}
|
|
215
|
-
export declare namespace FrameMetric {
|
|
216
|
-
|
|
217
|
-
const filterSensitiveLog: (obj: FrameMetric) => any;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
export interface BatchGetFrameMetricDataRequest {
|
|
221
|
-
|
|
222
|
-
profilingGroupName: string | undefined;
|
|
223
|
-
|
|
224
|
-
startTime?: Date;
|
|
225
|
-
|
|
226
|
-
endTime?: Date;
|
|
227
|
-
|
|
228
|
-
period?: string;
|
|
229
|
-
|
|
230
|
-
targetResolution?: AggregationPeriod | string;
|
|
231
|
-
|
|
232
|
-
frameMetrics?: FrameMetric[];
|
|
233
|
-
}
|
|
234
|
-
export declare namespace BatchGetFrameMetricDataRequest {
|
|
235
|
-
|
|
236
|
-
const filterSensitiveLog: (obj: BatchGetFrameMetricDataRequest) => any;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
export interface TimestampStructure {
|
|
240
|
-
|
|
241
|
-
value: Date | undefined;
|
|
242
|
-
}
|
|
243
|
-
export declare namespace TimestampStructure {
|
|
244
|
-
|
|
245
|
-
const filterSensitiveLog: (obj: TimestampStructure) => any;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
export interface FrameMetricDatum {
|
|
249
|
-
|
|
250
|
-
frameMetric: FrameMetric | undefined;
|
|
251
|
-
|
|
252
|
-
values: number[] | undefined;
|
|
253
|
-
}
|
|
254
|
-
export declare namespace FrameMetricDatum {
|
|
255
|
-
|
|
256
|
-
const filterSensitiveLog: (obj: FrameMetricDatum) => any;
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
export interface BatchGetFrameMetricDataResponse {
|
|
260
|
-
|
|
261
|
-
startTime: Date | undefined;
|
|
262
|
-
|
|
263
|
-
endTime: Date | undefined;
|
|
264
|
-
|
|
265
|
-
resolution: AggregationPeriod | string | undefined;
|
|
266
|
-
|
|
267
|
-
endTimes: TimestampStructure[] | undefined;
|
|
268
|
-
|
|
269
|
-
unprocessedEndTimes: {
|
|
270
|
-
[key: string]: TimestampStructure[];
|
|
271
|
-
} | undefined;
|
|
272
|
-
|
|
273
|
-
frameMetricData: FrameMetricDatum[] | undefined;
|
|
274
|
-
}
|
|
275
|
-
export declare namespace BatchGetFrameMetricDataResponse {
|
|
276
|
-
|
|
277
|
-
const filterSensitiveLog: (obj: BatchGetFrameMetricDataResponse) => any;
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
export interface GetFindingsReportAccountSummaryRequest {
|
|
281
|
-
|
|
282
|
-
nextToken?: string;
|
|
283
|
-
|
|
284
|
-
maxResults?: number;
|
|
285
|
-
|
|
286
|
-
dailyReportsOnly?: boolean;
|
|
287
|
-
}
|
|
288
|
-
export declare namespace GetFindingsReportAccountSummaryRequest {
|
|
289
|
-
|
|
290
|
-
const filterSensitiveLog: (obj: GetFindingsReportAccountSummaryRequest) => any;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
export interface FindingsReportSummary {
|
|
294
|
-
|
|
295
|
-
id?: string;
|
|
296
|
-
|
|
297
|
-
profilingGroupName?: string;
|
|
298
|
-
|
|
299
|
-
profileStartTime?: Date;
|
|
300
|
-
|
|
301
|
-
profileEndTime?: Date;
|
|
302
|
-
|
|
303
|
-
totalNumberOfFindings?: number;
|
|
304
|
-
}
|
|
305
|
-
export declare namespace FindingsReportSummary {
|
|
306
|
-
|
|
307
|
-
const filterSensitiveLog: (obj: FindingsReportSummary) => any;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
export interface GetFindingsReportAccountSummaryResponse {
|
|
311
|
-
|
|
312
|
-
reportSummaries: FindingsReportSummary[] | undefined;
|
|
313
|
-
|
|
314
|
-
nextToken?: string;
|
|
315
|
-
}
|
|
316
|
-
export declare namespace GetFindingsReportAccountSummaryResponse {
|
|
317
|
-
|
|
318
|
-
const filterSensitiveLog: (obj: GetFindingsReportAccountSummaryResponse) => any;
|
|
319
|
-
}
|
|
320
|
-
export interface ListTagsForResourceRequest {
|
|
321
|
-
|
|
322
|
-
resourceArn: string | undefined;
|
|
323
|
-
}
|
|
324
|
-
export declare namespace ListTagsForResourceRequest {
|
|
325
|
-
|
|
326
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
327
|
-
}
|
|
328
|
-
export interface ListTagsForResourceResponse {
|
|
329
|
-
|
|
330
|
-
tags?: {
|
|
331
|
-
[key: string]: string;
|
|
332
|
-
};
|
|
333
|
-
}
|
|
334
|
-
export declare namespace ListTagsForResourceResponse {
|
|
335
|
-
|
|
336
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
337
|
-
}
|
|
338
|
-
export declare enum MetadataField {
|
|
339
|
-
|
|
340
|
-
AGENT_ID = "AgentId",
|
|
341
|
-
|
|
342
|
-
AWS_REQUEST_ID = "AwsRequestId",
|
|
343
|
-
|
|
344
|
-
COMPUTE_PLATFORM = "ComputePlatform",
|
|
345
|
-
|
|
346
|
-
EXECUTION_ENVIRONMENT = "ExecutionEnvironment",
|
|
347
|
-
|
|
348
|
-
LAMBDA_FUNCTION_ARN = "LambdaFunctionArn",
|
|
349
|
-
|
|
350
|
-
LAMBDA_MEMORY_LIMIT_IN_MB = "LambdaMemoryLimitInMB",
|
|
351
|
-
|
|
352
|
-
LAMBDA_PREVIOUS_EXECUTION_TIME_IN_MILLISECONDS = "LambdaPreviousExecutionTimeInMilliseconds",
|
|
353
|
-
|
|
354
|
-
LAMBDA_REMAINING_TIME_IN_MILLISECONDS = "LambdaRemainingTimeInMilliseconds",
|
|
355
|
-
|
|
356
|
-
LAMBDA_TIME_GAP_BETWEEN_INVOKES_IN_MILLISECONDS = "LambdaTimeGapBetweenInvokesInMilliseconds"
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
export interface ConfigureAgentRequest {
|
|
360
|
-
|
|
361
|
-
profilingGroupName: string | undefined;
|
|
362
|
-
|
|
363
|
-
fleetInstanceId?: string;
|
|
364
|
-
|
|
365
|
-
metadata?: {
|
|
366
|
-
[key: string]: string;
|
|
367
|
-
};
|
|
368
|
-
}
|
|
369
|
-
export declare namespace ConfigureAgentRequest {
|
|
370
|
-
|
|
371
|
-
const filterSensitiveLog: (obj: ConfigureAgentRequest) => any;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
export interface ConfigureAgentResponse {
|
|
375
|
-
|
|
376
|
-
configuration: AgentConfiguration | undefined;
|
|
377
|
-
}
|
|
378
|
-
export declare namespace ConfigureAgentResponse {
|
|
379
|
-
|
|
380
|
-
const filterSensitiveLog: (obj: ConfigureAgentResponse) => any;
|
|
381
|
-
}
|
|
382
|
-
export declare enum ComputePlatform {
|
|
383
|
-
|
|
384
|
-
AWSLAMBDA = "AWSLambda",
|
|
385
|
-
|
|
386
|
-
DEFAULT = "Default"
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
export interface CreateProfilingGroupRequest {
|
|
390
|
-
|
|
391
|
-
profilingGroupName: string | undefined;
|
|
392
|
-
|
|
393
|
-
computePlatform?: ComputePlatform | string;
|
|
394
|
-
|
|
395
|
-
clientToken?: string;
|
|
396
|
-
|
|
397
|
-
agentOrchestrationConfig?: AgentOrchestrationConfig;
|
|
398
|
-
|
|
399
|
-
tags?: {
|
|
400
|
-
[key: string]: string;
|
|
401
|
-
};
|
|
402
|
-
}
|
|
403
|
-
export declare namespace CreateProfilingGroupRequest {
|
|
404
|
-
|
|
405
|
-
const filterSensitiveLog: (obj: CreateProfilingGroupRequest) => any;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
export interface ProfilingStatus {
|
|
409
|
-
|
|
410
|
-
latestAgentProfileReportedAt?: Date;
|
|
411
|
-
|
|
412
|
-
latestAggregatedProfile?: AggregatedProfileTime;
|
|
413
|
-
|
|
414
|
-
latestAgentOrchestratedAt?: Date;
|
|
415
|
-
}
|
|
416
|
-
export declare namespace ProfilingStatus {
|
|
417
|
-
|
|
418
|
-
const filterSensitiveLog: (obj: ProfilingStatus) => any;
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
export interface ProfilingGroupDescription {
|
|
422
|
-
|
|
423
|
-
name?: string;
|
|
424
|
-
|
|
425
|
-
agentOrchestrationConfig?: AgentOrchestrationConfig;
|
|
426
|
-
|
|
427
|
-
arn?: string;
|
|
428
|
-
|
|
429
|
-
createdAt?: Date;
|
|
430
|
-
|
|
431
|
-
updatedAt?: Date;
|
|
432
|
-
|
|
433
|
-
profilingStatus?: ProfilingStatus;
|
|
434
|
-
|
|
435
|
-
computePlatform?: ComputePlatform | string;
|
|
436
|
-
|
|
437
|
-
tags?: {
|
|
438
|
-
[key: string]: string;
|
|
439
|
-
};
|
|
440
|
-
}
|
|
441
|
-
export declare namespace ProfilingGroupDescription {
|
|
442
|
-
|
|
443
|
-
const filterSensitiveLog: (obj: ProfilingGroupDescription) => any;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
export interface CreateProfilingGroupResponse {
|
|
447
|
-
|
|
448
|
-
profilingGroup: ProfilingGroupDescription | undefined;
|
|
449
|
-
}
|
|
450
|
-
export declare namespace CreateProfilingGroupResponse {
|
|
451
|
-
|
|
452
|
-
const filterSensitiveLog: (obj: CreateProfilingGroupResponse) => any;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
export interface DeleteProfilingGroupRequest {
|
|
456
|
-
|
|
457
|
-
profilingGroupName: string | undefined;
|
|
458
|
-
}
|
|
459
|
-
export declare namespace DeleteProfilingGroupRequest {
|
|
460
|
-
|
|
461
|
-
const filterSensitiveLog: (obj: DeleteProfilingGroupRequest) => any;
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
export interface DeleteProfilingGroupResponse {
|
|
465
|
-
}
|
|
466
|
-
export declare namespace DeleteProfilingGroupResponse {
|
|
467
|
-
|
|
468
|
-
const filterSensitiveLog: (obj: DeleteProfilingGroupResponse) => any;
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
export interface DescribeProfilingGroupRequest {
|
|
472
|
-
|
|
473
|
-
profilingGroupName: string | undefined;
|
|
474
|
-
}
|
|
475
|
-
export declare namespace DescribeProfilingGroupRequest {
|
|
476
|
-
|
|
477
|
-
const filterSensitiveLog: (obj: DescribeProfilingGroupRequest) => any;
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
export interface DescribeProfilingGroupResponse {
|
|
481
|
-
|
|
482
|
-
profilingGroup: ProfilingGroupDescription | undefined;
|
|
483
|
-
}
|
|
484
|
-
export declare namespace DescribeProfilingGroupResponse {
|
|
485
|
-
|
|
486
|
-
const filterSensitiveLog: (obj: DescribeProfilingGroupResponse) => any;
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
export interface GetNotificationConfigurationRequest {
|
|
490
|
-
|
|
491
|
-
profilingGroupName: string | undefined;
|
|
492
|
-
}
|
|
493
|
-
export declare namespace GetNotificationConfigurationRequest {
|
|
494
|
-
|
|
495
|
-
const filterSensitiveLog: (obj: GetNotificationConfigurationRequest) => any;
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
export interface GetNotificationConfigurationResponse {
|
|
499
|
-
|
|
500
|
-
notificationConfiguration: NotificationConfiguration | undefined;
|
|
501
|
-
}
|
|
502
|
-
export declare namespace GetNotificationConfigurationResponse {
|
|
503
|
-
|
|
504
|
-
const filterSensitiveLog: (obj: GetNotificationConfigurationResponse) => any;
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
export interface GetPolicyRequest {
|
|
508
|
-
|
|
509
|
-
profilingGroupName: string | undefined;
|
|
510
|
-
}
|
|
511
|
-
export declare namespace GetPolicyRequest {
|
|
512
|
-
|
|
513
|
-
const filterSensitiveLog: (obj: GetPolicyRequest) => any;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
export interface GetPolicyResponse {
|
|
517
|
-
|
|
518
|
-
policy: string | undefined;
|
|
519
|
-
|
|
520
|
-
revisionId: string | undefined;
|
|
521
|
-
}
|
|
522
|
-
export declare namespace GetPolicyResponse {
|
|
523
|
-
|
|
524
|
-
const filterSensitiveLog: (obj: GetPolicyResponse) => any;
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
export interface GetProfileRequest {
|
|
528
|
-
|
|
529
|
-
profilingGroupName: string | undefined;
|
|
530
|
-
|
|
531
|
-
startTime?: Date;
|
|
532
|
-
|
|
533
|
-
period?: string;
|
|
534
|
-
|
|
535
|
-
endTime?: Date;
|
|
536
|
-
|
|
537
|
-
maxDepth?: number;
|
|
538
|
-
|
|
539
|
-
accept?: string;
|
|
540
|
-
}
|
|
541
|
-
export declare namespace GetProfileRequest {
|
|
542
|
-
|
|
543
|
-
const filterSensitiveLog: (obj: GetProfileRequest) => any;
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
export interface GetProfileResponse {
|
|
547
|
-
|
|
548
|
-
profile: Uint8Array | undefined;
|
|
549
|
-
|
|
550
|
-
contentType: string | undefined;
|
|
551
|
-
|
|
552
|
-
contentEncoding?: string;
|
|
553
|
-
}
|
|
554
|
-
export declare namespace GetProfileResponse {
|
|
555
|
-
|
|
556
|
-
const filterSensitiveLog: (obj: GetProfileResponse) => any;
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
export interface GetRecommendationsRequest {
|
|
560
|
-
|
|
561
|
-
profilingGroupName: string | undefined;
|
|
562
|
-
|
|
563
|
-
startTime: Date | undefined;
|
|
564
|
-
|
|
565
|
-
endTime: Date | undefined;
|
|
566
|
-
|
|
567
|
-
locale?: string;
|
|
568
|
-
}
|
|
569
|
-
export declare namespace GetRecommendationsRequest {
|
|
570
|
-
|
|
571
|
-
const filterSensitiveLog: (obj: GetRecommendationsRequest) => any;
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
export interface Pattern {
|
|
575
|
-
|
|
576
|
-
id?: string;
|
|
577
|
-
|
|
578
|
-
name?: string;
|
|
579
|
-
|
|
580
|
-
description?: string;
|
|
581
|
-
|
|
582
|
-
resolutionSteps?: string;
|
|
583
|
-
|
|
584
|
-
targetFrames?: string[][];
|
|
585
|
-
|
|
586
|
-
thresholdPercent?: number;
|
|
587
|
-
|
|
588
|
-
countersToAggregate?: string[];
|
|
589
|
-
}
|
|
590
|
-
export declare namespace Pattern {
|
|
591
|
-
|
|
592
|
-
const filterSensitiveLog: (obj: Pattern) => any;
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
export interface Match {
|
|
596
|
-
|
|
597
|
-
targetFramesIndex?: number;
|
|
598
|
-
|
|
599
|
-
frameAddress?: string;
|
|
600
|
-
|
|
601
|
-
thresholdBreachValue?: number;
|
|
602
|
-
}
|
|
603
|
-
export declare namespace Match {
|
|
604
|
-
|
|
605
|
-
const filterSensitiveLog: (obj: Match) => any;
|
|
606
|
-
}
|
|
607
|
-
|
|
608
|
-
export interface Recommendation {
|
|
609
|
-
|
|
610
|
-
allMatchesCount: number | undefined;
|
|
611
|
-
|
|
612
|
-
allMatchesSum: number | undefined;
|
|
613
|
-
|
|
614
|
-
pattern: Pattern | undefined;
|
|
615
|
-
|
|
616
|
-
topMatches: Match[] | undefined;
|
|
617
|
-
|
|
618
|
-
startTime: Date | undefined;
|
|
619
|
-
|
|
620
|
-
endTime: Date | undefined;
|
|
621
|
-
}
|
|
622
|
-
export declare namespace Recommendation {
|
|
623
|
-
|
|
624
|
-
const filterSensitiveLog: (obj: Recommendation) => any;
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
export interface GetRecommendationsResponse {
|
|
628
|
-
|
|
629
|
-
profilingGroupName: string | undefined;
|
|
630
|
-
|
|
631
|
-
profileStartTime: Date | undefined;
|
|
632
|
-
|
|
633
|
-
profileEndTime: Date | undefined;
|
|
634
|
-
|
|
635
|
-
recommendations: Recommendation[] | undefined;
|
|
636
|
-
|
|
637
|
-
anomalies: Anomaly[] | undefined;
|
|
638
|
-
}
|
|
639
|
-
export declare namespace GetRecommendationsResponse {
|
|
640
|
-
|
|
641
|
-
const filterSensitiveLog: (obj: GetRecommendationsResponse) => any;
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
export interface ListFindingsReportsRequest {
|
|
645
|
-
|
|
646
|
-
profilingGroupName: string | undefined;
|
|
647
|
-
|
|
648
|
-
startTime: Date | undefined;
|
|
649
|
-
|
|
650
|
-
endTime: Date | undefined;
|
|
651
|
-
|
|
652
|
-
nextToken?: string;
|
|
653
|
-
|
|
654
|
-
maxResults?: number;
|
|
655
|
-
|
|
656
|
-
dailyReportsOnly?: boolean;
|
|
657
|
-
}
|
|
658
|
-
export declare namespace ListFindingsReportsRequest {
|
|
659
|
-
|
|
660
|
-
const filterSensitiveLog: (obj: ListFindingsReportsRequest) => any;
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
export interface ListFindingsReportsResponse {
|
|
664
|
-
|
|
665
|
-
findingsReportSummaries: FindingsReportSummary[] | undefined;
|
|
666
|
-
|
|
667
|
-
nextToken?: string;
|
|
668
|
-
}
|
|
669
|
-
export declare namespace ListFindingsReportsResponse {
|
|
670
|
-
|
|
671
|
-
const filterSensitiveLog: (obj: ListFindingsReportsResponse) => any;
|
|
672
|
-
}
|
|
673
|
-
export declare enum OrderBy {
|
|
674
|
-
|
|
675
|
-
TIMESTAMP_ASCENDING = "TimestampAscending",
|
|
676
|
-
|
|
677
|
-
TIMESTAMP_DESCENDING = "TimestampDescending"
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
export interface ListProfileTimesRequest {
|
|
681
|
-
|
|
682
|
-
profilingGroupName: string | undefined;
|
|
683
|
-
|
|
684
|
-
startTime: Date | undefined;
|
|
685
|
-
|
|
686
|
-
endTime: Date | undefined;
|
|
687
|
-
|
|
688
|
-
period: AggregationPeriod | string | undefined;
|
|
689
|
-
|
|
690
|
-
orderBy?: OrderBy | string;
|
|
691
|
-
|
|
692
|
-
maxResults?: number;
|
|
693
|
-
|
|
694
|
-
nextToken?: string;
|
|
695
|
-
}
|
|
696
|
-
export declare namespace ListProfileTimesRequest {
|
|
697
|
-
|
|
698
|
-
const filterSensitiveLog: (obj: ListProfileTimesRequest) => any;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
export interface ProfileTime {
|
|
702
|
-
|
|
703
|
-
start?: Date;
|
|
704
|
-
}
|
|
705
|
-
export declare namespace ProfileTime {
|
|
706
|
-
|
|
707
|
-
const filterSensitiveLog: (obj: ProfileTime) => any;
|
|
708
|
-
}
|
|
709
|
-
|
|
710
|
-
export interface ListProfileTimesResponse {
|
|
711
|
-
|
|
712
|
-
profileTimes: ProfileTime[] | undefined;
|
|
713
|
-
|
|
714
|
-
nextToken?: string;
|
|
715
|
-
}
|
|
716
|
-
export declare namespace ListProfileTimesResponse {
|
|
717
|
-
|
|
718
|
-
const filterSensitiveLog: (obj: ListProfileTimesResponse) => any;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
export interface ListProfilingGroupsRequest {
|
|
722
|
-
|
|
723
|
-
nextToken?: string;
|
|
724
|
-
|
|
725
|
-
maxResults?: number;
|
|
726
|
-
|
|
727
|
-
includeDescription?: boolean;
|
|
728
|
-
}
|
|
729
|
-
export declare namespace ListProfilingGroupsRequest {
|
|
730
|
-
|
|
731
|
-
const filterSensitiveLog: (obj: ListProfilingGroupsRequest) => any;
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
export interface ListProfilingGroupsResponse {
|
|
735
|
-
|
|
736
|
-
profilingGroupNames: string[] | undefined;
|
|
737
|
-
|
|
738
|
-
profilingGroups?: ProfilingGroupDescription[];
|
|
739
|
-
|
|
740
|
-
nextToken?: string;
|
|
741
|
-
}
|
|
742
|
-
export declare namespace ListProfilingGroupsResponse {
|
|
743
|
-
|
|
744
|
-
const filterSensitiveLog: (obj: ListProfilingGroupsResponse) => any;
|
|
745
|
-
}
|
|
746
|
-
|
|
747
|
-
export interface PostAgentProfileRequest {
|
|
748
|
-
|
|
749
|
-
profilingGroupName: string | undefined;
|
|
750
|
-
|
|
751
|
-
agentProfile: Uint8Array | undefined;
|
|
752
|
-
|
|
753
|
-
profileToken?: string;
|
|
754
|
-
|
|
755
|
-
contentType: string | undefined;
|
|
756
|
-
}
|
|
757
|
-
export declare namespace PostAgentProfileRequest {
|
|
758
|
-
|
|
759
|
-
const filterSensitiveLog: (obj: PostAgentProfileRequest) => any;
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
export interface PostAgentProfileResponse {
|
|
763
|
-
}
|
|
764
|
-
export declare namespace PostAgentProfileResponse {
|
|
765
|
-
|
|
766
|
-
const filterSensitiveLog: (obj: PostAgentProfileResponse) => any;
|
|
767
|
-
}
|
|
768
|
-
|
|
769
|
-
export interface PutPermissionRequest {
|
|
770
|
-
|
|
771
|
-
profilingGroupName: string | undefined;
|
|
772
|
-
|
|
773
|
-
actionGroup: ActionGroup | string | undefined;
|
|
774
|
-
|
|
775
|
-
principals: string[] | undefined;
|
|
776
|
-
|
|
777
|
-
revisionId?: string;
|
|
778
|
-
}
|
|
779
|
-
export declare namespace PutPermissionRequest {
|
|
780
|
-
|
|
781
|
-
const filterSensitiveLog: (obj: PutPermissionRequest) => any;
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
export interface PutPermissionResponse {
|
|
785
|
-
|
|
786
|
-
policy: string | undefined;
|
|
787
|
-
|
|
788
|
-
revisionId: string | undefined;
|
|
789
|
-
}
|
|
790
|
-
export declare namespace PutPermissionResponse {
|
|
791
|
-
|
|
792
|
-
const filterSensitiveLog: (obj: PutPermissionResponse) => any;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
export interface RemoveNotificationChannelRequest {
|
|
796
|
-
|
|
797
|
-
profilingGroupName: string | undefined;
|
|
798
|
-
|
|
799
|
-
channelId: string | undefined;
|
|
800
|
-
}
|
|
801
|
-
export declare namespace RemoveNotificationChannelRequest {
|
|
802
|
-
|
|
803
|
-
const filterSensitiveLog: (obj: RemoveNotificationChannelRequest) => any;
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
export interface RemoveNotificationChannelResponse {
|
|
807
|
-
|
|
808
|
-
notificationConfiguration?: NotificationConfiguration;
|
|
809
|
-
}
|
|
810
|
-
export declare namespace RemoveNotificationChannelResponse {
|
|
811
|
-
|
|
812
|
-
const filterSensitiveLog: (obj: RemoveNotificationChannelResponse) => any;
|
|
813
|
-
}
|
|
814
|
-
|
|
815
|
-
export interface RemovePermissionRequest {
|
|
816
|
-
|
|
817
|
-
profilingGroupName: string | undefined;
|
|
818
|
-
|
|
819
|
-
actionGroup: ActionGroup | string | undefined;
|
|
820
|
-
|
|
821
|
-
revisionId: string | undefined;
|
|
822
|
-
}
|
|
823
|
-
export declare namespace RemovePermissionRequest {
|
|
824
|
-
|
|
825
|
-
const filterSensitiveLog: (obj: RemovePermissionRequest) => any;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
export interface RemovePermissionResponse {
|
|
829
|
-
|
|
830
|
-
policy: string | undefined;
|
|
831
|
-
|
|
832
|
-
revisionId: string | undefined;
|
|
833
|
-
}
|
|
834
|
-
export declare namespace RemovePermissionResponse {
|
|
835
|
-
|
|
836
|
-
const filterSensitiveLog: (obj: RemovePermissionResponse) => any;
|
|
837
|
-
}
|
|
838
|
-
|
|
839
|
-
export interface SubmitFeedbackRequest {
|
|
840
|
-
|
|
841
|
-
profilingGroupName: string | undefined;
|
|
842
|
-
|
|
843
|
-
anomalyInstanceId: string | undefined;
|
|
844
|
-
|
|
845
|
-
type: FeedbackType | string | undefined;
|
|
846
|
-
|
|
847
|
-
comment?: string;
|
|
848
|
-
}
|
|
849
|
-
export declare namespace SubmitFeedbackRequest {
|
|
850
|
-
|
|
851
|
-
const filterSensitiveLog: (obj: SubmitFeedbackRequest) => any;
|
|
852
|
-
}
|
|
853
|
-
|
|
854
|
-
export interface SubmitFeedbackResponse {
|
|
855
|
-
}
|
|
856
|
-
export declare namespace SubmitFeedbackResponse {
|
|
857
|
-
|
|
858
|
-
const filterSensitiveLog: (obj: SubmitFeedbackResponse) => any;
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
export interface UpdateProfilingGroupRequest {
|
|
862
|
-
|
|
863
|
-
profilingGroupName: string | undefined;
|
|
864
|
-
|
|
865
|
-
agentOrchestrationConfig: AgentOrchestrationConfig | undefined;
|
|
866
|
-
}
|
|
867
|
-
export declare namespace UpdateProfilingGroupRequest {
|
|
868
|
-
|
|
869
|
-
const filterSensitiveLog: (obj: UpdateProfilingGroupRequest) => any;
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
export interface UpdateProfilingGroupResponse {
|
|
873
|
-
|
|
874
|
-
profilingGroup: ProfilingGroupDescription | undefined;
|
|
875
|
-
}
|
|
876
|
-
export declare namespace UpdateProfilingGroupResponse {
|
|
877
|
-
|
|
878
|
-
const filterSensitiveLog: (obj: UpdateProfilingGroupResponse) => any;
|
|
879
|
-
}
|
|
880
|
-
export interface TagResourceRequest {
|
|
881
|
-
|
|
882
|
-
resourceArn: string | undefined;
|
|
883
|
-
|
|
884
|
-
tags: {
|
|
885
|
-
[key: string]: string;
|
|
886
|
-
} | undefined;
|
|
887
|
-
}
|
|
888
|
-
export declare namespace TagResourceRequest {
|
|
889
|
-
|
|
890
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
891
|
-
}
|
|
892
|
-
export interface TagResourceResponse {
|
|
893
|
-
}
|
|
894
|
-
export declare namespace TagResourceResponse {
|
|
895
|
-
|
|
896
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
897
|
-
}
|
|
898
|
-
export interface UntagResourceRequest {
|
|
899
|
-
|
|
900
|
-
resourceArn: string | undefined;
|
|
901
|
-
|
|
902
|
-
tagKeys: string[] | undefined;
|
|
903
|
-
}
|
|
904
|
-
export declare namespace UntagResourceRequest {
|
|
905
|
-
|
|
906
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
907
|
-
}
|
|
908
|
-
export interface UntagResourceResponse {
|
|
909
|
-
}
|
|
910
|
-
export declare namespace UntagResourceResponse {
|
|
911
|
-
|
|
912
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
913
|
-
}
|