@aws-sdk/client-synthetics 3.1077.0 → 3.1078.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-cjs/index.js +30 -223
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/AssociateResourceCommand.js +2 -14
- package/dist-es/commands/CreateCanaryCommand.js +2 -14
- package/dist-es/commands/CreateGroupCommand.js +2 -14
- package/dist-es/commands/DeleteCanaryCommand.js +2 -14
- package/dist-es/commands/DeleteGroupCommand.js +2 -14
- package/dist-es/commands/DescribeCanariesCommand.js +2 -14
- package/dist-es/commands/DescribeCanariesLastRunCommand.js +2 -14
- package/dist-es/commands/DescribeRuntimeVersionsCommand.js +2 -14
- package/dist-es/commands/DisassociateResourceCommand.js +2 -14
- package/dist-es/commands/GetCanaryCommand.js +2 -14
- package/dist-es/commands/GetCanaryRunsCommand.js +2 -14
- package/dist-es/commands/GetGroupCommand.js +2 -14
- package/dist-es/commands/ListAssociatedGroupsCommand.js +2 -14
- package/dist-es/commands/ListGroupResourcesCommand.js +2 -14
- package/dist-es/commands/ListGroupsCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/dist-es/commands/StartCanaryCommand.js +2 -14
- package/dist-es/commands/StartCanaryDryRunCommand.js +2 -14
- package/dist-es/commands/StopCanaryCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +2 -14
- package/dist-es/commands/UntagResourceCommand.js +2 -14
- package/dist-es/commands/UpdateCanaryCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/AssociateResourceCommand.d.ts +3 -8
- package/dist-types/commands/CreateCanaryCommand.d.ts +3 -8
- package/dist-types/commands/CreateGroupCommand.d.ts +3 -8
- package/dist-types/commands/DeleteCanaryCommand.d.ts +3 -8
- package/dist-types/commands/DeleteGroupCommand.d.ts +3 -8
- package/dist-types/commands/DescribeCanariesCommand.d.ts +3 -8
- package/dist-types/commands/DescribeCanariesLastRunCommand.d.ts +3 -8
- package/dist-types/commands/DescribeRuntimeVersionsCommand.d.ts +3 -8
- package/dist-types/commands/DisassociateResourceCommand.d.ts +3 -8
- package/dist-types/commands/GetCanaryCommand.d.ts +3 -8
- package/dist-types/commands/GetCanaryRunsCommand.d.ts +3 -8
- package/dist-types/commands/GetGroupCommand.d.ts +3 -8
- package/dist-types/commands/ListAssociatedGroupsCommand.d.ts +3 -8
- package/dist-types/commands/ListGroupResourcesCommand.d.ts +3 -8
- package/dist-types/commands/ListGroupsCommand.d.ts +3 -8
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/dist-types/commands/StartCanaryCommand.d.ts +3 -8
- package/dist-types/commands/StartCanaryDryRunCommand.d.ts +3 -8
- package/dist-types/commands/StopCanaryCommand.d.ts +3 -8
- package/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UpdateCanaryCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeCanariesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeCanariesLastRunCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeRuntimeVersionsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetCanaryRunsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAssociatedGroupsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListGroupResourcesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartCanaryDryRunCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StopCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateCanaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { StartCanaryRequest, StartCanaryResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface StartCanaryCommandInput extends StartCanaryRequest {
|
|
|
22
19
|
export interface StartCanaryCommandOutput extends StartCanaryResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const StartCanaryCommand_base: {
|
|
25
|
-
new (input: StartCanaryCommandInput): import("@smithy/core/client").CommandImpl<StartCanaryCommandInput, StartCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: StartCanaryCommandInput): import("@smithy/core/client").CommandImpl<StartCanaryCommandInput, StartCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: StartCanaryCommandInput): import("@smithy/core/client").CommandImpl<StartCanaryCommandInput, StartCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StartCanaryCommandInput): import("@smithy/core/client").CommandImpl<StartCanaryCommandInput, StartCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Use this operation to run a canary that has already been created.
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { StartCanaryDryRunRequest, StartCanaryDryRunResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface StartCanaryDryRunCommandInput extends StartCanaryDryRunRequest
|
|
|
22
19
|
export interface StartCanaryDryRunCommandOutput extends StartCanaryDryRunResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const StartCanaryDryRunCommand_base: {
|
|
25
|
-
new (input: StartCanaryDryRunCommandInput): import("@smithy/core/client").CommandImpl<StartCanaryDryRunCommandInput, StartCanaryDryRunCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: StartCanaryDryRunCommandInput): import("@smithy/core/client").CommandImpl<StartCanaryDryRunCommandInput, StartCanaryDryRunCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: StartCanaryDryRunCommandInput): import("@smithy/core/client").CommandImpl<StartCanaryDryRunCommandInput, StartCanaryDryRunCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StartCanaryDryRunCommandInput): import("@smithy/core/client").CommandImpl<StartCanaryDryRunCommandInput, StartCanaryDryRunCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Use this operation to start a dry run for a canary that has already been created</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { StopCanaryRequest, StopCanaryResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface StopCanaryCommandInput extends StopCanaryRequest {
|
|
|
22
19
|
export interface StopCanaryCommandOutput extends StopCanaryResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const StopCanaryCommand_base: {
|
|
25
|
-
new (input: StopCanaryCommandInput): import("@smithy/core/client").CommandImpl<StopCanaryCommandInput, StopCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: StopCanaryCommandInput): import("@smithy/core/client").CommandImpl<StopCanaryCommandInput, StopCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: StopCanaryCommandInput): import("@smithy/core/client").CommandImpl<StopCanaryCommandInput, StopCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StopCanaryCommandInput): import("@smithy/core/client").CommandImpl<StopCanaryCommandInput, StopCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Stops the canary to prevent all future runs. If the canary is currently running,the
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
22
19
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const TagResourceCommand_base: {
|
|
25
|
-
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Assigns one or more tags (key-value pairs) to the specified canary or group. </p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
|
22
19
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UntagResourceCommand_base: {
|
|
25
|
-
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Removes one or more tags from the specified resource.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateCanaryRequest, UpdateCanaryResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateCanaryCommandInput extends UpdateCanaryRequest {
|
|
|
22
19
|
export interface UpdateCanaryCommandOutput extends UpdateCanaryResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateCanaryCommand_base: {
|
|
25
|
-
new (input: UpdateCanaryCommandInput): import("@smithy/core/client").CommandImpl<UpdateCanaryCommandInput, UpdateCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateCanaryCommandInput): import("@smithy/core/client").CommandImpl<UpdateCanaryCommandInput, UpdateCanaryCommandOutput, SyntheticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateCanaryCommandInput): import("@smithy/core/client").CommandImpl<UpdateCanaryCommandInput, UpdateCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateCanaryCommandInput): import("@smithy/core/client").CommandImpl<UpdateCanaryCommandInput, UpdateCanaryCommandOutput, import("..").SyntheticsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Updates the configuration of a canary that has already been created.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
23
23
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
24
24
|
export type { SyntheticsExtensionConfiguration } from "./extensionConfiguration";
|
|
25
25
|
export * from "./commands";
|
|
26
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
26
27
|
export * from "./schemas/schemas_0";
|
|
27
28
|
export * from "./pagination";
|
|
28
29
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ServiceInputTypes,
|
|
4
|
+
ServiceOutputTypes,
|
|
5
|
+
SyntheticsClientResolvedConfig,
|
|
6
|
+
} from "./SyntheticsClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
SyntheticsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
SyntheticsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
AssociateResourceRequest,
|
|
5
4
|
AssociateResourceResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SyntheticsClientResolvedConfig,
|
|
11
|
-
} from "../SyntheticsClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface AssociateResourceCommandInput
|
|
15
8
|
extends AssociateResourceRequest {}
|
|
16
9
|
export interface AssociateResourceCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const AssociateResourceCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
AssociateResourceCommandInput,
|
|
24
17
|
AssociateResourceCommandOutput,
|
|
25
|
-
SyntheticsClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: AssociateResourceCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
AssociateResourceCommandInput,
|
|
33
26
|
AssociateResourceCommandOutput,
|
|
34
|
-
SyntheticsClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class AssociateResourceCommand extends AssociateResourceCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { CreateCanaryRequest, CreateCanaryResponse } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SyntheticsClientResolvedConfig,
|
|
8
|
-
} from "../SyntheticsClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface CreateCanaryCommandInput extends CreateCanaryRequest {}
|
|
12
5
|
export interface CreateCanaryCommandOutput
|
|
13
6
|
extends CreateCanaryResponse,
|
|
@@ -18,22 +11,20 @@ declare const CreateCanaryCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
CreateCanaryCommandInput,
|
|
20
13
|
CreateCanaryCommandOutput,
|
|
21
|
-
SyntheticsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: CreateCanaryCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
CreateCanaryCommandInput,
|
|
29
22
|
CreateCanaryCommandOutput,
|
|
30
|
-
SyntheticsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class CreateCanaryCommand extends CreateCanaryCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SyntheticsClientResolvedConfig,
|
|
8
|
-
} from "../SyntheticsClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface CreateGroupCommandInput extends CreateGroupRequest {}
|
|
12
5
|
export interface CreateGroupCommandOutput
|
|
13
6
|
extends CreateGroupResponse,
|
|
@@ -18,22 +11,20 @@ declare const CreateGroupCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
CreateGroupCommandInput,
|
|
20
13
|
CreateGroupCommandOutput,
|
|
21
|
-
SyntheticsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: CreateGroupCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
CreateGroupCommandInput,
|
|
29
22
|
CreateGroupCommandOutput,
|
|
30
|
-
SyntheticsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class CreateGroupCommand extends CreateGroupCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { DeleteCanaryRequest, DeleteCanaryResponse } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SyntheticsClientResolvedConfig,
|
|
8
|
-
} from "../SyntheticsClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeleteCanaryCommandInput extends DeleteCanaryRequest {}
|
|
12
5
|
export interface DeleteCanaryCommandOutput
|
|
13
6
|
extends DeleteCanaryResponse,
|
|
@@ -18,22 +11,20 @@ declare const DeleteCanaryCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
DeleteCanaryCommandInput,
|
|
20
13
|
DeleteCanaryCommandOutput,
|
|
21
|
-
SyntheticsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: DeleteCanaryCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
DeleteCanaryCommandInput,
|
|
29
22
|
DeleteCanaryCommandOutput,
|
|
30
|
-
SyntheticsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class DeleteCanaryCommand extends DeleteCanaryCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SyntheticsClientResolvedConfig,
|
|
8
|
-
} from "../SyntheticsClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeleteGroupCommandInput extends DeleteGroupRequest {}
|
|
12
5
|
export interface DeleteGroupCommandOutput
|
|
13
6
|
extends DeleteGroupResponse,
|
|
@@ -18,22 +11,20 @@ declare const DeleteGroupCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
DeleteGroupCommandInput,
|
|
20
13
|
DeleteGroupCommandOutput,
|
|
21
|
-
SyntheticsClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: DeleteGroupCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
DeleteGroupCommandInput,
|
|
29
22
|
DeleteGroupCommandOutput,
|
|
30
|
-
SyntheticsClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class DeleteGroupCommand extends DeleteGroupCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DescribeCanariesRequest,
|
|
5
4
|
DescribeCanariesResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SyntheticsClientResolvedConfig,
|
|
11
|
-
} from "../SyntheticsClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DescribeCanariesCommandInput extends DescribeCanariesRequest {}
|
|
15
8
|
export interface DescribeCanariesCommandOutput
|
|
16
9
|
extends DescribeCanariesResponse,
|
|
@@ -21,22 +14,20 @@ declare const DescribeCanariesCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
DescribeCanariesCommandInput,
|
|
23
16
|
DescribeCanariesCommandOutput,
|
|
24
|
-
SyntheticsClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
...[input]: [] | [DescribeCanariesCommandInput]
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
DescribeCanariesCommandInput,
|
|
32
25
|
DescribeCanariesCommandOutput,
|
|
33
|
-
SyntheticsClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class DescribeCanariesCommand extends DescribeCanariesCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DescribeCanariesLastRunRequest,
|
|
5
4
|
DescribeCanariesLastRunResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SyntheticsClientResolvedConfig,
|
|
11
|
-
} from "../SyntheticsClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DescribeCanariesLastRunCommandInput
|
|
15
8
|
extends DescribeCanariesLastRunRequest {}
|
|
16
9
|
export interface DescribeCanariesLastRunCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DescribeCanariesLastRunCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DescribeCanariesLastRunCommandInput,
|
|
24
17
|
DescribeCanariesLastRunCommandOutput,
|
|
25
|
-
SyntheticsClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [DescribeCanariesLastRunCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DescribeCanariesLastRunCommandInput,
|
|
33
26
|
DescribeCanariesLastRunCommandOutput,
|
|
34
|
-
SyntheticsClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DescribeCanariesLastRunCommand extends DescribeCanariesLastRunCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DescribeRuntimeVersionsRequest,
|
|
5
4
|
DescribeRuntimeVersionsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SyntheticsClientResolvedConfig,
|
|
11
|
-
} from "../SyntheticsClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DescribeRuntimeVersionsCommandInput
|
|
15
8
|
extends DescribeRuntimeVersionsRequest {}
|
|
16
9
|
export interface DescribeRuntimeVersionsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DescribeRuntimeVersionsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DescribeRuntimeVersionsCommandInput,
|
|
24
17
|
DescribeRuntimeVersionsCommandOutput,
|
|
25
|
-
SyntheticsClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
...[input]: [] | [DescribeRuntimeVersionsCommandInput]
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DescribeRuntimeVersionsCommandInput,
|
|
33
26
|
DescribeRuntimeVersionsCommandOutput,
|
|
34
|
-
SyntheticsClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DescribeRuntimeVersionsCommand extends DescribeRuntimeVersionsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
DisassociateResourceRequest,
|
|
5
4
|
DisassociateResourceResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SyntheticsClientResolvedConfig,
|
|
11
|
-
} from "../SyntheticsClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DisassociateResourceCommandInput
|
|
15
8
|
extends DisassociateResourceRequest {}
|
|
16
9
|
export interface DisassociateResourceCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const DisassociateResourceCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
DisassociateResourceCommandInput,
|
|
24
17
|
DisassociateResourceCommandOutput,
|
|
25
|
-
SyntheticsClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: DisassociateResourceCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
DisassociateResourceCommandInput,
|
|
33
26
|
DisassociateResourceCommandOutput,
|
|
34
|
-
SyntheticsClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SyntheticsClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class DisassociateResourceCommand extends DisassociateResourceCommand_base {
|
|
43
34
|
protected static __types: {
|