@aws-sdk/client-appintegrations 3.169.0 → 3.171.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.
Files changed (30) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/AppIntegrations.d.ts +259 -80
  3. package/dist-types/ts3.4/AppIntegrationsClient.d.ts +195 -88
  4. package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -15
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  21. package/dist-types/ts3.4/index.d.ts +5 -5
  22. package/dist-types/ts3.4/models/AppIntegrationsServiceException.d.ts +7 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +322 -392
  25. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
  26. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  27. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  28. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  29. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  30. package/package.json +34 -34
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
4
- import { CreateDataIntegrationRequest, CreateDataIntegrationResponse } from "../models/models_0";
5
- export interface CreateDataIntegrationCommandInput extends CreateDataIntegrationRequest {
6
- }
7
- export interface CreateDataIntegrationCommandOutput extends CreateDataIntegrationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateDataIntegrationCommand extends $Command<CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
11
- readonly input: CreateDataIntegrationCommandInput;
12
- constructor(input: CreateDataIntegrationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AppIntegrationsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AppIntegrationsClient";
13
+ import {
14
+ CreateDataIntegrationRequest,
15
+ CreateDataIntegrationResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateDataIntegrationCommandInput
18
+ extends CreateDataIntegrationRequest {}
19
+ export interface CreateDataIntegrationCommandOutput
20
+ extends CreateDataIntegrationResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateDataIntegrationCommand extends $Command<
23
+ CreateDataIntegrationCommandInput,
24
+ CreateDataIntegrationCommandOutput,
25
+ AppIntegrationsClientResolvedConfig
26
+ > {
27
+ readonly input: CreateDataIntegrationCommandInput;
28
+ constructor(input: CreateDataIntegrationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AppIntegrationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ CreateDataIntegrationCommandInput,
35
+ CreateDataIntegrationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
4
- import { CreateEventIntegrationRequest, CreateEventIntegrationResponse } from "../models/models_0";
5
- export interface CreateEventIntegrationCommandInput extends CreateEventIntegrationRequest {
6
- }
7
- export interface CreateEventIntegrationCommandOutput extends CreateEventIntegrationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateEventIntegrationCommand extends $Command<CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
11
- readonly input: CreateEventIntegrationCommandInput;
12
- constructor(input: CreateEventIntegrationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AppIntegrationsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AppIntegrationsClient";
13
+ import {
14
+ CreateEventIntegrationRequest,
15
+ CreateEventIntegrationResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateEventIntegrationCommandInput
18
+ extends CreateEventIntegrationRequest {}
19
+ export interface CreateEventIntegrationCommandOutput
20
+ extends CreateEventIntegrationResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateEventIntegrationCommand extends $Command<
23
+ CreateEventIntegrationCommandInput,
24
+ CreateEventIntegrationCommandOutput,
25
+ AppIntegrationsClientResolvedConfig
26
+ > {
27
+ readonly input: CreateEventIntegrationCommandInput;
28
+ constructor(input: CreateEventIntegrationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AppIntegrationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ CreateEventIntegrationCommandInput,
35
+ CreateEventIntegrationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
4
- import { DeleteDataIntegrationRequest, DeleteDataIntegrationResponse } from "../models/models_0";
5
- export interface DeleteDataIntegrationCommandInput extends DeleteDataIntegrationRequest {
6
- }
7
- export interface DeleteDataIntegrationCommandOutput extends DeleteDataIntegrationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteDataIntegrationCommand extends $Command<DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
11
- readonly input: DeleteDataIntegrationCommandInput;
12
- constructor(input: DeleteDataIntegrationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AppIntegrationsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AppIntegrationsClient";
13
+ import {
14
+ DeleteDataIntegrationRequest,
15
+ DeleteDataIntegrationResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteDataIntegrationCommandInput
18
+ extends DeleteDataIntegrationRequest {}
19
+ export interface DeleteDataIntegrationCommandOutput
20
+ extends DeleteDataIntegrationResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteDataIntegrationCommand extends $Command<
23
+ DeleteDataIntegrationCommandInput,
24
+ DeleteDataIntegrationCommandOutput,
25
+ AppIntegrationsClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteDataIntegrationCommandInput;
28
+ constructor(input: DeleteDataIntegrationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AppIntegrationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DeleteDataIntegrationCommandInput,
35
+ DeleteDataIntegrationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
4
- import { DeleteEventIntegrationRequest, DeleteEventIntegrationResponse } from "../models/models_0";
5
- export interface DeleteEventIntegrationCommandInput extends DeleteEventIntegrationRequest {
6
- }
7
- export interface DeleteEventIntegrationCommandOutput extends DeleteEventIntegrationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteEventIntegrationCommand extends $Command<DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
11
- readonly input: DeleteEventIntegrationCommandInput;
12
- constructor(input: DeleteEventIntegrationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AppIntegrationsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AppIntegrationsClient";
13
+ import {
14
+ DeleteEventIntegrationRequest,
15
+ DeleteEventIntegrationResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteEventIntegrationCommandInput
18
+ extends DeleteEventIntegrationRequest {}
19
+ export interface DeleteEventIntegrationCommandOutput
20
+ extends DeleteEventIntegrationResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteEventIntegrationCommand extends $Command<
23
+ DeleteEventIntegrationCommandInput,
24
+ DeleteEventIntegrationCommandOutput,
25
+ AppIntegrationsClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteEventIntegrationCommandInput;
28
+ constructor(input: DeleteEventIntegrationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AppIntegrationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DeleteEventIntegrationCommandInput,
35
+ DeleteEventIntegrationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
4
- import { GetDataIntegrationRequest, GetDataIntegrationResponse } from "../models/models_0";
5
- export interface GetDataIntegrationCommandInput extends GetDataIntegrationRequest {
6
- }
7
- export interface GetDataIntegrationCommandOutput extends GetDataIntegrationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetDataIntegrationCommand extends $Command<GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
11
- readonly input: GetDataIntegrationCommandInput;
12
- constructor(input: GetDataIntegrationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AppIntegrationsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AppIntegrationsClient";
13
+ import {
14
+ GetDataIntegrationRequest,
15
+ GetDataIntegrationResponse,
16
+ } from "../models/models_0";
17
+ export interface GetDataIntegrationCommandInput
18
+ extends GetDataIntegrationRequest {}
19
+ export interface GetDataIntegrationCommandOutput
20
+ extends GetDataIntegrationResponse,
21
+ __MetadataBearer {}
22
+ export declare class GetDataIntegrationCommand extends $Command<
23
+ GetDataIntegrationCommandInput,
24
+ GetDataIntegrationCommandOutput,
25
+ AppIntegrationsClientResolvedConfig
26
+ > {
27
+ readonly input: GetDataIntegrationCommandInput;
28
+ constructor(input: GetDataIntegrationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AppIntegrationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
4
- import { GetEventIntegrationRequest, GetEventIntegrationResponse } from "../models/models_0";
5
- export interface GetEventIntegrationCommandInput extends GetEventIntegrationRequest {
6
- }
7
- export interface GetEventIntegrationCommandOutput extends GetEventIntegrationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetEventIntegrationCommand extends $Command<GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
11
- readonly input: GetEventIntegrationCommandInput;
12
- constructor(input: GetEventIntegrationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AppIntegrationsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AppIntegrationsClient";
13
+ import {
14
+ GetEventIntegrationRequest,
15
+ GetEventIntegrationResponse,
16
+ } from "../models/models_0";
17
+ export interface GetEventIntegrationCommandInput
18
+ extends GetEventIntegrationRequest {}
19
+ export interface GetEventIntegrationCommandOutput
20
+ extends GetEventIntegrationResponse,
21
+ __MetadataBearer {}
22
+ export declare class GetEventIntegrationCommand extends $Command<
23
+ GetEventIntegrationCommandInput,
24
+ GetEventIntegrationCommandOutput,
25
+ AppIntegrationsClientResolvedConfig
26
+ > {
27
+ readonly input: GetEventIntegrationCommandInput;
28
+ constructor(input: GetEventIntegrationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AppIntegrationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
4
- import { ListDataIntegrationAssociationsRequest, ListDataIntegrationAssociationsResponse } from "../models/models_0";
5
- export interface ListDataIntegrationAssociationsCommandInput extends ListDataIntegrationAssociationsRequest {
6
- }
7
- export interface ListDataIntegrationAssociationsCommandOutput extends ListDataIntegrationAssociationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListDataIntegrationAssociationsCommand extends $Command<ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig> {
11
- readonly input: ListDataIntegrationAssociationsCommandInput;
12
- constructor(input: ListDataIntegrationAssociationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AppIntegrationsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AppIntegrationsClient";
13
+ import {
14
+ ListDataIntegrationAssociationsRequest,
15
+ ListDataIntegrationAssociationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListDataIntegrationAssociationsCommandInput
18
+ extends ListDataIntegrationAssociationsRequest {}
19
+ export interface ListDataIntegrationAssociationsCommandOutput
20
+ extends ListDataIntegrationAssociationsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListDataIntegrationAssociationsCommand extends $Command<
23
+ ListDataIntegrationAssociationsCommandInput,
24
+ ListDataIntegrationAssociationsCommandOutput,
25
+ AppIntegrationsClientResolvedConfig
26
+ > {
27
+ readonly input: ListDataIntegrationAssociationsCommandInput;
28
+ constructor(input: ListDataIntegrationAssociationsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AppIntegrationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListDataIntegrationAssociationsCommandInput,
35
+ ListDataIntegrationAssociationsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
4
- import { ListDataIntegrationsRequest, ListDataIntegrationsResponse } from "../models/models_0";
5
- export interface ListDataIntegrationsCommandInput extends ListDataIntegrationsRequest {
6
- }
7
- export interface ListDataIntegrationsCommandOutput extends ListDataIntegrationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListDataIntegrationsCommand extends $Command<ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput, AppIntegrationsClientResolvedConfig> {
11
- readonly input: ListDataIntegrationsCommandInput;
12
- constructor(input: ListDataIntegrationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AppIntegrationsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AppIntegrationsClient";
13
+ import {
14
+ ListDataIntegrationsRequest,
15
+ ListDataIntegrationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListDataIntegrationsCommandInput
18
+ extends ListDataIntegrationsRequest {}
19
+ export interface ListDataIntegrationsCommandOutput
20
+ extends ListDataIntegrationsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListDataIntegrationsCommand extends $Command<
23
+ ListDataIntegrationsCommandInput,
24
+ ListDataIntegrationsCommandOutput,
25
+ AppIntegrationsClientResolvedConfig
26
+ > {
27
+ readonly input: ListDataIntegrationsCommandInput;
28
+ constructor(input: ListDataIntegrationsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AppIntegrationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListDataIntegrationsCommandInput,
35
+ ListDataIntegrationsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
4
- import { ListEventIntegrationAssociationsRequest, ListEventIntegrationAssociationsResponse } from "../models/models_0";
5
- export interface ListEventIntegrationAssociationsCommandInput extends ListEventIntegrationAssociationsRequest {
6
- }
7
- export interface ListEventIntegrationAssociationsCommandOutput extends ListEventIntegrationAssociationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListEventIntegrationAssociationsCommand extends $Command<ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig> {
11
- readonly input: ListEventIntegrationAssociationsCommandInput;
12
- constructor(input: ListEventIntegrationAssociationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AppIntegrationsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AppIntegrationsClient";
13
+ import {
14
+ ListEventIntegrationAssociationsRequest,
15
+ ListEventIntegrationAssociationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListEventIntegrationAssociationsCommandInput
18
+ extends ListEventIntegrationAssociationsRequest {}
19
+ export interface ListEventIntegrationAssociationsCommandOutput
20
+ extends ListEventIntegrationAssociationsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListEventIntegrationAssociationsCommand extends $Command<
23
+ ListEventIntegrationAssociationsCommandInput,
24
+ ListEventIntegrationAssociationsCommandOutput,
25
+ AppIntegrationsClientResolvedConfig
26
+ > {
27
+ readonly input: ListEventIntegrationAssociationsCommandInput;
28
+ constructor(input: ListEventIntegrationAssociationsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AppIntegrationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListEventIntegrationAssociationsCommandInput,
35
+ ListEventIntegrationAssociationsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
4
- import { ListEventIntegrationsRequest, ListEventIntegrationsResponse } from "../models/models_0";
5
- export interface ListEventIntegrationsCommandInput extends ListEventIntegrationsRequest {
6
- }
7
- export interface ListEventIntegrationsCommandOutput extends ListEventIntegrationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListEventIntegrationsCommand extends $Command<ListEventIntegrationsCommandInput, ListEventIntegrationsCommandOutput, AppIntegrationsClientResolvedConfig> {
11
- readonly input: ListEventIntegrationsCommandInput;
12
- constructor(input: ListEventIntegrationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEventIntegrationsCommandInput, ListEventIntegrationsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AppIntegrationsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AppIntegrationsClient";
13
+ import {
14
+ ListEventIntegrationsRequest,
15
+ ListEventIntegrationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListEventIntegrationsCommandInput
18
+ extends ListEventIntegrationsRequest {}
19
+ export interface ListEventIntegrationsCommandOutput
20
+ extends ListEventIntegrationsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListEventIntegrationsCommand extends $Command<
23
+ ListEventIntegrationsCommandInput,
24
+ ListEventIntegrationsCommandOutput,
25
+ AppIntegrationsClientResolvedConfig
26
+ > {
27
+ readonly input: ListEventIntegrationsCommandInput;
28
+ constructor(input: ListEventIntegrationsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AppIntegrationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListEventIntegrationsCommandInput,
35
+ ListEventIntegrationsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppIntegrationsClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AppIntegrationsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AppIntegrationsClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ AppIntegrationsClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AppIntegrationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }