@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/AppIntegrations.d.ts +259 -80
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +195 -88
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AppIntegrationsServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +322 -392
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|