@aws-sdk/client-chatbot 3.1086.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/Chatbot.d.ts +112 -175
- package/dist-types/ts3.4/ChatbotClient.d.ts +16 -29
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateToConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateChimeWebhookConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateCustomActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateMicrosoftTeamsChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateSlackChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteChimeWebhookConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteCustomActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteMicrosoftTeamsUserIdentityCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteSlackChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteSlackUserIdentityCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSlackWorkspaceAuthorizationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeChimeWebhookConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeSlackChannelConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeSlackUserIdentitiesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeSlackWorkspacesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DisassociateFromConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAccountPreferencesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetCustomActionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetMicrosoftTeamsChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListCustomActionsCommand.d.ts +4 -10
- package/dist-types/ts3.4/commands/ListMicrosoftTeamsChannelConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListMicrosoftTeamsConfiguredTeamsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListMicrosoftTeamsUserIdentitiesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAccountPreferencesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateChimeWebhookConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateCustomActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateSlackChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +31 -129
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -144,10 +141,7 @@ import {
|
|
|
144
141
|
ListTagsForResourceCommandInput,
|
|
145
142
|
ListTagsForResourceCommandOutput,
|
|
146
143
|
} from "./commands/ListTagsForResourceCommand";
|
|
147
|
-
import {
|
|
148
|
-
TagResourceCommandInput,
|
|
149
|
-
TagResourceCommandOutput,
|
|
150
|
-
} from "./commands/TagResourceCommand";
|
|
144
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
151
145
|
import {
|
|
152
146
|
UntagResourceCommandInput,
|
|
153
147
|
UntagResourceCommandOutput,
|
|
@@ -249,8 +243,7 @@ export type ServiceOutputTypes =
|
|
|
249
243
|
| UpdateCustomActionCommandOutput
|
|
250
244
|
| UpdateMicrosoftTeamsChannelConfigurationCommandOutput
|
|
251
245
|
| UpdateSlackChannelConfigurationCommandOutput;
|
|
252
|
-
export interface ClientDefaults
|
|
253
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
246
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
254
247
|
requestHandler?: __HttpHandlerUserInput;
|
|
255
248
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
256
249
|
urlParser?: __UrlParser;
|
|
@@ -275,9 +268,7 @@ export interface ClientDefaults
|
|
|
275
268
|
extensions?: RuntimeExtension[];
|
|
276
269
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
277
270
|
}
|
|
278
|
-
export type ChatbotClientConfigType = Partial<
|
|
279
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
280
|
-
> &
|
|
271
|
+
export type ChatbotClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
281
272
|
ClientDefaults &
|
|
282
273
|
UserAgentInputConfig &
|
|
283
274
|
RetryInputConfig &
|
|
@@ -287,19 +278,17 @@ export type ChatbotClientConfigType = Partial<
|
|
|
287
278
|
HttpAuthSchemeInputConfig &
|
|
288
279
|
ClientInputEndpointParameters;
|
|
289
280
|
export interface ChatbotClientConfig extends ChatbotClientConfigType {}
|
|
290
|
-
export type ChatbotClientResolvedConfigType =
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
export interface ChatbotClientResolvedConfig
|
|
302
|
-
extends ChatbotClientResolvedConfigType {}
|
|
281
|
+
export type ChatbotClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
282
|
+
Required<ClientDefaults> &
|
|
283
|
+
RuntimeExtensionsConfig &
|
|
284
|
+
UserAgentResolvedConfig &
|
|
285
|
+
RetryResolvedConfig &
|
|
286
|
+
RegionResolvedConfig &
|
|
287
|
+
HostHeaderResolvedConfig &
|
|
288
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
289
|
+
HttpAuthSchemeResolvedConfig &
|
|
290
|
+
ClientResolvedEndpointParameters;
|
|
291
|
+
export interface ChatbotClientResolvedConfig extends ChatbotClientResolvedConfigType {}
|
|
303
292
|
export declare class ChatbotClient extends __Client<
|
|
304
293
|
__HttpHandlerOptions,
|
|
305
294
|
ServiceInputTypes,
|
|
@@ -307,8 +296,6 @@ export declare class ChatbotClient extends __Client<
|
|
|
307
296
|
ChatbotClientResolvedConfig
|
|
308
297
|
> {
|
|
309
298
|
readonly config: ChatbotClientResolvedConfig;
|
|
310
|
-
constructor(
|
|
311
|
-
...[configuration]: __CheckOptionalClientConfig<ChatbotClientConfig>
|
|
312
|
-
);
|
|
299
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<ChatbotClientConfig>);
|
|
313
300
|
destroy(): void;
|
|
314
301
|
}
|
|
@@ -7,17 +7,10 @@ import { ChatbotHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: ChatbotHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: ChatbotHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): ChatbotHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ChatbotClientResolvedConfig } from "../ChatbotClient";
|
|
15
|
-
export interface ChatbotHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ChatbotHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ChatbotHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ChatbotHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ChatbotClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ChatbotHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultChatbotHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ChatbotClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ChatbotHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ChatbotHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ChatbotHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ChatbotHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ChatbotHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultChatbotHttpAuthSchemeProvider: ChatbotHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ChatbotHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ChatbotHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ChatbotClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ChatbotClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
AssociateToConfigurationResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface AssociateToConfigurationCommandInput
|
|
8
|
-
extends AssociateToConfigurationRequest {}
|
|
7
|
+
export interface AssociateToConfigurationCommandInput extends AssociateToConfigurationRequest {}
|
|
9
8
|
export interface AssociateToConfigurationCommandOutput
|
|
10
|
-
extends AssociateToConfigurationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends AssociateToConfigurationResult, __MetadataBearer {}
|
|
12
10
|
declare const AssociateToConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: AssociateToConfigurationCommandInput
|
|
12
|
+
input: AssociateToConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
AssociateToConfigurationCommandInput,
|
|
17
15
|
AssociateToConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const AssociateToConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: AssociateToConfigurationCommandInput
|
|
21
|
+
input: AssociateToConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
AssociateToConfigurationCommandInput,
|
|
26
24
|
AssociateToConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateChimeWebhookConfigurationResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateChimeWebhookConfigurationCommandInput
|
|
8
|
-
extends CreateChimeWebhookConfigurationRequest {}
|
|
7
|
+
export interface CreateChimeWebhookConfigurationCommandInput extends CreateChimeWebhookConfigurationRequest {}
|
|
9
8
|
export interface CreateChimeWebhookConfigurationCommandOutput
|
|
10
|
-
extends CreateChimeWebhookConfigurationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateChimeWebhookConfigurationResult, __MetadataBearer {}
|
|
12
10
|
declare const CreateChimeWebhookConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateChimeWebhookConfigurationCommandInput
|
|
12
|
+
input: CreateChimeWebhookConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateChimeWebhookConfigurationCommandInput,
|
|
17
15
|
CreateChimeWebhookConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateChimeWebhookConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateChimeWebhookConfigurationCommandInput
|
|
21
|
+
input: CreateChimeWebhookConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateChimeWebhookConfigurationCommandInput,
|
|
26
24
|
CreateChimeWebhookConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateCustomActionRequest,
|
|
4
|
-
CreateCustomActionResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateCustomActionRequest, CreateCustomActionResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateCustomActionCommandInput
|
|
8
|
-
extends CreateCustomActionRequest {}
|
|
4
|
+
export interface CreateCustomActionCommandInput extends CreateCustomActionRequest {}
|
|
9
5
|
export interface CreateCustomActionCommandOutput
|
|
10
|
-
extends CreateCustomActionResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateCustomActionResult, __MetadataBearer {}
|
|
12
7
|
declare const CreateCustomActionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateCustomActionCommandInput
|
|
9
|
+
input: CreateCustomActionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateCustomActionCommandInput,
|
|
17
12
|
CreateCustomActionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateCustomActionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateCustomActionCommandInput
|
|
18
|
+
input: CreateCustomActionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateCustomActionCommandInput,
|
|
26
21
|
CreateCustomActionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateTeamsChannelConfigurationResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateMicrosoftTeamsChannelConfigurationCommandInput
|
|
8
|
-
extends CreateTeamsChannelConfigurationRequest {}
|
|
7
|
+
export interface CreateMicrosoftTeamsChannelConfigurationCommandInput extends CreateTeamsChannelConfigurationRequest {}
|
|
9
8
|
export interface CreateMicrosoftTeamsChannelConfigurationCommandOutput
|
|
10
|
-
extends CreateTeamsChannelConfigurationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateTeamsChannelConfigurationResult, __MetadataBearer {}
|
|
12
10
|
declare const CreateMicrosoftTeamsChannelConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateMicrosoftTeamsChannelConfigurationCommandInput
|
|
12
|
+
input: CreateMicrosoftTeamsChannelConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateMicrosoftTeamsChannelConfigurationCommandInput,
|
|
17
15
|
CreateMicrosoftTeamsChannelConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateMicrosoftTeamsChannelConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateMicrosoftTeamsChannelConfigurationCommandInput
|
|
21
|
+
input: CreateMicrosoftTeamsChannelConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateMicrosoftTeamsChannelConfigurationCommandInput,
|
|
26
24
|
CreateMicrosoftTeamsChannelConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateSlackChannelConfigurationResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateSlackChannelConfigurationCommandInput
|
|
8
|
-
extends CreateSlackChannelConfigurationRequest {}
|
|
7
|
+
export interface CreateSlackChannelConfigurationCommandInput extends CreateSlackChannelConfigurationRequest {}
|
|
9
8
|
export interface CreateSlackChannelConfigurationCommandOutput
|
|
10
|
-
extends CreateSlackChannelConfigurationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateSlackChannelConfigurationResult, __MetadataBearer {}
|
|
12
10
|
declare const CreateSlackChannelConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateSlackChannelConfigurationCommandInput
|
|
12
|
+
input: CreateSlackChannelConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateSlackChannelConfigurationCommandInput,
|
|
17
15
|
CreateSlackChannelConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateSlackChannelConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateSlackChannelConfigurationCommandInput
|
|
21
|
+
input: CreateSlackChannelConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateSlackChannelConfigurationCommandInput,
|
|
26
24
|
CreateSlackChannelConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteChimeWebhookConfigurationResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteChimeWebhookConfigurationCommandInput
|
|
8
|
-
extends DeleteChimeWebhookConfigurationRequest {}
|
|
7
|
+
export interface DeleteChimeWebhookConfigurationCommandInput extends DeleteChimeWebhookConfigurationRequest {}
|
|
9
8
|
export interface DeleteChimeWebhookConfigurationCommandOutput
|
|
10
|
-
extends DeleteChimeWebhookConfigurationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteChimeWebhookConfigurationResult, __MetadataBearer {}
|
|
12
10
|
declare const DeleteChimeWebhookConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteChimeWebhookConfigurationCommandInput
|
|
12
|
+
input: DeleteChimeWebhookConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteChimeWebhookConfigurationCommandInput,
|
|
17
15
|
DeleteChimeWebhookConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteChimeWebhookConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteChimeWebhookConfigurationCommandInput
|
|
21
|
+
input: DeleteChimeWebhookConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteChimeWebhookConfigurationCommandInput,
|
|
26
24
|
DeleteChimeWebhookConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteCustomActionRequest,
|
|
4
|
-
DeleteCustomActionResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteCustomActionRequest, DeleteCustomActionResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteCustomActionCommandInput
|
|
8
|
-
extends DeleteCustomActionRequest {}
|
|
4
|
+
export interface DeleteCustomActionCommandInput extends DeleteCustomActionRequest {}
|
|
9
5
|
export interface DeleteCustomActionCommandOutput
|
|
10
|
-
extends DeleteCustomActionResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteCustomActionResult, __MetadataBearer {}
|
|
12
7
|
declare const DeleteCustomActionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteCustomActionCommandInput
|
|
9
|
+
input: DeleteCustomActionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteCustomActionCommandInput,
|
|
17
12
|
DeleteCustomActionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteCustomActionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteCustomActionCommandInput
|
|
18
|
+
input: DeleteCustomActionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteCustomActionCommandInput,
|
|
26
21
|
DeleteCustomActionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteTeamsChannelConfigurationResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteMicrosoftTeamsChannelConfigurationCommandInput
|
|
8
|
-
extends DeleteTeamsChannelConfigurationRequest {}
|
|
7
|
+
export interface DeleteMicrosoftTeamsChannelConfigurationCommandInput extends DeleteTeamsChannelConfigurationRequest {}
|
|
9
8
|
export interface DeleteMicrosoftTeamsChannelConfigurationCommandOutput
|
|
10
|
-
extends DeleteTeamsChannelConfigurationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteTeamsChannelConfigurationResult, __MetadataBearer {}
|
|
12
10
|
declare const DeleteMicrosoftTeamsChannelConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteMicrosoftTeamsChannelConfigurationCommandInput
|
|
12
|
+
input: DeleteMicrosoftTeamsChannelConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteMicrosoftTeamsChannelConfigurationCommandInput,
|
|
17
15
|
DeleteMicrosoftTeamsChannelConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteMicrosoftTeamsChannelConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteMicrosoftTeamsChannelConfigurationCommandInput
|
|
21
|
+
input: DeleteMicrosoftTeamsChannelConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteMicrosoftTeamsChannelConfigurationCommandInput,
|
|
26
24
|
DeleteMicrosoftTeamsChannelConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteTeamsConfiguredTeamResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteMicrosoftTeamsConfiguredTeamCommandInput
|
|
8
|
-
extends DeleteTeamsConfiguredTeamRequest {}
|
|
7
|
+
export interface DeleteMicrosoftTeamsConfiguredTeamCommandInput extends DeleteTeamsConfiguredTeamRequest {}
|
|
9
8
|
export interface DeleteMicrosoftTeamsConfiguredTeamCommandOutput
|
|
10
|
-
extends DeleteTeamsConfiguredTeamResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteTeamsConfiguredTeamResult, __MetadataBearer {}
|
|
12
10
|
declare const DeleteMicrosoftTeamsConfiguredTeamCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteMicrosoftTeamsConfiguredTeamCommandInput
|
|
12
|
+
input: DeleteMicrosoftTeamsConfiguredTeamCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteMicrosoftTeamsConfiguredTeamCommandInput,
|
|
17
15
|
DeleteMicrosoftTeamsConfiguredTeamCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteMicrosoftTeamsConfiguredTeamCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteMicrosoftTeamsConfiguredTeamCommandInput
|
|
21
|
+
input: DeleteMicrosoftTeamsConfiguredTeamCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteMicrosoftTeamsConfiguredTeamCommandInput,
|
|
26
24
|
DeleteMicrosoftTeamsConfiguredTeamCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteMicrosoftTeamsUserIdentityResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteMicrosoftTeamsUserIdentityCommandInput
|
|
8
|
-
extends DeleteMicrosoftTeamsUserIdentityRequest {}
|
|
7
|
+
export interface DeleteMicrosoftTeamsUserIdentityCommandInput extends DeleteMicrosoftTeamsUserIdentityRequest {}
|
|
9
8
|
export interface DeleteMicrosoftTeamsUserIdentityCommandOutput
|
|
10
|
-
extends DeleteMicrosoftTeamsUserIdentityResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteMicrosoftTeamsUserIdentityResult, __MetadataBearer {}
|
|
12
10
|
declare const DeleteMicrosoftTeamsUserIdentityCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteMicrosoftTeamsUserIdentityCommandInput
|
|
12
|
+
input: DeleteMicrosoftTeamsUserIdentityCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteMicrosoftTeamsUserIdentityCommandInput,
|
|
17
15
|
DeleteMicrosoftTeamsUserIdentityCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteMicrosoftTeamsUserIdentityCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteMicrosoftTeamsUserIdentityCommandInput
|
|
21
|
+
input: DeleteMicrosoftTeamsUserIdentityCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteMicrosoftTeamsUserIdentityCommandInput,
|
|
26
24
|
DeleteMicrosoftTeamsUserIdentityCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteSlackChannelConfigurationResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteSlackChannelConfigurationCommandInput
|
|
8
|
-
extends DeleteSlackChannelConfigurationRequest {}
|
|
7
|
+
export interface DeleteSlackChannelConfigurationCommandInput extends DeleteSlackChannelConfigurationRequest {}
|
|
9
8
|
export interface DeleteSlackChannelConfigurationCommandOutput
|
|
10
|
-
extends DeleteSlackChannelConfigurationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteSlackChannelConfigurationResult, __MetadataBearer {}
|
|
12
10
|
declare const DeleteSlackChannelConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteSlackChannelConfigurationCommandInput
|
|
12
|
+
input: DeleteSlackChannelConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteSlackChannelConfigurationCommandInput,
|
|
17
15
|
DeleteSlackChannelConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteSlackChannelConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteSlackChannelConfigurationCommandInput
|
|
21
|
+
input: DeleteSlackChannelConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteSlackChannelConfigurationCommandInput,
|
|
26
24
|
DeleteSlackChannelConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteSlackUserIdentityRequest,
|
|
4
|
-
DeleteSlackUserIdentityResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteSlackUserIdentityRequest, DeleteSlackUserIdentityResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteSlackUserIdentityCommandInput
|
|
8
|
-
extends DeleteSlackUserIdentityRequest {}
|
|
4
|
+
export interface DeleteSlackUserIdentityCommandInput extends DeleteSlackUserIdentityRequest {}
|
|
9
5
|
export interface DeleteSlackUserIdentityCommandOutput
|
|
10
|
-
extends DeleteSlackUserIdentityResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteSlackUserIdentityResult, __MetadataBearer {}
|
|
12
7
|
declare const DeleteSlackUserIdentityCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteSlackUserIdentityCommandInput
|
|
9
|
+
input: DeleteSlackUserIdentityCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteSlackUserIdentityCommandInput,
|
|
17
12
|
DeleteSlackUserIdentityCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteSlackUserIdentityCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteSlackUserIdentityCommandInput
|
|
18
|
+
input: DeleteSlackUserIdentityCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteSlackUserIdentityCommandInput,
|
|
26
21
|
DeleteSlackUserIdentityCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteSlackWorkspaceAuthorizationResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteSlackWorkspaceAuthorizationCommandInput
|
|
8
|
-
extends DeleteSlackWorkspaceAuthorizationRequest {}
|
|
7
|
+
export interface DeleteSlackWorkspaceAuthorizationCommandInput extends DeleteSlackWorkspaceAuthorizationRequest {}
|
|
9
8
|
export interface DeleteSlackWorkspaceAuthorizationCommandOutput
|
|
10
|
-
extends DeleteSlackWorkspaceAuthorizationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteSlackWorkspaceAuthorizationResult, __MetadataBearer {}
|
|
12
10
|
declare const DeleteSlackWorkspaceAuthorizationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteSlackWorkspaceAuthorizationCommandInput
|
|
12
|
+
input: DeleteSlackWorkspaceAuthorizationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteSlackWorkspaceAuthorizationCommandInput,
|
|
17
15
|
DeleteSlackWorkspaceAuthorizationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteSlackWorkspaceAuthorizationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteSlackWorkspaceAuthorizationCommandInput
|
|
21
|
+
input: DeleteSlackWorkspaceAuthorizationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteSlackWorkspaceAuthorizationCommandInput,
|
|
26
24
|
DeleteSlackWorkspaceAuthorizationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeChimeWebhookConfigurationsResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeChimeWebhookConfigurationsCommandInput
|
|
8
|
-
extends DescribeChimeWebhookConfigurationsRequest {}
|
|
7
|
+
export interface DescribeChimeWebhookConfigurationsCommandInput extends DescribeChimeWebhookConfigurationsRequest {}
|
|
9
8
|
export interface DescribeChimeWebhookConfigurationsCommandOutput
|
|
10
|
-
extends DescribeChimeWebhookConfigurationsResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeChimeWebhookConfigurationsResult, __MetadataBearer {}
|
|
12
10
|
declare const DescribeChimeWebhookConfigurationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeChimeWebhookConfigurationsCommandInput
|
|
12
|
+
input: DescribeChimeWebhookConfigurationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeChimeWebhookConfigurationsCommandInput,
|
|
17
15
|
DescribeChimeWebhookConfigurationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeSlackChannelConfigurationsResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeSlackChannelConfigurationsCommandInput
|
|
8
|
-
extends DescribeSlackChannelConfigurationsRequest {}
|
|
7
|
+
export interface DescribeSlackChannelConfigurationsCommandInput extends DescribeSlackChannelConfigurationsRequest {}
|
|
9
8
|
export interface DescribeSlackChannelConfigurationsCommandOutput
|
|
10
|
-
extends DescribeSlackChannelConfigurationsResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeSlackChannelConfigurationsResult, __MetadataBearer {}
|
|
12
10
|
declare const DescribeSlackChannelConfigurationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeSlackChannelConfigurationsCommandInput
|
|
12
|
+
input: DescribeSlackChannelConfigurationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeSlackChannelConfigurationsCommandInput,
|
|
17
15
|
DescribeSlackChannelConfigurationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeSlackUserIdentitiesResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeSlackUserIdentitiesCommandInput
|
|
8
|
-
extends DescribeSlackUserIdentitiesRequest {}
|
|
7
|
+
export interface DescribeSlackUserIdentitiesCommandInput extends DescribeSlackUserIdentitiesRequest {}
|
|
9
8
|
export interface DescribeSlackUserIdentitiesCommandOutput
|
|
10
|
-
extends DescribeSlackUserIdentitiesResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeSlackUserIdentitiesResult, __MetadataBearer {}
|
|
12
10
|
declare const DescribeSlackUserIdentitiesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeSlackUserIdentitiesCommandInput
|
|
12
|
+
input: DescribeSlackUserIdentitiesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeSlackUserIdentitiesCommandInput,
|
|
17
15
|
DescribeSlackUserIdentitiesCommandOutput,
|