@aws-sdk/client-internetmonitor 3.295.0 → 3.297.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/dist-types/InternetMonitor.d.ts +11 -0
- package/dist-types/InternetMonitorClient.d.ts +24 -4
- package/dist-types/commands/CreateMonitorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMonitorCommand.d.ts +16 -0
- package/dist-types/commands/GetHealthEventCommand.d.ts +16 -0
- package/dist-types/commands/GetMonitorCommand.d.ts +16 -0
- package/dist-types/commands/ListHealthEventsCommand.d.ts +16 -0
- package/dist-types/commands/ListMonitorsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMonitorCommand.d.ts +16 -0
- package/dist-types/models/InternetMonitorServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +95 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListHealthEventsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMonitorsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -11,6 +11,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
11
11
|
import { UpdateMonitorCommandInput, UpdateMonitorCommandOutput } from "./commands/UpdateMonitorCommand";
|
|
12
12
|
import { InternetMonitorClient } from "./InternetMonitorClient";
|
|
13
13
|
/**
|
|
14
|
+
* @public
|
|
14
15
|
* <p>Amazon CloudWatch Internet Monitor provides visibility into how internet issues impact the performance and availability between your applications hosted on Amazon Web Services and your end
|
|
15
16
|
* users, reducing the time it takes for you to diagnose these issues, from days to minutes. You can explore internet measurements for different time frames
|
|
16
17
|
* and at different geographic granularities, and quickly visualize the impact of issues, and then take action to improve your end users' experience, for
|
|
@@ -25,6 +26,7 @@ import { InternetMonitorClient } from "./InternetMonitorClient";
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class InternetMonitor extends InternetMonitorClient {
|
|
27
28
|
/**
|
|
29
|
+
* @public
|
|
28
30
|
* <p>Creates a monitor in Amazon CloudWatch Internet Monitor. A monitor is built based on information from the application resources that you add: Virtual Private Clouds (VPCs),
|
|
29
31
|
* Amazon CloudFront distributions, and WorkSpaces directories. </p>
|
|
30
32
|
* <p>After you create a monitor, you can view the internet performance for your application, scoped to a location, as well as any health events that are
|
|
@@ -34,12 +36,14 @@ export declare class InternetMonitor extends InternetMonitorClient {
|
|
|
34
36
|
createMonitor(args: CreateMonitorCommandInput, cb: (err: any, data?: CreateMonitorCommandOutput) => void): void;
|
|
35
37
|
createMonitor(args: CreateMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMonitorCommandOutput) => void): void;
|
|
36
38
|
/**
|
|
39
|
+
* @public
|
|
37
40
|
* <p>Deletes a monitor in Amazon CloudWatch Internet Monitor. </p>
|
|
38
41
|
*/
|
|
39
42
|
deleteMonitor(args: DeleteMonitorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMonitorCommandOutput>;
|
|
40
43
|
deleteMonitor(args: DeleteMonitorCommandInput, cb: (err: any, data?: DeleteMonitorCommandOutput) => void): void;
|
|
41
44
|
deleteMonitor(args: DeleteMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMonitorCommandOutput) => void): void;
|
|
42
45
|
/**
|
|
46
|
+
* @public
|
|
43
47
|
* <p>Gets information the Amazon CloudWatch Internet Monitor has created and stored about a health event for a specified monitor. This information includes the impacted locations,
|
|
44
48
|
* and all of the information related to the event by location.</p>
|
|
45
49
|
* <p>The information returned includes the performance, availability, and round-trip time impact, information about the network providers, the event type,
|
|
@@ -50,6 +54,7 @@ export declare class InternetMonitor extends InternetMonitorClient {
|
|
|
50
54
|
getHealthEvent(args: GetHealthEventCommandInput, cb: (err: any, data?: GetHealthEventCommandOutput) => void): void;
|
|
51
55
|
getHealthEvent(args: GetHealthEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHealthEventCommandOutput) => void): void;
|
|
52
56
|
/**
|
|
57
|
+
* @public
|
|
53
58
|
* <p>Gets information about a monitor in Amazon CloudWatch Internet Monitor based on a monitor name. The information returned includes the Amazon Resource Name (ARN), create time,
|
|
54
59
|
* modified time, resources included in the monitor, and status information.</p>
|
|
55
60
|
*/
|
|
@@ -57,6 +62,7 @@ export declare class InternetMonitor extends InternetMonitorClient {
|
|
|
57
62
|
getMonitor(args: GetMonitorCommandInput, cb: (err: any, data?: GetMonitorCommandOutput) => void): void;
|
|
58
63
|
getMonitor(args: GetMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMonitorCommandOutput) => void): void;
|
|
59
64
|
/**
|
|
65
|
+
* @public
|
|
60
66
|
* <p>Lists all health events for a monitor in Amazon CloudWatch Internet Monitor. Returns all information for health events including the client location information the network
|
|
61
67
|
* cause and status, event start and end time, percentage of total traffic impacted, and status.</p>
|
|
62
68
|
* <note>
|
|
@@ -67,18 +73,21 @@ export declare class InternetMonitor extends InternetMonitorClient {
|
|
|
67
73
|
listHealthEvents(args: ListHealthEventsCommandInput, cb: (err: any, data?: ListHealthEventsCommandOutput) => void): void;
|
|
68
74
|
listHealthEvents(args: ListHealthEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHealthEventsCommandOutput) => void): void;
|
|
69
75
|
/**
|
|
76
|
+
* @public
|
|
70
77
|
* <p>Lists all of your monitors for Amazon CloudWatch Internet Monitor and their statuses, along with the Amazon Resource Name (ARN) and name of each monitor.</p>
|
|
71
78
|
*/
|
|
72
79
|
listMonitors(args: ListMonitorsCommandInput, options?: __HttpHandlerOptions): Promise<ListMonitorsCommandOutput>;
|
|
73
80
|
listMonitors(args: ListMonitorsCommandInput, cb: (err: any, data?: ListMonitorsCommandOutput) => void): void;
|
|
74
81
|
listMonitors(args: ListMonitorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMonitorsCommandOutput) => void): void;
|
|
75
82
|
/**
|
|
83
|
+
* @public
|
|
76
84
|
* <p>Lists the tags for a resource. Tags are supported only for monitors in Amazon CloudWatch Internet Monitor.</p>
|
|
77
85
|
*/
|
|
78
86
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
79
87
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
80
88
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
81
89
|
/**
|
|
90
|
+
* @public
|
|
82
91
|
* <p>Adds a tag to a resource. Tags are supported only for monitors in Amazon CloudWatch Internet Monitor. You can add a maximum of 50 tags in Internet Monitor.</p>
|
|
83
92
|
* <p>A minimum of one tag is required for this call. It returns an error if you use the <code>TagResource</code> request with 0 tags.</p>
|
|
84
93
|
*/
|
|
@@ -86,12 +95,14 @@ export declare class InternetMonitor extends InternetMonitorClient {
|
|
|
86
95
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
87
96
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
88
97
|
/**
|
|
98
|
+
* @public
|
|
89
99
|
* <p>Removes a tag from a resource.</p>
|
|
90
100
|
*/
|
|
91
101
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
92
102
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
93
103
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
94
104
|
/**
|
|
105
|
+
* @public
|
|
95
106
|
* <p>Updates a monitor. You can update a monitor to add or remove resources, or to change the status of the monitor. You can't change the name of a
|
|
96
107
|
* monitor.</p>
|
|
97
108
|
*/
|
|
@@ -18,15 +18,24 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
18
18
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
19
19
|
import { UpdateMonitorCommandInput, UpdateMonitorCommandOutput } from "./commands/UpdateMonitorCommand";
|
|
20
20
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
21
24
|
export type ServiceInputTypes = CreateMonitorCommandInput | DeleteMonitorCommandInput | GetHealthEventCommandInput | GetMonitorCommandInput | ListHealthEventsCommandInput | ListMonitorsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateMonitorCommandInput;
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
22
28
|
export type ServiceOutputTypes = CreateMonitorCommandOutput | DeleteMonitorCommandOutput | GetHealthEventCommandOutput | GetMonitorCommandOutput | ListHealthEventsCommandOutput | ListMonitorsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateMonitorCommandOutput;
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
23
32
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
24
33
|
/**
|
|
25
34
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
26
35
|
*/
|
|
27
36
|
requestHandler?: __HttpHandler;
|
|
28
37
|
/**
|
|
29
|
-
* A constructor for a class implementing the {@link
|
|
38
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
30
39
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
31
40
|
* @internal
|
|
32
41
|
*/
|
|
@@ -116,23 +125,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
116
125
|
*/
|
|
117
126
|
logger?: __Logger;
|
|
118
127
|
/**
|
|
119
|
-
* The {@link
|
|
128
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
120
129
|
*/
|
|
121
130
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
122
131
|
}
|
|
132
|
+
/**
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
123
135
|
type InternetMonitorClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
124
136
|
/**
|
|
125
|
-
*
|
|
137
|
+
* @public
|
|
138
|
+
*
|
|
139
|
+
* The configuration interface of InternetMonitorClient class constructor that set the region, credentials and other options.
|
|
126
140
|
*/
|
|
127
141
|
export interface InternetMonitorClientConfig extends InternetMonitorClientConfigType {
|
|
128
142
|
}
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
129
146
|
type InternetMonitorClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
130
147
|
/**
|
|
131
|
-
*
|
|
148
|
+
* @public
|
|
149
|
+
*
|
|
150
|
+
* The resolved configuration interface of InternetMonitorClient class. This is resolved and normalized from the {@link InternetMonitorClientConfig | constructor configuration interface}.
|
|
132
151
|
*/
|
|
133
152
|
export interface InternetMonitorClientResolvedConfig extends InternetMonitorClientResolvedConfigType {
|
|
134
153
|
}
|
|
135
154
|
/**
|
|
155
|
+
* @public
|
|
136
156
|
* <p>Amazon CloudWatch Internet Monitor provides visibility into how internet issues impact the performance and availability between your applications hosted on Amazon Web Services and your end
|
|
137
157
|
* users, reducing the time it takes for you to diagnose these issues, from days to minutes. You can explore internet measurements for different time frames
|
|
138
158
|
* and at different geographic granularities, and quickly visualize the impact of issues, and then take action to improve your end users' experience, for
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
|
|
5
5
|
import { CreateMonitorInput, CreateMonitorOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateMonitorCommandInput extends CreateMonitorInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateMonitorCommandOutput extends CreateMonitorOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a monitor in Amazon CloudWatch Internet Monitor. A monitor is built based on information from the application resources that you add: Virtual Private Clouds (VPCs),
|
|
18
23
|
* Amazon CloudFront distributions, and WorkSpaces directories. </p>
|
|
19
24
|
* <p>After you create a monitor, you can view the internet performance for your application, scoped to a location, as well as any health events that are
|
|
@@ -28,6 +33,8 @@ export interface CreateMonitorCommandOutput extends CreateMonitorOutput, __Metad
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateMonitorCommandInput - {@link CreateMonitorCommandInput}
|
|
37
|
+
* @returns {@link CreateMonitorCommandOutput}
|
|
31
38
|
* @see {@link CreateMonitorCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateMonitorCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link InternetMonitorClientResolvedConfig | config} for InternetMonitorClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CreateMonitorCommandOutput extends CreateMonitorOutput, __Metad
|
|
|
55
62
|
export declare class CreateMonitorCommand extends $Command<CreateMonitorCommandInput, CreateMonitorCommandOutput, InternetMonitorClientResolvedConfig> {
|
|
56
63
|
readonly input: CreateMonitorCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CreateMonitorCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMonitorCommandInput, CreateMonitorCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
|
|
5
5
|
import { DeleteMonitorInput, DeleteMonitorOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteMonitorCommandInput extends DeleteMonitorInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteMonitorCommandOutput extends DeleteMonitorOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a monitor in Amazon CloudWatch Internet Monitor. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteMonitorCommandOutput extends DeleteMonitorOutput, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteMonitorCommandInput - {@link DeleteMonitorCommandInput}
|
|
34
|
+
* @returns {@link DeleteMonitorCommandOutput}
|
|
28
35
|
* @see {@link DeleteMonitorCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteMonitorCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link InternetMonitorClientResolvedConfig | config} for InternetMonitorClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteMonitorCommandOutput extends DeleteMonitorOutput, __Metad
|
|
|
46
53
|
export declare class DeleteMonitorCommand extends $Command<DeleteMonitorCommandInput, DeleteMonitorCommandOutput, InternetMonitorClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteMonitorCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteMonitorCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMonitorCommandInput, DeleteMonitorCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
|
|
5
5
|
import { GetHealthEventInput, GetHealthEventOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetHealthEventCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetHealthEventCommandInput extends GetHealthEventInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetHealthEventCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetHealthEventCommandOutput extends GetHealthEventOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information the Amazon CloudWatch Internet Monitor has created and stored about a health event for a specified monitor. This information includes the impacted locations,
|
|
18
23
|
* and all of the information related to the event by location.</p>
|
|
19
24
|
* <p>The information returned includes the performance, availability, and round-trip time impact, information about the network providers, the event type,
|
|
@@ -29,6 +34,8 @@ export interface GetHealthEventCommandOutput extends GetHealthEventOutput, __Met
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param GetHealthEventCommandInput - {@link GetHealthEventCommandInput}
|
|
38
|
+
* @returns {@link GetHealthEventCommandOutput}
|
|
32
39
|
* @see {@link GetHealthEventCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link GetHealthEventCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link InternetMonitorClientResolvedConfig | config} for InternetMonitorClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetHealthEventCommandOutput extends GetHealthEventOutput, __Met
|
|
|
50
57
|
export declare class GetHealthEventCommand extends $Command<GetHealthEventCommandInput, GetHealthEventCommandOutput, InternetMonitorClientResolvedConfig> {
|
|
51
58
|
readonly input: GetHealthEventCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetHealthEventCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetHealthEventCommandInput, GetHealthEventCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
|
|
5
5
|
import { GetMonitorInput, GetMonitorOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMonitorCommandInput extends GetMonitorInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMonitorCommandOutput extends GetMonitorOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about a monitor in Amazon CloudWatch Internet Monitor based on a monitor name. The information returned includes the Amazon Resource Name (ARN), create time,
|
|
18
23
|
* modified time, resources included in the monitor, and status information.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetMonitorCommandOutput extends GetMonitorOutput, __MetadataBea
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetMonitorCommandInput - {@link GetMonitorCommandInput}
|
|
35
|
+
* @returns {@link GetMonitorCommandOutput}
|
|
29
36
|
* @see {@link GetMonitorCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetMonitorCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link InternetMonitorClientResolvedConfig | config} for InternetMonitorClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface GetMonitorCommandOutput extends GetMonitorOutput, __MetadataBea
|
|
|
47
54
|
export declare class GetMonitorCommand extends $Command<GetMonitorCommandInput, GetMonitorCommandOutput, InternetMonitorClientResolvedConfig> {
|
|
48
55
|
readonly input: GetMonitorCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: GetMonitorCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMonitorCommandInput, GetMonitorCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
|
|
5
5
|
import { ListHealthEventsInput, ListHealthEventsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListHealthEventsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListHealthEventsCommandInput extends ListHealthEventsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListHealthEventsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListHealthEventsCommandOutput extends ListHealthEventsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all health events for a monitor in Amazon CloudWatch Internet Monitor. Returns all information for health events including the client location information the network
|
|
18
23
|
* cause and status, event start and end time, percentage of total traffic impacted, and status.</p>
|
|
19
24
|
* <note>
|
|
@@ -29,6 +34,8 @@ export interface ListHealthEventsCommandOutput extends ListHealthEventsOutput, _
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param ListHealthEventsCommandInput - {@link ListHealthEventsCommandInput}
|
|
38
|
+
* @returns {@link ListHealthEventsCommandOutput}
|
|
32
39
|
* @see {@link ListHealthEventsCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link ListHealthEventsCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link InternetMonitorClientResolvedConfig | config} for InternetMonitorClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListHealthEventsCommandOutput extends ListHealthEventsOutput, _
|
|
|
50
57
|
export declare class ListHealthEventsCommand extends $Command<ListHealthEventsCommandInput, ListHealthEventsCommandOutput, InternetMonitorClientResolvedConfig> {
|
|
51
58
|
readonly input: ListHealthEventsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListHealthEventsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListHealthEventsCommandInput, ListHealthEventsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
|
|
5
5
|
import { ListMonitorsInput, ListMonitorsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListMonitorsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListMonitorsCommandInput extends ListMonitorsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListMonitorsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListMonitorsCommandOutput extends ListMonitorsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all of your monitors for Amazon CloudWatch Internet Monitor and their statuses, along with the Amazon Resource Name (ARN) and name of each monitor.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListMonitorsCommandOutput extends ListMonitorsOutput, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListMonitorsCommandInput - {@link ListMonitorsCommandInput}
|
|
34
|
+
* @returns {@link ListMonitorsCommandOutput}
|
|
28
35
|
* @see {@link ListMonitorsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListMonitorsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link InternetMonitorClientResolvedConfig | config} for InternetMonitorClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListMonitorsCommandOutput extends ListMonitorsOutput, __Metadat
|
|
|
46
53
|
export declare class ListMonitorsCommand extends $Command<ListMonitorsCommandInput, ListMonitorsCommandOutput, InternetMonitorClientResolvedConfig> {
|
|
47
54
|
readonly input: ListMonitorsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListMonitorsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMonitorsCommandInput, ListMonitorsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
|
|
5
5
|
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the tags for a resource. Tags are supported only for monitors in Amazon CloudWatch Internet Monitor.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link InternetMonitorClientResolvedConfig | config} for InternetMonitorClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
49
56
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, InternetMonitorClientResolvedConfig> {
|
|
50
57
|
readonly input: ListTagsForResourceCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListTagsForResourceCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
|
|
5
5
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds a tag to a resource. Tags are supported only for monitors in Amazon CloudWatch Internet Monitor. You can add a maximum of 50 tags in Internet Monitor.</p>
|
|
18
23
|
* <p>A minimum of one tag is required for this call. It returns an error if you use the <code>TagResource</code> request with 0 tags.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
35
|
+
* @returns {@link TagResourceCommandOutput}
|
|
29
36
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link InternetMonitorClientResolvedConfig | config} for InternetMonitorClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
50
57
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, InternetMonitorClientResolvedConfig> {
|
|
51
58
|
readonly input: TagResourceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: TagResourceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
|
|
5
5
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes a tag from a resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link InternetMonitorClientResolvedConfig | config} for InternetMonitorClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
49
56
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, InternetMonitorClientResolvedConfig> {
|
|
50
57
|
readonly input: UntagResourceCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: UntagResourceCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
|
|
5
5
|
import { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateMonitorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateMonitorCommandInput extends UpdateMonitorInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateMonitorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a monitor. You can update a monitor to add or remove resources, or to change the status of the monitor. You can't change the name of a
|
|
18
23
|
* monitor.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateMonitorCommandInput - {@link UpdateMonitorCommandInput}
|
|
35
|
+
* @returns {@link UpdateMonitorCommandOutput}
|
|
29
36
|
* @see {@link UpdateMonitorCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateMonitorCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link InternetMonitorClientResolvedConfig | config} for InternetMonitorClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __Metad
|
|
|
53
60
|
export declare class UpdateMonitorCommand extends $Command<UpdateMonitorCommandInput, UpdateMonitorCommandOutput, InternetMonitorClientResolvedConfig> {
|
|
54
61
|
readonly input: UpdateMonitorCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: UpdateMonitorCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMonitorCommandInput, UpdateMonitorCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from InternetMonitor service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class InternetMonitorServiceException extends __ServiceException {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { InternetMonitorServiceException as __BaseException } from "./InternetMonitorServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You don't have sufficient permission to perform this action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -12,6 +13,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
13
14
|
}
|
|
14
15
|
/**
|
|
16
|
+
* @public
|
|
15
17
|
* <p>Measurements about the availability for your application on the internet, calculated by Amazon CloudWatch Internet Monitor. Amazon Web Services has substantial historical data about internet
|
|
16
18
|
* performance and availability between Amazon Web Services services and different network providers and geographies. By applying statistical analysis to the data, Internet Monitor
|
|
17
19
|
* can detect when the performance and availability for your application has dropped, compared to an estimated baseline that's already calculated. To make it
|
|
@@ -45,6 +47,7 @@ export interface AvailabilityMeasurement {
|
|
|
45
47
|
PercentOfClientLocationImpacted?: number;
|
|
46
48
|
}
|
|
47
49
|
/**
|
|
50
|
+
* @public
|
|
48
51
|
* <p>A bad request was received.</p>
|
|
49
52
|
*/
|
|
50
53
|
export declare class BadRequestException extends __BaseException {
|
|
@@ -56,6 +59,7 @@ export declare class BadRequestException extends __BaseException {
|
|
|
56
59
|
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
57
60
|
}
|
|
58
61
|
/**
|
|
62
|
+
* @public
|
|
59
63
|
* <p>The requested resource is in use.</p>
|
|
60
64
|
*/
|
|
61
65
|
export declare class ConflictException extends __BaseException {
|
|
@@ -66,6 +70,9 @@ export declare class ConflictException extends __BaseException {
|
|
|
66
70
|
*/
|
|
67
71
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
68
72
|
}
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
69
76
|
export interface CreateMonitorInput {
|
|
70
77
|
/**
|
|
71
78
|
* <p>The name of the monitor. </p>
|
|
@@ -95,12 +102,18 @@ export interface CreateMonitorInput {
|
|
|
95
102
|
*/
|
|
96
103
|
MaxCityNetworksToMonitor: number | undefined;
|
|
97
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
98
108
|
export declare enum MonitorConfigState {
|
|
99
109
|
ACTIVE = "ACTIVE",
|
|
100
110
|
ERROR = "ERROR",
|
|
101
111
|
INACTIVE = "INACTIVE",
|
|
102
112
|
PENDING = "PENDING"
|
|
103
113
|
}
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
104
117
|
export interface CreateMonitorOutput {
|
|
105
118
|
/**
|
|
106
119
|
* <p>The Amazon Resource Name (ARN) of the monitor.</p>
|
|
@@ -112,6 +125,7 @@ export interface CreateMonitorOutput {
|
|
|
112
125
|
Status: MonitorConfigState | string | undefined;
|
|
113
126
|
}
|
|
114
127
|
/**
|
|
128
|
+
* @public
|
|
115
129
|
* <p>An internal error occurred.</p>
|
|
116
130
|
*/
|
|
117
131
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -124,6 +138,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
124
138
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
125
139
|
}
|
|
126
140
|
/**
|
|
141
|
+
* @public
|
|
127
142
|
* <p>The request exceeded a service quota.</p>
|
|
128
143
|
*/
|
|
129
144
|
export declare class LimitExceededException extends __BaseException {
|
|
@@ -135,6 +150,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
135
150
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
136
151
|
}
|
|
137
152
|
/**
|
|
153
|
+
* @public
|
|
138
154
|
* <p>The request was denied due to request throttling.</p>
|
|
139
155
|
*/
|
|
140
156
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -149,6 +165,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
149
165
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
150
166
|
}
|
|
151
167
|
/**
|
|
168
|
+
* @public
|
|
152
169
|
* <p>Invalid request.</p>
|
|
153
170
|
*/
|
|
154
171
|
export declare class ValidationException extends __BaseException {
|
|
@@ -159,14 +176,23 @@ export declare class ValidationException extends __BaseException {
|
|
|
159
176
|
*/
|
|
160
177
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
161
178
|
}
|
|
179
|
+
/**
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
162
182
|
export interface DeleteMonitorInput {
|
|
163
183
|
/**
|
|
164
184
|
* <p>The name of the monitor to delete.</p>
|
|
165
185
|
*/
|
|
166
186
|
MonitorName: string | undefined;
|
|
167
187
|
}
|
|
188
|
+
/**
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
168
191
|
export interface DeleteMonitorOutput {
|
|
169
192
|
}
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
170
196
|
export interface GetHealthEventInput {
|
|
171
197
|
/**
|
|
172
198
|
* <p>The name of the monitor.</p>
|
|
@@ -179,6 +205,7 @@ export interface GetHealthEventInput {
|
|
|
179
205
|
EventId: string | undefined;
|
|
180
206
|
}
|
|
181
207
|
/**
|
|
208
|
+
* @public
|
|
182
209
|
* <p>An internet service provider (ISP) or network in Amazon CloudWatch Internet Monitor.</p>
|
|
183
210
|
*/
|
|
184
211
|
export interface Network {
|
|
@@ -191,11 +218,15 @@ export interface Network {
|
|
|
191
218
|
*/
|
|
192
219
|
ASNumber: number | undefined;
|
|
193
220
|
}
|
|
221
|
+
/**
|
|
222
|
+
* @public
|
|
223
|
+
*/
|
|
194
224
|
export declare enum TriangulationEventType {
|
|
195
225
|
AWS = "AWS",
|
|
196
226
|
INTERNET = "Internet"
|
|
197
227
|
}
|
|
198
228
|
/**
|
|
229
|
+
* @public
|
|
199
230
|
* <p>Information about the network impairment for a specific network measured by Amazon CloudWatch Internet Monitor.</p>
|
|
200
231
|
*/
|
|
201
232
|
export interface NetworkImpairment {
|
|
@@ -213,6 +244,7 @@ export interface NetworkImpairment {
|
|
|
213
244
|
NetworkEventType: TriangulationEventType | string | undefined;
|
|
214
245
|
}
|
|
215
246
|
/**
|
|
247
|
+
* @public
|
|
216
248
|
* <p>Round-trip time (RTT) is how long it takes for a request from the user to return a response to the user. Amazon CloudWatch Internet Monitor calculates RTT at different
|
|
217
249
|
* percentiles: p50, p90, and p95.</p>
|
|
218
250
|
*/
|
|
@@ -231,6 +263,7 @@ export interface RoundTripTime {
|
|
|
231
263
|
P95?: number;
|
|
232
264
|
}
|
|
233
265
|
/**
|
|
266
|
+
* @public
|
|
234
267
|
* <p>Measurements about the performance for your application on the internet calculated by Amazon CloudWatch Internet Monitor. Amazon Web Services has substantial historical data about internet
|
|
235
268
|
* performance and availability between Amazon Web Services services and different network providers and geographies. By applying statistical analysis to the data, Internet Monitor
|
|
236
269
|
* can detect when the performance and availability for your application has dropped, compared to an estimated baseline that's already calculated. To make it
|
|
@@ -272,6 +305,7 @@ export interface PerformanceMeasurement {
|
|
|
272
305
|
RoundTripTime?: RoundTripTime;
|
|
273
306
|
}
|
|
274
307
|
/**
|
|
308
|
+
* @public
|
|
275
309
|
* <p>Internet health includes measurements calculated by Amazon CloudWatch Internet Monitor about the performance and availability for your application on the internet. Amazon Web Services has
|
|
276
310
|
* substantial historical data about internet performance and availability between Amazon Web Services services and different network providers and geographies. By
|
|
277
311
|
* applying statistical analysis to the data, Internet Monitor can detect when the performance and availability for your application has dropped, compared to an
|
|
@@ -294,11 +328,15 @@ export interface InternetHealth {
|
|
|
294
328
|
*/
|
|
295
329
|
Performance?: PerformanceMeasurement;
|
|
296
330
|
}
|
|
331
|
+
/**
|
|
332
|
+
* @public
|
|
333
|
+
*/
|
|
297
334
|
export declare enum HealthEventStatus {
|
|
298
335
|
ACTIVE = "ACTIVE",
|
|
299
336
|
RESOLVED = "RESOLVED"
|
|
300
337
|
}
|
|
301
338
|
/**
|
|
339
|
+
* @public
|
|
302
340
|
* <p>Information about a location impacted by a health event in Amazon CloudWatch Internet Monitor.</p>
|
|
303
341
|
* <p>Geographic regions are hierarchically categorized into country, subdivision,
|
|
304
342
|
* metro and city geographic granularities. The geographic region is identified based
|
|
@@ -370,10 +408,16 @@ export interface ImpactedLocation {
|
|
|
370
408
|
*/
|
|
371
409
|
InternetHealth?: InternetHealth;
|
|
372
410
|
}
|
|
411
|
+
/**
|
|
412
|
+
* @public
|
|
413
|
+
*/
|
|
373
414
|
export declare enum HealthEventImpactType {
|
|
374
415
|
AVAILABILITY = "AVAILABILITY",
|
|
375
416
|
PERFORMANCE = "PERFORMANCE"
|
|
376
417
|
}
|
|
418
|
+
/**
|
|
419
|
+
* @public
|
|
420
|
+
*/
|
|
377
421
|
export interface GetHealthEventOutput {
|
|
378
422
|
/**
|
|
379
423
|
* <p>The Amazon Resource Name (ARN) of the event.</p>
|
|
@@ -416,12 +460,18 @@ export interface GetHealthEventOutput {
|
|
|
416
460
|
*/
|
|
417
461
|
ImpactType: HealthEventImpactType | string | undefined;
|
|
418
462
|
}
|
|
463
|
+
/**
|
|
464
|
+
* @public
|
|
465
|
+
*/
|
|
419
466
|
export interface GetMonitorInput {
|
|
420
467
|
/**
|
|
421
468
|
* <p>The name of the monitor.</p>
|
|
422
469
|
*/
|
|
423
470
|
MonitorName: string | undefined;
|
|
424
471
|
}
|
|
472
|
+
/**
|
|
473
|
+
* @public
|
|
474
|
+
*/
|
|
425
475
|
export declare enum MonitorProcessingStatusCode {
|
|
426
476
|
COLLECTING_DATA = "COLLECTING_DATA",
|
|
427
477
|
FAULT_ACCESS_CLOUDWATCH = "FAULT_ACCESS_CLOUDWATCH",
|
|
@@ -430,6 +480,9 @@ export declare enum MonitorProcessingStatusCode {
|
|
|
430
480
|
INSUFFICIENT_DATA = "INSUFFICIENT_DATA",
|
|
431
481
|
OK = "OK"
|
|
432
482
|
}
|
|
483
|
+
/**
|
|
484
|
+
* @public
|
|
485
|
+
*/
|
|
433
486
|
export interface GetMonitorOutput {
|
|
434
487
|
/**
|
|
435
488
|
* <p>The name of the monitor.</p>
|
|
@@ -474,6 +527,7 @@ export interface GetMonitorOutput {
|
|
|
474
527
|
MaxCityNetworksToMonitor: number | undefined;
|
|
475
528
|
}
|
|
476
529
|
/**
|
|
530
|
+
* @public
|
|
477
531
|
* <p>Information about a health event created in a monitor in Amazon CloudWatch Internet Monitor.</p>
|
|
478
532
|
*/
|
|
479
533
|
export interface HealthEvent {
|
|
@@ -518,6 +572,9 @@ export interface HealthEvent {
|
|
|
518
572
|
*/
|
|
519
573
|
ImpactType: HealthEventImpactType | string | undefined;
|
|
520
574
|
}
|
|
575
|
+
/**
|
|
576
|
+
* @public
|
|
577
|
+
*/
|
|
521
578
|
export interface ListHealthEventsInput {
|
|
522
579
|
/**
|
|
523
580
|
* <p>The name of the monitor.</p>
|
|
@@ -544,6 +601,9 @@ export interface ListHealthEventsInput {
|
|
|
544
601
|
*/
|
|
545
602
|
EventStatus?: HealthEventStatus | string;
|
|
546
603
|
}
|
|
604
|
+
/**
|
|
605
|
+
* @public
|
|
606
|
+
*/
|
|
547
607
|
export interface ListHealthEventsOutput {
|
|
548
608
|
/**
|
|
549
609
|
* <p>A list of health events.</p>
|
|
@@ -555,6 +615,7 @@ export interface ListHealthEventsOutput {
|
|
|
555
615
|
NextToken?: string;
|
|
556
616
|
}
|
|
557
617
|
/**
|
|
618
|
+
* @public
|
|
558
619
|
* <p>There was an internal server error.</p>
|
|
559
620
|
*/
|
|
560
621
|
export declare class InternalServerErrorException extends __BaseException {
|
|
@@ -566,12 +627,18 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
566
627
|
*/
|
|
567
628
|
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
568
629
|
}
|
|
630
|
+
/**
|
|
631
|
+
* @public
|
|
632
|
+
*/
|
|
569
633
|
export interface ListTagsForResourceInput {
|
|
570
634
|
/**
|
|
571
635
|
* <p>The Amazon Resource Name (ARN) for a resource.</p>
|
|
572
636
|
*/
|
|
573
637
|
ResourceArn: string | undefined;
|
|
574
638
|
}
|
|
639
|
+
/**
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
575
642
|
export interface ListTagsForResourceOutput {
|
|
576
643
|
/**
|
|
577
644
|
* <p>Tags for a resource.</p>
|
|
@@ -579,6 +646,7 @@ export interface ListTagsForResourceOutput {
|
|
|
579
646
|
Tags?: Record<string, string>;
|
|
580
647
|
}
|
|
581
648
|
/**
|
|
649
|
+
* @public
|
|
582
650
|
* <p>The request specifies something that doesn't exist.</p>
|
|
583
651
|
*/
|
|
584
652
|
export declare class NotFoundException extends __BaseException {
|
|
@@ -590,6 +658,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
590
658
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
591
659
|
}
|
|
592
660
|
/**
|
|
661
|
+
* @public
|
|
593
662
|
* <p>There were too many requests.</p>
|
|
594
663
|
*/
|
|
595
664
|
export declare class TooManyRequestsException extends __BaseException {
|
|
@@ -603,6 +672,9 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
603
672
|
*/
|
|
604
673
|
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
605
674
|
}
|
|
675
|
+
/**
|
|
676
|
+
* @public
|
|
677
|
+
*/
|
|
606
678
|
export interface ListMonitorsInput {
|
|
607
679
|
/**
|
|
608
680
|
* <p>The token for the next set of results. You receive this token from a previous call.</p>
|
|
@@ -620,6 +692,7 @@ export interface ListMonitorsInput {
|
|
|
620
692
|
MonitorStatus?: string;
|
|
621
693
|
}
|
|
622
694
|
/**
|
|
695
|
+
* @public
|
|
623
696
|
* <p>The description of and information about a monitor in Amazon CloudWatch Internet Monitor. </p>
|
|
624
697
|
*/
|
|
625
698
|
export interface Monitor {
|
|
@@ -640,6 +713,9 @@ export interface Monitor {
|
|
|
640
713
|
*/
|
|
641
714
|
ProcessingStatus?: MonitorProcessingStatusCode | string;
|
|
642
715
|
}
|
|
716
|
+
/**
|
|
717
|
+
* @public
|
|
718
|
+
*/
|
|
643
719
|
export interface ListMonitorsOutput {
|
|
644
720
|
/**
|
|
645
721
|
* <p>A list of monitors.</p>
|
|
@@ -651,6 +727,7 @@ export interface ListMonitorsOutput {
|
|
|
651
727
|
NextToken?: string;
|
|
652
728
|
}
|
|
653
729
|
/**
|
|
730
|
+
* @public
|
|
654
731
|
* <p>The request specifies a resource that doesn't exist.</p>
|
|
655
732
|
*/
|
|
656
733
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -661,6 +738,9 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
661
738
|
*/
|
|
662
739
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
663
740
|
}
|
|
741
|
+
/**
|
|
742
|
+
* @public
|
|
743
|
+
*/
|
|
664
744
|
export interface UpdateMonitorInput {
|
|
665
745
|
/**
|
|
666
746
|
* <p>The name of the monitor. </p>
|
|
@@ -696,6 +776,9 @@ export interface UpdateMonitorInput {
|
|
|
696
776
|
*/
|
|
697
777
|
MaxCityNetworksToMonitor?: number;
|
|
698
778
|
}
|
|
779
|
+
/**
|
|
780
|
+
* @public
|
|
781
|
+
*/
|
|
699
782
|
export interface UpdateMonitorOutput {
|
|
700
783
|
/**
|
|
701
784
|
* <p>The Amazon Resource Name (ARN) of the monitor.</p>
|
|
@@ -706,6 +789,9 @@ export interface UpdateMonitorOutput {
|
|
|
706
789
|
*/
|
|
707
790
|
Status: MonitorConfigState | string | undefined;
|
|
708
791
|
}
|
|
792
|
+
/**
|
|
793
|
+
* @public
|
|
794
|
+
*/
|
|
709
795
|
export interface TagResourceInput {
|
|
710
796
|
/**
|
|
711
797
|
* <p>The Amazon Resource Name (ARN) for a tag that you add to a resource. Tags are supported only for monitors in Amazon CloudWatch Internet Monitor.</p>
|
|
@@ -716,8 +802,14 @@ export interface TagResourceInput {
|
|
|
716
802
|
*/
|
|
717
803
|
Tags: Record<string, string> | undefined;
|
|
718
804
|
}
|
|
805
|
+
/**
|
|
806
|
+
* @public
|
|
807
|
+
*/
|
|
719
808
|
export interface TagResourceOutput {
|
|
720
809
|
}
|
|
810
|
+
/**
|
|
811
|
+
* @public
|
|
812
|
+
*/
|
|
721
813
|
export interface UntagResourceInput {
|
|
722
814
|
/**
|
|
723
815
|
* <p>The Amazon Resource Name (ARN) for a tag you remove a resource from.</p>
|
|
@@ -728,6 +820,9 @@ export interface UntagResourceInput {
|
|
|
728
820
|
*/
|
|
729
821
|
TagKeys: string[] | undefined;
|
|
730
822
|
}
|
|
823
|
+
/**
|
|
824
|
+
* @public
|
|
825
|
+
*/
|
|
731
826
|
export interface UntagResourceOutput {
|
|
732
827
|
}
|
|
733
828
|
/**
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { InternetMonitorClient } from "../InternetMonitorClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface InternetMonitorPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: InternetMonitorClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListHealthEventsCommandInput, ListHealthEventsCommandOutput } from "../commands/ListHealthEventsCommand";
|
|
3
3
|
import { InternetMonitorPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListHealthEvents(config: InternetMonitorPaginationConfiguration, input: ListHealthEventsCommandInput, ...additionalArguments: any): Paginator<ListHealthEventsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListMonitorsCommandInput, ListMonitorsCommandOutput } from "../commands/ListMonitorsCommand";
|
|
3
3
|
import { InternetMonitorPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListMonitors(config: InternetMonitorPaginationConfiguration, input: ListMonitorsCommandInput, ...additionalArguments: any): Paginator<ListMonitorsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-internetmonitor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Internetmonitor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.296.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.296.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.296.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.296.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.296.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.296.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.296.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.296.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.296.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.296.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.296.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.296.0",
|
|
43
|
+
"@aws-sdk/types": "3.296.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.296.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.295.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.296.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.296.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.296.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.296.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.296.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
55
55
|
"tslib": "^2.5.0",
|
|
56
56
|
"uuid": "^8.3.2"
|