@aws-sdk/client-socialmessaging 3.1087.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/SocialMessaging.d.ts +100 -141
- package/dist-types/ts3.4/SocialMessagingClient.d.ts +7 -20
- 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/AssociateWhatsAppBusinessAccountCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateWhatsAppFlowCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateWhatsAppMessageTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateWhatsAppMessageTemplateFromLibraryCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateWhatsAppMessageTemplateMediaCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteWhatsAppFlowCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteWhatsAppMessageMediaCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteWhatsAppMessageTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeprecateWhatsAppFlowCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DisassociateWhatsAppBusinessAccountCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetLinkedWhatsAppBusinessAccountCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetLinkedWhatsAppBusinessAccountPhoneNumberCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetWhatsAppFlowCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetWhatsAppFlowPreviewCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetWhatsAppMessageMediaCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetWhatsAppMessageTemplateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListLinkedWhatsAppBusinessAccountsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListWhatsAppFlowAssetsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListWhatsAppFlowsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListWhatsAppMessageTemplatesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListWhatsAppTemplateLibraryCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/PostWhatsAppMessageMediaCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PublishWhatsAppFlowCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutWhatsAppBusinessAccountEventDestinationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/SendWhatsAppMessageCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateWhatsAppFlowAssetsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateWhatsAppFlowCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateWhatsAppMessageTemplateCommand.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/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +9 -27
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -7,17 +7,10 @@ import { SocialMessagingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: SocialMessagingHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: SocialMessagingHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): SocialMessagingHttpAuthSchemeProvider;
|
|
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 { SocialMessagingClientResolvedConfig } from "../SocialMessagingClient";
|
|
15
|
-
export interface SocialMessagingHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface SocialMessagingHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface SocialMessagingHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface SocialMessagingHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
SocialMessagingClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
SocialMessagingHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultSocialMessagingHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: SocialMessagingClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<SocialMessagingHttpAuthSchemeParameters>;
|
|
31
|
-
export interface SocialMessagingHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<SocialMessagingHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface SocialMessagingHttpAuthSchemeProvider extends HttpAuthSchemeProvider<SocialMessagingHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultSocialMessagingHttpAuthSchemeProvider: SocialMessagingHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: SocialMessagingHttpAuthSchemeProvider;
|
|
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: SocialMessagingHttpAuthSchemeProvider;
|
|
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
|
ServiceOutputTypes,
|
|
5
5
|
SocialMessagingClientResolvedConfig,
|
|
6
6
|
} from "./SocialMessagingClient";
|
|
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
|
SocialMessagingClientResolvedConfig,
|
|
@@ -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
|
AssociateWhatsAppBusinessAccountOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface AssociateWhatsAppBusinessAccountCommandInput
|
|
8
|
-
extends AssociateWhatsAppBusinessAccountInput {}
|
|
7
|
+
export interface AssociateWhatsAppBusinessAccountCommandInput extends AssociateWhatsAppBusinessAccountInput {}
|
|
9
8
|
export interface AssociateWhatsAppBusinessAccountCommandOutput
|
|
10
|
-
extends AssociateWhatsAppBusinessAccountOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends AssociateWhatsAppBusinessAccountOutput, __MetadataBearer {}
|
|
12
10
|
declare const AssociateWhatsAppBusinessAccountCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: AssociateWhatsAppBusinessAccountCommandInput
|
|
12
|
+
input: AssociateWhatsAppBusinessAccountCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
AssociateWhatsAppBusinessAccountCommandInput,
|
|
17
15
|
AssociateWhatsAppBusinessAccountCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateWhatsAppFlowInput,
|
|
4
|
-
CreateWhatsAppFlowOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateWhatsAppFlowInput, CreateWhatsAppFlowOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateWhatsAppFlowCommandInput
|
|
8
|
-
extends CreateWhatsAppFlowInput {}
|
|
4
|
+
export interface CreateWhatsAppFlowCommandInput extends CreateWhatsAppFlowInput {}
|
|
9
5
|
export interface CreateWhatsAppFlowCommandOutput
|
|
10
|
-
extends CreateWhatsAppFlowOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateWhatsAppFlowOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateWhatsAppFlowCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateWhatsAppFlowCommandInput
|
|
9
|
+
input: CreateWhatsAppFlowCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateWhatsAppFlowCommandInput,
|
|
17
12
|
CreateWhatsAppFlowCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateWhatsAppFlowCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateWhatsAppFlowCommandInput
|
|
18
|
+
input: CreateWhatsAppFlowCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateWhatsAppFlowCommandInput,
|
|
26
21
|
CreateWhatsAppFlowCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateWhatsAppMessageTemplateOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateWhatsAppMessageTemplateCommandInput
|
|
8
|
-
extends CreateWhatsAppMessageTemplateInput {}
|
|
7
|
+
export interface CreateWhatsAppMessageTemplateCommandInput extends CreateWhatsAppMessageTemplateInput {}
|
|
9
8
|
export interface CreateWhatsAppMessageTemplateCommandOutput
|
|
10
|
-
extends CreateWhatsAppMessageTemplateOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateWhatsAppMessageTemplateOutput, __MetadataBearer {}
|
|
12
10
|
declare const CreateWhatsAppMessageTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateWhatsAppMessageTemplateCommandInput
|
|
12
|
+
input: CreateWhatsAppMessageTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateWhatsAppMessageTemplateCommandInput,
|
|
17
15
|
CreateWhatsAppMessageTemplateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateWhatsAppMessageTemplateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateWhatsAppMessageTemplateCommandInput
|
|
21
|
+
input: CreateWhatsAppMessageTemplateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateWhatsAppMessageTemplateCommandInput,
|
|
26
24
|
CreateWhatsAppMessageTemplateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateWhatsAppMessageTemplateFromLibraryOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateWhatsAppMessageTemplateFromLibraryCommandInput
|
|
8
|
-
extends CreateWhatsAppMessageTemplateFromLibraryInput {}
|
|
7
|
+
export interface CreateWhatsAppMessageTemplateFromLibraryCommandInput extends CreateWhatsAppMessageTemplateFromLibraryInput {}
|
|
9
8
|
export interface CreateWhatsAppMessageTemplateFromLibraryCommandOutput
|
|
10
|
-
extends CreateWhatsAppMessageTemplateFromLibraryOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateWhatsAppMessageTemplateFromLibraryOutput, __MetadataBearer {}
|
|
12
10
|
declare const CreateWhatsAppMessageTemplateFromLibraryCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateWhatsAppMessageTemplateFromLibraryCommandInput
|
|
12
|
+
input: CreateWhatsAppMessageTemplateFromLibraryCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateWhatsAppMessageTemplateFromLibraryCommandInput,
|
|
17
15
|
CreateWhatsAppMessageTemplateFromLibraryCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateWhatsAppMessageTemplateFromLibraryCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateWhatsAppMessageTemplateFromLibraryCommandInput
|
|
21
|
+
input: CreateWhatsAppMessageTemplateFromLibraryCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateWhatsAppMessageTemplateFromLibraryCommandInput,
|
|
26
24
|
CreateWhatsAppMessageTemplateFromLibraryCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateWhatsAppMessageTemplateMediaOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateWhatsAppMessageTemplateMediaCommandInput
|
|
8
|
-
extends CreateWhatsAppMessageTemplateMediaInput {}
|
|
7
|
+
export interface CreateWhatsAppMessageTemplateMediaCommandInput extends CreateWhatsAppMessageTemplateMediaInput {}
|
|
9
8
|
export interface CreateWhatsAppMessageTemplateMediaCommandOutput
|
|
10
|
-
extends CreateWhatsAppMessageTemplateMediaOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateWhatsAppMessageTemplateMediaOutput, __MetadataBearer {}
|
|
12
10
|
declare const CreateWhatsAppMessageTemplateMediaCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateWhatsAppMessageTemplateMediaCommandInput
|
|
12
|
+
input: CreateWhatsAppMessageTemplateMediaCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateWhatsAppMessageTemplateMediaCommandInput,
|
|
17
15
|
CreateWhatsAppMessageTemplateMediaCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateWhatsAppMessageTemplateMediaCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateWhatsAppMessageTemplateMediaCommandInput
|
|
21
|
+
input: CreateWhatsAppMessageTemplateMediaCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateWhatsAppMessageTemplateMediaCommandInput,
|
|
26
24
|
CreateWhatsAppMessageTemplateMediaCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteWhatsAppFlowInput,
|
|
4
|
-
DeleteWhatsAppFlowOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteWhatsAppFlowInput, DeleteWhatsAppFlowOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteWhatsAppFlowCommandInput
|
|
8
|
-
extends DeleteWhatsAppFlowInput {}
|
|
4
|
+
export interface DeleteWhatsAppFlowCommandInput extends DeleteWhatsAppFlowInput {}
|
|
9
5
|
export interface DeleteWhatsAppFlowCommandOutput
|
|
10
|
-
extends DeleteWhatsAppFlowOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteWhatsAppFlowOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeleteWhatsAppFlowCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteWhatsAppFlowCommandInput
|
|
9
|
+
input: DeleteWhatsAppFlowCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteWhatsAppFlowCommandInput,
|
|
17
12
|
DeleteWhatsAppFlowCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteWhatsAppFlowCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteWhatsAppFlowCommandInput
|
|
18
|
+
input: DeleteWhatsAppFlowCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteWhatsAppFlowCommandInput,
|
|
26
21
|
DeleteWhatsAppFlowCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteWhatsAppMessageMediaOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteWhatsAppMessageMediaCommandInput
|
|
8
|
-
extends DeleteWhatsAppMessageMediaInput {}
|
|
7
|
+
export interface DeleteWhatsAppMessageMediaCommandInput extends DeleteWhatsAppMessageMediaInput {}
|
|
9
8
|
export interface DeleteWhatsAppMessageMediaCommandOutput
|
|
10
|
-
extends DeleteWhatsAppMessageMediaOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteWhatsAppMessageMediaOutput, __MetadataBearer {}
|
|
12
10
|
declare const DeleteWhatsAppMessageMediaCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteWhatsAppMessageMediaCommandInput
|
|
12
|
+
input: DeleteWhatsAppMessageMediaCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteWhatsAppMessageMediaCommandInput,
|
|
17
15
|
DeleteWhatsAppMessageMediaCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteWhatsAppMessageMediaCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteWhatsAppMessageMediaCommandInput
|
|
21
|
+
input: DeleteWhatsAppMessageMediaCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteWhatsAppMessageMediaCommandInput,
|
|
26
24
|
DeleteWhatsAppMessageMediaCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeleteWhatsAppMessageTemplateOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteWhatsAppMessageTemplateCommandInput
|
|
8
|
-
extends DeleteWhatsAppMessageTemplateInput {}
|
|
7
|
+
export interface DeleteWhatsAppMessageTemplateCommandInput extends DeleteWhatsAppMessageTemplateInput {}
|
|
9
8
|
export interface DeleteWhatsAppMessageTemplateCommandOutput
|
|
10
|
-
extends DeleteWhatsAppMessageTemplateOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeleteWhatsAppMessageTemplateOutput, __MetadataBearer {}
|
|
12
10
|
declare const DeleteWhatsAppMessageTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeleteWhatsAppMessageTemplateCommandInput
|
|
12
|
+
input: DeleteWhatsAppMessageTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeleteWhatsAppMessageTemplateCommandInput,
|
|
17
15
|
DeleteWhatsAppMessageTemplateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeleteWhatsAppMessageTemplateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeleteWhatsAppMessageTemplateCommandInput
|
|
21
|
+
input: DeleteWhatsAppMessageTemplateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeleteWhatsAppMessageTemplateCommandInput,
|
|
26
24
|
DeleteWhatsAppMessageTemplateCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeprecateWhatsAppFlowInput,
|
|
4
|
-
DeprecateWhatsAppFlowOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeprecateWhatsAppFlowInput, DeprecateWhatsAppFlowOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeprecateWhatsAppFlowCommandInput
|
|
8
|
-
extends DeprecateWhatsAppFlowInput {}
|
|
4
|
+
export interface DeprecateWhatsAppFlowCommandInput extends DeprecateWhatsAppFlowInput {}
|
|
9
5
|
export interface DeprecateWhatsAppFlowCommandOutput
|
|
10
|
-
extends DeprecateWhatsAppFlowOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeprecateWhatsAppFlowOutput, __MetadataBearer {}
|
|
12
7
|
declare const DeprecateWhatsAppFlowCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeprecateWhatsAppFlowCommandInput
|
|
9
|
+
input: DeprecateWhatsAppFlowCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeprecateWhatsAppFlowCommandInput,
|
|
17
12
|
DeprecateWhatsAppFlowCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeprecateWhatsAppFlowCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeprecateWhatsAppFlowCommandInput
|
|
18
|
+
input: DeprecateWhatsAppFlowCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeprecateWhatsAppFlowCommandInput,
|
|
26
21
|
DeprecateWhatsAppFlowCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DisassociateWhatsAppBusinessAccountOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DisassociateWhatsAppBusinessAccountCommandInput
|
|
8
|
-
extends DisassociateWhatsAppBusinessAccountInput {}
|
|
7
|
+
export interface DisassociateWhatsAppBusinessAccountCommandInput extends DisassociateWhatsAppBusinessAccountInput {}
|
|
9
8
|
export interface DisassociateWhatsAppBusinessAccountCommandOutput
|
|
10
|
-
extends DisassociateWhatsAppBusinessAccountOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DisassociateWhatsAppBusinessAccountOutput, __MetadataBearer {}
|
|
12
10
|
declare const DisassociateWhatsAppBusinessAccountCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DisassociateWhatsAppBusinessAccountCommandInput
|
|
12
|
+
input: DisassociateWhatsAppBusinessAccountCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DisassociateWhatsAppBusinessAccountCommandInput,
|
|
17
15
|
DisassociateWhatsAppBusinessAccountCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DisassociateWhatsAppBusinessAccountCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DisassociateWhatsAppBusinessAccountCommandInput
|
|
21
|
+
input: DisassociateWhatsAppBusinessAccountCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DisassociateWhatsAppBusinessAccountCommandInput,
|
|
26
24
|
DisassociateWhatsAppBusinessAccountCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetLinkedWhatsAppBusinessAccountOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetLinkedWhatsAppBusinessAccountCommandInput
|
|
8
|
-
extends GetLinkedWhatsAppBusinessAccountInput {}
|
|
7
|
+
export interface GetLinkedWhatsAppBusinessAccountCommandInput extends GetLinkedWhatsAppBusinessAccountInput {}
|
|
9
8
|
export interface GetLinkedWhatsAppBusinessAccountCommandOutput
|
|
10
|
-
extends GetLinkedWhatsAppBusinessAccountOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetLinkedWhatsAppBusinessAccountOutput, __MetadataBearer {}
|
|
12
10
|
declare const GetLinkedWhatsAppBusinessAccountCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetLinkedWhatsAppBusinessAccountCommandInput
|
|
12
|
+
input: GetLinkedWhatsAppBusinessAccountCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetLinkedWhatsAppBusinessAccountCommandInput,
|
|
17
15
|
GetLinkedWhatsAppBusinessAccountCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetLinkedWhatsAppBusinessAccountCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetLinkedWhatsAppBusinessAccountCommandInput
|
|
21
|
+
input: GetLinkedWhatsAppBusinessAccountCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetLinkedWhatsAppBusinessAccountCommandInput,
|
|
26
24
|
GetLinkedWhatsAppBusinessAccountCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetLinkedWhatsAppBusinessAccountPhoneNumberOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetLinkedWhatsAppBusinessAccountPhoneNumberCommandInput
|
|
8
|
-
extends GetLinkedWhatsAppBusinessAccountPhoneNumberInput {}
|
|
7
|
+
export interface GetLinkedWhatsAppBusinessAccountPhoneNumberCommandInput extends GetLinkedWhatsAppBusinessAccountPhoneNumberInput {}
|
|
9
8
|
export interface GetLinkedWhatsAppBusinessAccountPhoneNumberCommandOutput
|
|
10
|
-
extends GetLinkedWhatsAppBusinessAccountPhoneNumberOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetLinkedWhatsAppBusinessAccountPhoneNumberOutput, __MetadataBearer {}
|
|
12
10
|
declare const GetLinkedWhatsAppBusinessAccountPhoneNumberCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetLinkedWhatsAppBusinessAccountPhoneNumberCommandInput
|
|
12
|
+
input: GetLinkedWhatsAppBusinessAccountPhoneNumberCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetLinkedWhatsAppBusinessAccountPhoneNumberCommandInput,
|
|
17
15
|
GetLinkedWhatsAppBusinessAccountPhoneNumberCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetLinkedWhatsAppBusinessAccountPhoneNumberCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetLinkedWhatsAppBusinessAccountPhoneNumberCommandInput
|
|
21
|
+
input: GetLinkedWhatsAppBusinessAccountPhoneNumberCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetLinkedWhatsAppBusinessAccountPhoneNumberCommandInput,
|
|
26
24
|
GetLinkedWhatsAppBusinessAccountPhoneNumberCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetWhatsAppFlowInput,
|
|
4
|
-
GetWhatsAppFlowOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetWhatsAppFlowInput, GetWhatsAppFlowOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetWhatsAppFlowCommandInput extends GetWhatsAppFlowInput {}
|
|
8
|
-
export interface GetWhatsAppFlowCommandOutput
|
|
9
|
-
extends GetWhatsAppFlowOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetWhatsAppFlowCommandOutput extends GetWhatsAppFlowOutput, __MetadataBearer {}
|
|
11
6
|
declare const GetWhatsAppFlowCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetWhatsAppFlowCommandInput
|
|
8
|
+
input: GetWhatsAppFlowCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetWhatsAppFlowCommandInput,
|
|
16
11
|
GetWhatsAppFlowCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetWhatsAppFlowCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetWhatsAppFlowCommandInput
|
|
17
|
+
input: GetWhatsAppFlowCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetWhatsAppFlowCommandInput,
|
|
25
20
|
GetWhatsAppFlowCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetWhatsAppFlowPreviewInput,
|
|
4
|
-
GetWhatsAppFlowPreviewOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetWhatsAppFlowPreviewInput, GetWhatsAppFlowPreviewOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetWhatsAppFlowPreviewCommandInput
|
|
8
|
-
extends GetWhatsAppFlowPreviewInput {}
|
|
4
|
+
export interface GetWhatsAppFlowPreviewCommandInput extends GetWhatsAppFlowPreviewInput {}
|
|
9
5
|
export interface GetWhatsAppFlowPreviewCommandOutput
|
|
10
|
-
extends GetWhatsAppFlowPreviewOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetWhatsAppFlowPreviewOutput, __MetadataBearer {}
|
|
12
7
|
declare const GetWhatsAppFlowPreviewCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetWhatsAppFlowPreviewCommandInput
|
|
9
|
+
input: GetWhatsAppFlowPreviewCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetWhatsAppFlowPreviewCommandInput,
|
|
17
12
|
GetWhatsAppFlowPreviewCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetWhatsAppFlowPreviewCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetWhatsAppFlowPreviewCommandInput
|
|
18
|
+
input: GetWhatsAppFlowPreviewCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetWhatsAppFlowPreviewCommandInput,
|
|
26
21
|
GetWhatsAppFlowPreviewCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetWhatsAppMessageMediaInput,
|
|
4
|
-
GetWhatsAppMessageMediaOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetWhatsAppMessageMediaInput, GetWhatsAppMessageMediaOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetWhatsAppMessageMediaCommandInput
|
|
8
|
-
extends GetWhatsAppMessageMediaInput {}
|
|
4
|
+
export interface GetWhatsAppMessageMediaCommandInput extends GetWhatsAppMessageMediaInput {}
|
|
9
5
|
export interface GetWhatsAppMessageMediaCommandOutput
|
|
10
|
-
extends GetWhatsAppMessageMediaOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetWhatsAppMessageMediaOutput, __MetadataBearer {}
|
|
12
7
|
declare const GetWhatsAppMessageMediaCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetWhatsAppMessageMediaCommandInput
|
|
9
|
+
input: GetWhatsAppMessageMediaCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetWhatsAppMessageMediaCommandInput,
|
|
17
12
|
GetWhatsAppMessageMediaCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetWhatsAppMessageMediaCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetWhatsAppMessageMediaCommandInput
|
|
18
|
+
input: GetWhatsAppMessageMediaCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetWhatsAppMessageMediaCommandInput,
|
|
26
21
|
GetWhatsAppMessageMediaCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetWhatsAppMessageTemplateOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetWhatsAppMessageTemplateCommandInput
|
|
8
|
-
extends GetWhatsAppMessageTemplateInput {}
|
|
7
|
+
export interface GetWhatsAppMessageTemplateCommandInput extends GetWhatsAppMessageTemplateInput {}
|
|
9
8
|
export interface GetWhatsAppMessageTemplateCommandOutput
|
|
10
|
-
extends GetWhatsAppMessageTemplateOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetWhatsAppMessageTemplateOutput, __MetadataBearer {}
|
|
12
10
|
declare const GetWhatsAppMessageTemplateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetWhatsAppMessageTemplateCommandInput
|
|
12
|
+
input: GetWhatsAppMessageTemplateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetWhatsAppMessageTemplateCommandInput,
|
|
17
15
|
GetWhatsAppMessageTemplateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetWhatsAppMessageTemplateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetWhatsAppMessageTemplateCommandInput
|
|
21
|
+
input: GetWhatsAppMessageTemplateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetWhatsAppMessageTemplateCommandInput,
|
|
26
24
|
GetWhatsAppMessageTemplateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListLinkedWhatsAppBusinessAccountsOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListLinkedWhatsAppBusinessAccountsCommandInput
|
|
8
|
-
extends ListLinkedWhatsAppBusinessAccountsInput {}
|
|
7
|
+
export interface ListLinkedWhatsAppBusinessAccountsCommandInput extends ListLinkedWhatsAppBusinessAccountsInput {}
|
|
9
8
|
export interface ListLinkedWhatsAppBusinessAccountsCommandOutput
|
|
10
|
-
extends ListLinkedWhatsAppBusinessAccountsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListLinkedWhatsAppBusinessAccountsOutput, __MetadataBearer {}
|
|
12
10
|
declare const ListLinkedWhatsAppBusinessAccountsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListLinkedWhatsAppBusinessAccountsCommandInput
|
|
12
|
+
input: ListLinkedWhatsAppBusinessAccountsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListLinkedWhatsAppBusinessAccountsCommandInput,
|
|
17
15
|
ListLinkedWhatsAppBusinessAccountsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceInput,
|
|
4
|
-
ListTagsForResourceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceInput {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|