@aws-sdk/client-synthetics 3.533.0 → 3.535.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/Synthetics.d.ts +5 -1
- package/dist-types/SyntheticsClient.d.ts +1 -1
- package/dist-types/commands/AssociateResourceCommand.d.ts +2 -1
- package/dist-types/commands/CreateCanaryCommand.d.ts +2 -1
- package/dist-types/commands/CreateGroupCommand.d.ts +2 -1
- package/dist-types/commands/DeleteCanaryCommand.d.ts +2 -1
- package/dist-types/commands/DeleteGroupCommand.d.ts +2 -1
- package/dist-types/commands/DescribeCanariesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeCanariesLastRunCommand.d.ts +2 -1
- package/dist-types/commands/DescribeRuntimeVersionsCommand.d.ts +2 -1
- package/dist-types/commands/DisassociateResourceCommand.d.ts +2 -1
- package/dist-types/commands/GetCanaryCommand.d.ts +2 -1
- package/dist-types/commands/GetCanaryRunsCommand.d.ts +2 -1
- package/dist-types/commands/GetGroupCommand.d.ts +2 -1
- package/dist-types/commands/ListAssociatedGroupsCommand.d.ts +2 -1
- package/dist-types/commands/ListGroupResourcesCommand.d.ts +2 -1
- package/dist-types/commands/ListGroupsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/StartCanaryCommand.d.ts +2 -1
- package/dist-types/commands/StopCanaryCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateCanaryCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +196 -196
- package/dist-types/ts3.4/Synthetics.d.ts +4 -0
- package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateCanaryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteCanaryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeCanariesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeCanariesLastRunCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeRuntimeVersionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetCanaryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetCanaryRunsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAssociatedGroupsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartCanaryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StopCanaryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateCanaryCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -55,18 +55,21 @@ export interface Synthetics {
|
|
|
55
55
|
/**
|
|
56
56
|
* @see {@link DescribeCanariesCommand}
|
|
57
57
|
*/
|
|
58
|
+
describeCanaries(): Promise<DescribeCanariesCommandOutput>;
|
|
58
59
|
describeCanaries(args: DescribeCanariesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCanariesCommandOutput>;
|
|
59
60
|
describeCanaries(args: DescribeCanariesCommandInput, cb: (err: any, data?: DescribeCanariesCommandOutput) => void): void;
|
|
60
61
|
describeCanaries(args: DescribeCanariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCanariesCommandOutput) => void): void;
|
|
61
62
|
/**
|
|
62
63
|
* @see {@link DescribeCanariesLastRunCommand}
|
|
63
64
|
*/
|
|
65
|
+
describeCanariesLastRun(): Promise<DescribeCanariesLastRunCommandOutput>;
|
|
64
66
|
describeCanariesLastRun(args: DescribeCanariesLastRunCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCanariesLastRunCommandOutput>;
|
|
65
67
|
describeCanariesLastRun(args: DescribeCanariesLastRunCommandInput, cb: (err: any, data?: DescribeCanariesLastRunCommandOutput) => void): void;
|
|
66
68
|
describeCanariesLastRun(args: DescribeCanariesLastRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCanariesLastRunCommandOutput) => void): void;
|
|
67
69
|
/**
|
|
68
70
|
* @see {@link DescribeRuntimeVersionsCommand}
|
|
69
71
|
*/
|
|
72
|
+
describeRuntimeVersions(): Promise<DescribeRuntimeVersionsCommandOutput>;
|
|
70
73
|
describeRuntimeVersions(args: DescribeRuntimeVersionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRuntimeVersionsCommandOutput>;
|
|
71
74
|
describeRuntimeVersions(args: DescribeRuntimeVersionsCommandInput, cb: (err: any, data?: DescribeRuntimeVersionsCommandOutput) => void): void;
|
|
72
75
|
describeRuntimeVersions(args: DescribeRuntimeVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRuntimeVersionsCommandOutput) => void): void;
|
|
@@ -109,6 +112,7 @@ export interface Synthetics {
|
|
|
109
112
|
/**
|
|
110
113
|
* @see {@link ListGroupsCommand}
|
|
111
114
|
*/
|
|
115
|
+
listGroups(): Promise<ListGroupsCommandOutput>;
|
|
112
116
|
listGroups(args: ListGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupsCommandOutput>;
|
|
113
117
|
listGroups(args: ListGroupsCommandInput, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
114
118
|
listGroups(args: ListGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
@@ -150,7 +154,6 @@ export interface Synthetics {
|
|
|
150
154
|
updateCanary(args: UpdateCanaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCanaryCommandOutput) => void): void;
|
|
151
155
|
}
|
|
152
156
|
/**
|
|
153
|
-
* @public
|
|
154
157
|
* <fullname>Amazon CloudWatch Synthetics</fullname>
|
|
155
158
|
* <p>You can use Amazon CloudWatch Synthetics to continually monitor your services. You can
|
|
156
159
|
* create and manage <i>canaries</i>, which are modular, lightweight scripts
|
|
@@ -166,6 +169,7 @@ export interface Synthetics {
|
|
|
166
169
|
* <p>Before you create and manage canaries, be aware of the security considerations. For more
|
|
167
170
|
* information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/servicelens_canaries_security.html">Security
|
|
168
171
|
* Considerations for Synthetics Canaries</a>.</p>
|
|
172
|
+
* @public
|
|
169
173
|
*/
|
|
170
174
|
export declare class Synthetics extends SyntheticsClient implements Synthetics {
|
|
171
175
|
}
|
|
@@ -172,7 +172,6 @@ export type SyntheticsClientResolvedConfigType = __SmithyResolvedConfiguration<_
|
|
|
172
172
|
export interface SyntheticsClientResolvedConfig extends SyntheticsClientResolvedConfigType {
|
|
173
173
|
}
|
|
174
174
|
/**
|
|
175
|
-
* @public
|
|
176
175
|
* <fullname>Amazon CloudWatch Synthetics</fullname>
|
|
177
176
|
* <p>You can use Amazon CloudWatch Synthetics to continually monitor your services. You can
|
|
178
177
|
* create and manage <i>canaries</i>, which are modular, lightweight scripts
|
|
@@ -188,6 +187,7 @@ export interface SyntheticsClientResolvedConfig extends SyntheticsClientResolved
|
|
|
188
187
|
* <p>Before you create and manage canaries, be aware of the security considerations. For more
|
|
189
188
|
* information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/servicelens_canaries_security.html">Security
|
|
190
189
|
* Considerations for Synthetics Canaries</a>.</p>
|
|
190
|
+
* @public
|
|
191
191
|
*/
|
|
192
192
|
export declare class SyntheticsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig> {
|
|
193
193
|
/**
|
|
@@ -22,10 +22,10 @@ export interface AssociateResourceCommandOutput extends AssociateResourceRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const AssociateResourceCommand_base: {
|
|
24
24
|
new (input: AssociateResourceCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateResourceCommandInput, AssociateResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AssociateResourceCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateResourceCommandInput, AssociateResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Associates a canary with a group. Using groups can help you with
|
|
30
30
|
* managing and automating your canaries, and you can also view aggregated run results and statistics
|
|
31
31
|
* for all canaries in a group. </p>
|
|
@@ -70,6 +70,7 @@ declare const AssociateResourceCommand_base: {
|
|
|
70
70
|
* @throws {@link SyntheticsServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class AssociateResourceCommand extends AssociateResourceCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateCanaryCommandOutput extends CreateCanaryResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateCanaryCommand_base: {
|
|
24
24
|
new (input: CreateCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCanaryCommandInput, CreateCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCanaryCommandInput, CreateCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a canary. Canaries are scripts that monitor your endpoints and APIs from the
|
|
30
30
|
* outside-in. Canaries help you check the availability and latency of your web services and
|
|
31
31
|
* troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and
|
|
@@ -178,6 +178,7 @@ declare const CreateCanaryCommand_base: {
|
|
|
178
178
|
* @throws {@link SyntheticsServiceException}
|
|
179
179
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
180
180
|
*
|
|
181
|
+
* @public
|
|
181
182
|
*/
|
|
182
183
|
export declare class CreateCanaryCommand extends CreateCanaryCommand_base {
|
|
183
184
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateGroupCommand_base: {
|
|
24
24
|
new (input: CreateGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateGroupCommandInput, CreateGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a group which you can use to associate canaries with each other, including cross-Region
|
|
30
30
|
* canaries. Using groups can help you with
|
|
31
31
|
* managing and automating your canaries, and you can also view aggregated run results and statistics
|
|
@@ -89,6 +89,7 @@ declare const CreateGroupCommand_base: {
|
|
|
89
89
|
* @throws {@link SyntheticsServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class CreateGroupCommand extends CreateGroupCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteCanaryCommandOutput extends DeleteCanaryResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteCanaryCommand_base: {
|
|
24
24
|
new (input: DeleteCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCanaryCommandInput, DeleteCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCanaryCommandInput, DeleteCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Permanently deletes the specified canary.</p>
|
|
30
30
|
* <p>If you specify <code>DeleteLambda</code> to <code>true</code>, CloudWatch Synthetics also deletes
|
|
31
31
|
* the Lambda functions and layers that are used by the canary.</p>
|
|
@@ -95,6 +95,7 @@ declare const DeleteCanaryCommand_base: {
|
|
|
95
95
|
* @throws {@link SyntheticsServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
97
97
|
*
|
|
98
|
+
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class DeleteCanaryCommand extends DeleteCanaryCommand_base {
|
|
100
101
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteGroupCommand_base: {
|
|
24
24
|
new (input: DeleteGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteGroupCommandInput, DeleteGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a group. The group doesn't need to be empty to be deleted. If there are canaries in the group,
|
|
30
30
|
* they are not deleted when you delete the group.
|
|
31
31
|
* </p>
|
|
@@ -67,6 +67,7 @@ declare const DeleteGroupCommand_base: {
|
|
|
67
67
|
* @throws {@link SyntheticsServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class DeleteGroupCommand extends DeleteGroupCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeCanariesCommandOutput extends DescribeCanariesResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeCanariesCommand_base: {
|
|
24
24
|
new (input: DescribeCanariesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeCanariesCommandInput, DescribeCanariesCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeCanariesCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeCanariesCommandInput, DescribeCanariesCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation returns a list of the canaries in your account, along with full details
|
|
30
30
|
* about each canary.</p>
|
|
31
31
|
* <p>This operation supports resource-level authorization using an IAM policy and
|
|
@@ -137,6 +137,7 @@ declare const DescribeCanariesCommand_base: {
|
|
|
137
137
|
* @throws {@link SyntheticsServiceException}
|
|
138
138
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
139
139
|
*
|
|
140
|
+
* @public
|
|
140
141
|
*/
|
|
141
142
|
export declare class DescribeCanariesCommand extends DescribeCanariesCommand_base {
|
|
142
143
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeCanariesLastRunCommandOutput extends DescribeCanariesLa
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeCanariesLastRunCommand_base: {
|
|
24
24
|
new (input: DescribeCanariesLastRunCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeCanariesLastRunCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeCanariesLastRunCommandInput, DescribeCanariesLastRunCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Use this operation to see information from the most recent run of each canary that you have created.</p>
|
|
30
30
|
* <p>This operation supports resource-level authorization using an IAM policy and
|
|
31
31
|
* the <code>Names</code> parameter. If you specify the <code>Names</code> parameter, the operation is successful only if you have authorization to view
|
|
@@ -90,6 +90,7 @@ declare const DescribeCanariesLastRunCommand_base: {
|
|
|
90
90
|
* @throws {@link SyntheticsServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
92
92
|
*
|
|
93
|
+
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class DescribeCanariesLastRunCommand extends DescribeCanariesLastRunCommand_base {
|
|
95
96
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeRuntimeVersionsCommandOutput extends DescribeRuntimeVer
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeRuntimeVersionsCommand_base: {
|
|
24
24
|
new (input: DescribeRuntimeVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeRuntimeVersionsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeRuntimeVersionsCommandInput, DescribeRuntimeVersionsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of Synthetics canary runtime versions. For more information,
|
|
30
30
|
* see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Library.html">
|
|
31
31
|
* Canary Runtime Versions</a>.</p>
|
|
@@ -70,6 +70,7 @@ declare const DescribeRuntimeVersionsCommand_base: {
|
|
|
70
70
|
* @throws {@link SyntheticsServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class DescribeRuntimeVersionsCommand extends DescribeRuntimeVersionsCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DisassociateResourceCommand_base: {
|
|
24
24
|
new (input: DisassociateResourceCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DisassociateResourceCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes a canary from a group. You must run this operation in the Region where the canary exists.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const DisassociateResourceCommand_base: {
|
|
|
64
64
|
* @throws {@link SyntheticsServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class DisassociateResourceCommand extends DisassociateResourceCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetCanaryCommandOutput extends GetCanaryResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetCanaryCommand_base: {
|
|
24
24
|
new (input: GetCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<GetCanaryCommandInput, GetCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<GetCanaryCommandInput, GetCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves complete information about one canary. You must specify
|
|
30
30
|
* the name of the canary that you want. To get a list of canaries
|
|
31
31
|
* and their names, use <a href="https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DescribeCanaries.html">DescribeCanaries</a>.</p>
|
|
@@ -123,6 +123,7 @@ declare const GetCanaryCommand_base: {
|
|
|
123
123
|
* @throws {@link SyntheticsServiceException}
|
|
124
124
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
125
125
|
*
|
|
126
|
+
* @public
|
|
126
127
|
*/
|
|
127
128
|
export declare class GetCanaryCommand extends GetCanaryCommand_base {
|
|
128
129
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetCanaryRunsCommandOutput extends GetCanaryRunsResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetCanaryRunsCommand_base: {
|
|
24
24
|
new (input: GetCanaryRunsCommandInput): import("@smithy/smithy-client").CommandImpl<GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetCanaryRunsCommandInput): import("@smithy/smithy-client").CommandImpl<GetCanaryRunsCommandInput, GetCanaryRunsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves a list of runs for a specified canary.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -80,6 +80,7 @@ declare const GetCanaryRunsCommand_base: {
|
|
|
80
80
|
* @throws {@link SyntheticsServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class GetCanaryRunsCommand extends GetCanaryRunsCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetGroupCommand_base: {
|
|
24
24
|
new (input: GetGroupCommandInput): import("@smithy/smithy-client").CommandImpl<GetGroupCommandInput, GetGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetGroupCommandInput): import("@smithy/smithy-client").CommandImpl<GetGroupCommandInput, GetGroupCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about one group. Groups are a global resource, so you can use this operation from
|
|
30
30
|
* any Region.</p>
|
|
31
31
|
* @example
|
|
@@ -75,6 +75,7 @@ declare const GetGroupCommand_base: {
|
|
|
75
75
|
* @throws {@link SyntheticsServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class GetGroupCommand extends GetGroupCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListAssociatedGroupsCommandOutput extends ListAssociatedGroupsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListAssociatedGroupsCommand_base: {
|
|
24
24
|
new (input: ListAssociatedGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAssociatedGroupsCommandInput, ListAssociatedGroupsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListAssociatedGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAssociatedGroupsCommandInput, ListAssociatedGroupsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of the groups that the specified canary is associated with. The canary
|
|
30
30
|
* that you specify must be in the current Region.</p>
|
|
31
31
|
* @example
|
|
@@ -72,6 +72,7 @@ declare const ListAssociatedGroupsCommand_base: {
|
|
|
72
72
|
* @throws {@link SyntheticsServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
74
74
|
*
|
|
75
|
+
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class ListAssociatedGroupsCommand extends ListAssociatedGroupsCommand_base {
|
|
77
78
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListGroupResourcesCommandOutput extends ListGroupResourcesRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListGroupResourcesCommand_base: {
|
|
24
24
|
new (input: ListGroupResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListGroupResourcesCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroupResourcesCommandInput, ListGroupResourcesCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation returns a list of the ARNs of the canaries that are associated with the specified group.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -70,6 +70,7 @@ declare const ListGroupResourcesCommand_base: {
|
|
|
70
70
|
* @throws {@link SyntheticsServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class ListGroupResourcesCommand extends ListGroupResourcesCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListGroupsCommand_base: {
|
|
24
24
|
new (input: ListGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListGroupsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListGroupsCommandInput, ListGroupsCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of all groups in the account, displaying their names, unique IDs, and ARNs. The groups
|
|
30
30
|
* from all Regions are returned.</p>
|
|
31
31
|
* @example
|
|
@@ -68,6 +68,7 @@ declare const ListGroupsCommand_base: {
|
|
|
68
68
|
* @throws {@link SyntheticsServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
70
70
|
*
|
|
71
|
+
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class ListGroupsCommand extends ListGroupsCommand_base {
|
|
73
74
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays the tags associated with a canary or group.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -70,6 +70,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
70
70
|
* @throws {@link SyntheticsServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartCanaryCommandOutput extends StartCanaryResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartCanaryCommand_base: {
|
|
24
24
|
new (input: StartCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<StartCanaryCommandInput, StartCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<StartCanaryCommandInput, StartCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Use this operation to run a canary that has already been created.
|
|
30
30
|
* The frequency of the canary runs is determined by the value of the canary's <code>Schedule</code>. To see a canary's schedule,
|
|
31
31
|
* use <a href="https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_GetCanary.html">GetCanary</a>.</p>
|
|
@@ -65,6 +65,7 @@ declare const StartCanaryCommand_base: {
|
|
|
65
65
|
* @throws {@link SyntheticsServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class StartCanaryCommand extends StartCanaryCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface StopCanaryCommandOutput extends StopCanaryResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const StopCanaryCommand_base: {
|
|
24
24
|
new (input: StopCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<StopCanaryCommandInput, StopCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StopCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<StopCanaryCommandInput, StopCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Stops the canary to prevent all future runs. If the canary is currently running,the
|
|
30
30
|
* run that is in progress completes on its own, publishes metrics, and uploads artifacts, but
|
|
31
31
|
* it is not recorded in Synthetics as a completed run.</p>
|
|
@@ -67,6 +67,7 @@ declare const StopCanaryCommand_base: {
|
|
|
67
67
|
* @throws {@link SyntheticsServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class StopCanaryCommand extends StopCanaryCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Assigns one or more tags (key-value pairs) to the specified canary or group. </p>
|
|
30
30
|
* <p>Tags can help you organize and categorize your
|
|
31
31
|
* resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with
|
|
@@ -80,6 +80,7 @@ declare const TagResourceCommand_base: {
|
|
|
80
80
|
* @throws {@link SyntheticsServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes one or more tags from the specified resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const UntagResourceCommand_base: {
|
|
|
69
69
|
* @throws {@link SyntheticsServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateCanaryCommandOutput extends UpdateCanaryResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateCanaryCommand_base: {
|
|
24
24
|
new (input: UpdateCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateCanaryCommandInput, UpdateCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateCanaryCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateCanaryCommandInput, UpdateCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the configuration of a canary that has
|
|
30
30
|
* already been created.</p>
|
|
31
31
|
* <p>You can't use this operation to update the tags of an existing canary. To
|
|
@@ -119,6 +119,7 @@ declare const UpdateCanaryCommand_base: {
|
|
|
119
119
|
* @throws {@link SyntheticsServiceException}
|
|
120
120
|
* <p>Base exception class for all service exceptions from Synthetics service.</p>
|
|
121
121
|
*
|
|
122
|
+
* @public
|
|
122
123
|
*/
|
|
123
124
|
export declare class UpdateCanaryCommand extends UpdateCanaryCommand_base {
|
|
124
125
|
}
|