@aws-sdk/client-appintegrations 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/AppIntegrations.d.ts +274 -80
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +220 -88
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +41 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +440 -392
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class GetEventIntegrationCommand extends $Command<
|
|
24
|
+
GetEventIntegrationCommandInput,
|
|
25
|
+
GetEventIntegrationCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetEventIntegrationCommandInput;
|
|
29
|
+
constructor(input: GetEventIntegrationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class ListDataIntegrationAssociationsCommand extends $Command<
|
|
24
|
+
ListDataIntegrationAssociationsCommandInput,
|
|
25
|
+
ListDataIntegrationAssociationsCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListDataIntegrationAssociationsCommandInput;
|
|
29
|
+
constructor(input: ListDataIntegrationAssociationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListDataIntegrationAssociationsCommandInput,
|
|
37
|
+
ListDataIntegrationAssociationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class ListDataIntegrationsCommand extends $Command<
|
|
24
|
+
ListDataIntegrationsCommandInput,
|
|
25
|
+
ListDataIntegrationsCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListDataIntegrationsCommandInput;
|
|
29
|
+
constructor(input: ListDataIntegrationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListDataIntegrationsCommandInput,
|
|
37
|
+
ListDataIntegrationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class ListEventIntegrationAssociationsCommand extends $Command<
|
|
24
|
+
ListEventIntegrationAssociationsCommandInput,
|
|
25
|
+
ListEventIntegrationAssociationsCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListEventIntegrationAssociationsCommandInput;
|
|
29
|
+
constructor(input: ListEventIntegrationAssociationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListEventIntegrationAssociationsCommandInput,
|
|
37
|
+
ListEventIntegrationAssociationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class ListEventIntegrationsCommand extends $Command<
|
|
24
|
+
ListEventIntegrationsCommandInput,
|
|
25
|
+
ListEventIntegrationsCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListEventIntegrationsCommandInput;
|
|
29
|
+
constructor(input: ListEventIntegrationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListEventIntegrationsCommandInput,
|
|
37
|
+
ListEventIntegrationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class TagResourceCommand extends $Command<
|
|
20
|
+
TagResourceCommandInput,
|
|
21
|
+
TagResourceCommandOutput,
|
|
22
|
+
AppIntegrationsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: TagResourceCommandInput;
|
|
25
|
+
constructor(input: TagResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UntagResourceCommand extends $Command<
|
|
23
|
+
UntagResourceCommandInput,
|
|
24
|
+
UntagResourceCommandOutput,
|
|
25
|
+
AppIntegrationsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UntagResourceCommandInput;
|
|
28
|
+
constructor(input: UntagResourceCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
UpdateDataIntegrationRequest,
|
|
15
|
+
UpdateDataIntegrationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateDataIntegrationCommandInput
|
|
18
|
+
extends UpdateDataIntegrationRequest {}
|
|
19
|
+
export interface UpdateDataIntegrationCommandOutput
|
|
20
|
+
extends UpdateDataIntegrationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateDataIntegrationCommand extends $Command<
|
|
24
|
+
UpdateDataIntegrationCommandInput,
|
|
25
|
+
UpdateDataIntegrationCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateDataIntegrationCommandInput;
|
|
29
|
+
constructor(input: UpdateDataIntegrationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateDataIntegrationCommandInput,
|
|
37
|
+
UpdateDataIntegrationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
UpdateEventIntegrationRequest,
|
|
15
|
+
UpdateEventIntegrationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateEventIntegrationCommandInput
|
|
18
|
+
extends UpdateEventIntegrationRequest {}
|
|
19
|
+
export interface UpdateEventIntegrationCommandOutput
|
|
20
|
+
extends UpdateEventIntegrationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateEventIntegrationCommand extends $Command<
|
|
24
|
+
UpdateEventIntegrationCommandInput,
|
|
25
|
+
UpdateEventIntegrationCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateEventIntegrationCommandInput;
|
|
29
|
+
constructor(input: UpdateEventIntegrationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateEventIntegrationCommandInput,
|
|
37
|
+
UpdateEventIntegrationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export * from "./CreateDataIntegrationCommand";
|
|
2
|
-
export * from "./CreateEventIntegrationCommand";
|
|
3
|
-
export * from "./DeleteDataIntegrationCommand";
|
|
4
|
-
export * from "./DeleteEventIntegrationCommand";
|
|
5
|
-
export * from "./GetDataIntegrationCommand";
|
|
6
|
-
export * from "./GetEventIntegrationCommand";
|
|
7
|
-
export * from "./ListDataIntegrationAssociationsCommand";
|
|
8
|
-
export * from "./ListDataIntegrationsCommand";
|
|
9
|
-
export * from "./ListEventIntegrationAssociationsCommand";
|
|
10
|
-
export * from "./ListEventIntegrationsCommand";
|
|
11
|
-
export * from "./ListTagsForResourceCommand";
|
|
12
|
-
export * from "./TagResourceCommand";
|
|
13
|
-
export * from "./UntagResourceCommand";
|
|
14
|
-
export * from "./UpdateDataIntegrationCommand";
|
|
15
|
-
export * from "./UpdateEventIntegrationCommand";
|
|
1
|
+
export * from "./CreateDataIntegrationCommand";
|
|
2
|
+
export * from "./CreateEventIntegrationCommand";
|
|
3
|
+
export * from "./DeleteDataIntegrationCommand";
|
|
4
|
+
export * from "./DeleteEventIntegrationCommand";
|
|
5
|
+
export * from "./GetDataIntegrationCommand";
|
|
6
|
+
export * from "./GetEventIntegrationCommand";
|
|
7
|
+
export * from "./ListDataIntegrationAssociationsCommand";
|
|
8
|
+
export * from "./ListDataIntegrationsCommand";
|
|
9
|
+
export * from "./ListEventIntegrationAssociationsCommand";
|
|
10
|
+
export * from "./ListEventIntegrationsCommand";
|
|
11
|
+
export * from "./ListTagsForResourceCommand";
|
|
12
|
+
export * from "./TagResourceCommand";
|
|
13
|
+
export * from "./UntagResourceCommand";
|
|
14
|
+
export * from "./UpdateDataIntegrationCommand";
|
|
15
|
+
export * from "./UpdateEventIntegrationCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./AppIntegrations";
|
|
2
|
-
export * from "./AppIntegrationsClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { AppIntegrationsServiceException } from "./models/AppIntegrationsServiceException";
|
|
1
|
+
export * from "./AppIntegrations";
|
|
2
|
+
export * from "./AppIntegrationsClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { AppIntegrationsServiceException } from "./models/AppIntegrationsServiceException";
|