@aws-sdk/client-appintegrations 3.50.0 → 3.51.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 +80 -0
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +88 -0
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +4 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +467 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +47 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-appintegrations
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-appintegrations
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AppIntegrationsClient } from "./AppIntegrationsClient";
|
|
3
|
+
import { CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput } from "./commands/CreateDataIntegrationCommand";
|
|
4
|
+
import { CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput } from "./commands/CreateEventIntegrationCommand";
|
|
5
|
+
import { DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput } from "./commands/DeleteDataIntegrationCommand";
|
|
6
|
+
import { DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput } from "./commands/DeleteEventIntegrationCommand";
|
|
7
|
+
import { GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput } from "./commands/GetDataIntegrationCommand";
|
|
8
|
+
import { GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput } from "./commands/GetEventIntegrationCommand";
|
|
9
|
+
import { ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput } from "./commands/ListDataIntegrationAssociationsCommand";
|
|
10
|
+
import { ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput } from "./commands/ListDataIntegrationsCommand";
|
|
11
|
+
import { ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput } from "./commands/ListEventIntegrationAssociationsCommand";
|
|
12
|
+
import { ListEventIntegrationsCommandInput, ListEventIntegrationsCommandOutput } from "./commands/ListEventIntegrationsCommand";
|
|
13
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
14
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
15
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
16
|
+
import { UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput } from "./commands/UpdateDataIntegrationCommand";
|
|
17
|
+
import { UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput } from "./commands/UpdateEventIntegrationCommand";
|
|
18
|
+
|
|
19
|
+
export declare class AppIntegrations extends AppIntegrationsClient {
|
|
20
|
+
|
|
21
|
+
createDataIntegration(args: CreateDataIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataIntegrationCommandOutput>;
|
|
22
|
+
createDataIntegration(args: CreateDataIntegrationCommandInput, cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void): void;
|
|
23
|
+
createDataIntegration(args: CreateDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void): void;
|
|
24
|
+
|
|
25
|
+
createEventIntegration(args: CreateEventIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<CreateEventIntegrationCommandOutput>;
|
|
26
|
+
createEventIntegration(args: CreateEventIntegrationCommandInput, cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void): void;
|
|
27
|
+
createEventIntegration(args: CreateEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void): void;
|
|
28
|
+
|
|
29
|
+
deleteDataIntegration(args: DeleteDataIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataIntegrationCommandOutput>;
|
|
30
|
+
deleteDataIntegration(args: DeleteDataIntegrationCommandInput, cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void): void;
|
|
31
|
+
deleteDataIntegration(args: DeleteDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void): void;
|
|
32
|
+
|
|
33
|
+
deleteEventIntegration(args: DeleteEventIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEventIntegrationCommandOutput>;
|
|
34
|
+
deleteEventIntegration(args: DeleteEventIntegrationCommandInput, cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void): void;
|
|
35
|
+
deleteEventIntegration(args: DeleteEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void): void;
|
|
36
|
+
|
|
37
|
+
getDataIntegration(args: GetDataIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<GetDataIntegrationCommandOutput>;
|
|
38
|
+
getDataIntegration(args: GetDataIntegrationCommandInput, cb: (err: any, data?: GetDataIntegrationCommandOutput) => void): void;
|
|
39
|
+
getDataIntegration(args: GetDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataIntegrationCommandOutput) => void): void;
|
|
40
|
+
|
|
41
|
+
getEventIntegration(args: GetEventIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<GetEventIntegrationCommandOutput>;
|
|
42
|
+
getEventIntegration(args: GetEventIntegrationCommandInput, cb: (err: any, data?: GetEventIntegrationCommandOutput) => void): void;
|
|
43
|
+
getEventIntegration(args: GetEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventIntegrationCommandOutput) => void): void;
|
|
44
|
+
|
|
45
|
+
listDataIntegrationAssociations(args: ListDataIntegrationAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataIntegrationAssociationsCommandOutput>;
|
|
46
|
+
listDataIntegrationAssociations(args: ListDataIntegrationAssociationsCommandInput, cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void): void;
|
|
47
|
+
listDataIntegrationAssociations(args: ListDataIntegrationAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void): void;
|
|
48
|
+
|
|
49
|
+
listDataIntegrations(args: ListDataIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataIntegrationsCommandOutput>;
|
|
50
|
+
listDataIntegrations(args: ListDataIntegrationsCommandInput, cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void): void;
|
|
51
|
+
listDataIntegrations(args: ListDataIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void): void;
|
|
52
|
+
|
|
53
|
+
listEventIntegrationAssociations(args: ListEventIntegrationAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventIntegrationAssociationsCommandOutput>;
|
|
54
|
+
listEventIntegrationAssociations(args: ListEventIntegrationAssociationsCommandInput, cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void): void;
|
|
55
|
+
listEventIntegrationAssociations(args: ListEventIntegrationAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void): void;
|
|
56
|
+
|
|
57
|
+
listEventIntegrations(args: ListEventIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventIntegrationsCommandOutput>;
|
|
58
|
+
listEventIntegrations(args: ListEventIntegrationsCommandInput, cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void): void;
|
|
59
|
+
listEventIntegrations(args: ListEventIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void): void;
|
|
60
|
+
|
|
61
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
62
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
63
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
64
|
+
|
|
65
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
66
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
67
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
68
|
+
|
|
69
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
70
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
71
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
72
|
+
|
|
73
|
+
updateDataIntegration(args: UpdateDataIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDataIntegrationCommandOutput>;
|
|
74
|
+
updateDataIntegration(args: UpdateDataIntegrationCommandInput, cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void): void;
|
|
75
|
+
updateDataIntegration(args: UpdateDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void): void;
|
|
76
|
+
|
|
77
|
+
updateEventIntegration(args: UpdateEventIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEventIntegrationCommandOutput>;
|
|
78
|
+
updateEventIntegration(args: UpdateEventIntegrationCommandInput, cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void): void;
|
|
79
|
+
updateEventIntegration(args: UpdateEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void): void;
|
|
80
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput } from "./commands/CreateDataIntegrationCommand";
|
|
10
|
+
import { CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput } from "./commands/CreateEventIntegrationCommand";
|
|
11
|
+
import { DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput } from "./commands/DeleteDataIntegrationCommand";
|
|
12
|
+
import { DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput } from "./commands/DeleteEventIntegrationCommand";
|
|
13
|
+
import { GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput } from "./commands/GetDataIntegrationCommand";
|
|
14
|
+
import { GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput } from "./commands/GetEventIntegrationCommand";
|
|
15
|
+
import { ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput } from "./commands/ListDataIntegrationAssociationsCommand";
|
|
16
|
+
import { ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput } from "./commands/ListDataIntegrationsCommand";
|
|
17
|
+
import { ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput } from "./commands/ListEventIntegrationAssociationsCommand";
|
|
18
|
+
import { ListEventIntegrationsCommandInput, ListEventIntegrationsCommandOutput } from "./commands/ListEventIntegrationsCommand";
|
|
19
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
20
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
21
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
22
|
+
import { UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput } from "./commands/UpdateDataIntegrationCommand";
|
|
23
|
+
import { UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput } from "./commands/UpdateEventIntegrationCommand";
|
|
24
|
+
export declare type ServiceInputTypes = CreateDataIntegrationCommandInput | CreateEventIntegrationCommandInput | DeleteDataIntegrationCommandInput | DeleteEventIntegrationCommandInput | GetDataIntegrationCommandInput | GetEventIntegrationCommandInput | ListDataIntegrationAssociationsCommandInput | ListDataIntegrationsCommandInput | ListEventIntegrationAssociationsCommandInput | ListEventIntegrationsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDataIntegrationCommandInput | UpdateEventIntegrationCommandInput;
|
|
25
|
+
export declare type ServiceOutputTypes = CreateDataIntegrationCommandOutput | CreateEventIntegrationCommandOutput | DeleteDataIntegrationCommandOutput | DeleteEventIntegrationCommandOutput | GetDataIntegrationCommandOutput | GetEventIntegrationCommandOutput | ListDataIntegrationAssociationsCommandOutput | ListDataIntegrationsCommandOutput | ListEventIntegrationAssociationsCommandOutput | ListEventIntegrationsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDataIntegrationCommandOutput | UpdateEventIntegrationCommandOutput;
|
|
26
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
27
|
+
|
|
28
|
+
requestHandler?: __HttpHandler;
|
|
29
|
+
|
|
30
|
+
sha256?: __HashConstructor;
|
|
31
|
+
|
|
32
|
+
urlParser?: __UrlParser;
|
|
33
|
+
|
|
34
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
35
|
+
|
|
36
|
+
streamCollector?: __StreamCollector;
|
|
37
|
+
|
|
38
|
+
base64Decoder?: __Decoder;
|
|
39
|
+
|
|
40
|
+
base64Encoder?: __Encoder;
|
|
41
|
+
|
|
42
|
+
utf8Decoder?: __Decoder;
|
|
43
|
+
|
|
44
|
+
utf8Encoder?: __Encoder;
|
|
45
|
+
|
|
46
|
+
runtime?: string;
|
|
47
|
+
|
|
48
|
+
disableHostPrefix?: boolean;
|
|
49
|
+
|
|
50
|
+
maxAttempts?: number | __Provider<number>;
|
|
51
|
+
|
|
52
|
+
retryMode?: string | __Provider<string>;
|
|
53
|
+
|
|
54
|
+
logger?: __Logger;
|
|
55
|
+
|
|
56
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
57
|
+
|
|
58
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
59
|
+
|
|
60
|
+
serviceId?: string;
|
|
61
|
+
|
|
62
|
+
region?: string | __Provider<string>;
|
|
63
|
+
|
|
64
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
65
|
+
|
|
66
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
67
|
+
|
|
68
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
69
|
+
|
|
70
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
71
|
+
}
|
|
72
|
+
declare type AppIntegrationsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
73
|
+
|
|
74
|
+
export interface AppIntegrationsClientConfig extends AppIntegrationsClientConfigType {
|
|
75
|
+
}
|
|
76
|
+
declare type AppIntegrationsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
77
|
+
|
|
78
|
+
export interface AppIntegrationsClientResolvedConfig extends AppIntegrationsClientResolvedConfigType {
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export declare class AppIntegrationsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AppIntegrationsClientResolvedConfig> {
|
|
82
|
+
|
|
83
|
+
readonly config: AppIntegrationsClientResolvedConfig;
|
|
84
|
+
constructor(configuration: AppIntegrationsClientConfig);
|
|
85
|
+
|
|
86
|
+
destroy(): void;
|
|
87
|
+
}
|
|
88
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
11
|
+
readonly input: TagResourceCommandInput;
|
|
12
|
+
constructor(input: TagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
11
|
+
readonly input: UntagResourceCommandInput;
|
|
12
|
+
constructor(input: UntagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { UpdateDataIntegrationRequest, UpdateDataIntegrationResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateDataIntegrationCommandInput extends UpdateDataIntegrationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateDataIntegrationCommandOutput extends UpdateDataIntegrationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateDataIntegrationCommand extends $Command<UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateDataIntegrationCommandInput;
|
|
12
|
+
constructor(input: UpdateDataIntegrationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { UpdateEventIntegrationRequest, UpdateEventIntegrationResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateEventIntegrationCommandInput extends UpdateEventIntegrationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateEventIntegrationCommandOutput extends UpdateEventIntegrationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateEventIntegrationCommand extends $Command<UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateEventIntegrationCommandInput;
|
|
12
|
+
constructor(input: UpdateEventIntegrationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +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";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,467 @@
|
|
|
1
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
+
|
|
3
|
+
export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
|
|
4
|
+
name: "AccessDeniedException";
|
|
5
|
+
$fault: "client";
|
|
6
|
+
Message?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export interface ScheduleConfiguration {
|
|
10
|
+
|
|
11
|
+
FirstExecutionFrom?: string;
|
|
12
|
+
|
|
13
|
+
Object?: string;
|
|
14
|
+
|
|
15
|
+
ScheduleExpression?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare namespace ScheduleConfiguration {
|
|
18
|
+
|
|
19
|
+
const filterSensitiveLog: (obj: ScheduleConfiguration) => any;
|
|
20
|
+
}
|
|
21
|
+
export interface CreateDataIntegrationRequest {
|
|
22
|
+
|
|
23
|
+
Name: string | undefined;
|
|
24
|
+
|
|
25
|
+
Description?: string;
|
|
26
|
+
|
|
27
|
+
KmsKey?: string;
|
|
28
|
+
|
|
29
|
+
SourceURI?: string;
|
|
30
|
+
|
|
31
|
+
ScheduleConfig?: ScheduleConfiguration;
|
|
32
|
+
|
|
33
|
+
Tags?: {
|
|
34
|
+
[key: string]: string;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
ClientToken?: string;
|
|
38
|
+
}
|
|
39
|
+
export declare namespace CreateDataIntegrationRequest {
|
|
40
|
+
|
|
41
|
+
const filterSensitiveLog: (obj: CreateDataIntegrationRequest) => any;
|
|
42
|
+
}
|
|
43
|
+
export interface CreateDataIntegrationResponse {
|
|
44
|
+
|
|
45
|
+
Arn?: string;
|
|
46
|
+
|
|
47
|
+
Id?: string;
|
|
48
|
+
|
|
49
|
+
Name?: string;
|
|
50
|
+
|
|
51
|
+
Description?: string;
|
|
52
|
+
|
|
53
|
+
KmsKey?: string;
|
|
54
|
+
|
|
55
|
+
SourceURI?: string;
|
|
56
|
+
|
|
57
|
+
ScheduleConfiguration?: ScheduleConfiguration;
|
|
58
|
+
|
|
59
|
+
Tags?: {
|
|
60
|
+
[key: string]: string;
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
ClientToken?: string;
|
|
64
|
+
}
|
|
65
|
+
export declare namespace CreateDataIntegrationResponse {
|
|
66
|
+
|
|
67
|
+
const filterSensitiveLog: (obj: CreateDataIntegrationResponse) => any;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export interface DuplicateResourceException extends __SmithyException, $MetadataBearer {
|
|
71
|
+
name: "DuplicateResourceException";
|
|
72
|
+
$fault: "client";
|
|
73
|
+
Message?: string;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export interface InternalServiceError extends __SmithyException, $MetadataBearer {
|
|
77
|
+
name: "InternalServiceError";
|
|
78
|
+
$fault: "server";
|
|
79
|
+
Message?: string;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
|
|
83
|
+
name: "InvalidRequestException";
|
|
84
|
+
$fault: "client";
|
|
85
|
+
Message?: string;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface ResourceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
89
|
+
name: "ResourceQuotaExceededException";
|
|
90
|
+
$fault: "client";
|
|
91
|
+
Message?: string;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
95
|
+
name: "ThrottlingException";
|
|
96
|
+
$fault: "client";
|
|
97
|
+
Message?: string;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export interface EventFilter {
|
|
101
|
+
|
|
102
|
+
Source: string | undefined;
|
|
103
|
+
}
|
|
104
|
+
export declare namespace EventFilter {
|
|
105
|
+
|
|
106
|
+
const filterSensitiveLog: (obj: EventFilter) => any;
|
|
107
|
+
}
|
|
108
|
+
export interface CreateEventIntegrationRequest {
|
|
109
|
+
|
|
110
|
+
Name: string | undefined;
|
|
111
|
+
|
|
112
|
+
Description?: string;
|
|
113
|
+
|
|
114
|
+
EventFilter: EventFilter | undefined;
|
|
115
|
+
|
|
116
|
+
EventBridgeBus: string | undefined;
|
|
117
|
+
|
|
118
|
+
ClientToken?: string;
|
|
119
|
+
|
|
120
|
+
Tags?: {
|
|
121
|
+
[key: string]: string;
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
export declare namespace CreateEventIntegrationRequest {
|
|
125
|
+
|
|
126
|
+
const filterSensitiveLog: (obj: CreateEventIntegrationRequest) => any;
|
|
127
|
+
}
|
|
128
|
+
export interface CreateEventIntegrationResponse {
|
|
129
|
+
|
|
130
|
+
EventIntegrationArn?: string;
|
|
131
|
+
}
|
|
132
|
+
export declare namespace CreateEventIntegrationResponse {
|
|
133
|
+
|
|
134
|
+
const filterSensitiveLog: (obj: CreateEventIntegrationResponse) => any;
|
|
135
|
+
}
|
|
136
|
+
export interface DeleteDataIntegrationRequest {
|
|
137
|
+
|
|
138
|
+
DataIntegrationIdentifier: string | undefined;
|
|
139
|
+
}
|
|
140
|
+
export declare namespace DeleteDataIntegrationRequest {
|
|
141
|
+
|
|
142
|
+
const filterSensitiveLog: (obj: DeleteDataIntegrationRequest) => any;
|
|
143
|
+
}
|
|
144
|
+
export interface DeleteDataIntegrationResponse {
|
|
145
|
+
}
|
|
146
|
+
export declare namespace DeleteDataIntegrationResponse {
|
|
147
|
+
|
|
148
|
+
const filterSensitiveLog: (obj: DeleteDataIntegrationResponse) => any;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
152
|
+
name: "ResourceNotFoundException";
|
|
153
|
+
$fault: "client";
|
|
154
|
+
Message?: string;
|
|
155
|
+
}
|
|
156
|
+
export interface DeleteEventIntegrationRequest {
|
|
157
|
+
|
|
158
|
+
Name: string | undefined;
|
|
159
|
+
}
|
|
160
|
+
export declare namespace DeleteEventIntegrationRequest {
|
|
161
|
+
|
|
162
|
+
const filterSensitiveLog: (obj: DeleteEventIntegrationRequest) => any;
|
|
163
|
+
}
|
|
164
|
+
export interface DeleteEventIntegrationResponse {
|
|
165
|
+
}
|
|
166
|
+
export declare namespace DeleteEventIntegrationResponse {
|
|
167
|
+
|
|
168
|
+
const filterSensitiveLog: (obj: DeleteEventIntegrationResponse) => any;
|
|
169
|
+
}
|
|
170
|
+
export interface GetDataIntegrationRequest {
|
|
171
|
+
|
|
172
|
+
Identifier: string | undefined;
|
|
173
|
+
}
|
|
174
|
+
export declare namespace GetDataIntegrationRequest {
|
|
175
|
+
|
|
176
|
+
const filterSensitiveLog: (obj: GetDataIntegrationRequest) => any;
|
|
177
|
+
}
|
|
178
|
+
export interface GetDataIntegrationResponse {
|
|
179
|
+
|
|
180
|
+
Arn?: string;
|
|
181
|
+
|
|
182
|
+
Id?: string;
|
|
183
|
+
|
|
184
|
+
Name?: string;
|
|
185
|
+
|
|
186
|
+
Description?: string;
|
|
187
|
+
|
|
188
|
+
KmsKey?: string;
|
|
189
|
+
|
|
190
|
+
SourceURI?: string;
|
|
191
|
+
|
|
192
|
+
ScheduleConfiguration?: ScheduleConfiguration;
|
|
193
|
+
|
|
194
|
+
Tags?: {
|
|
195
|
+
[key: string]: string;
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
export declare namespace GetDataIntegrationResponse {
|
|
199
|
+
|
|
200
|
+
const filterSensitiveLog: (obj: GetDataIntegrationResponse) => any;
|
|
201
|
+
}
|
|
202
|
+
export interface GetEventIntegrationRequest {
|
|
203
|
+
|
|
204
|
+
Name: string | undefined;
|
|
205
|
+
}
|
|
206
|
+
export declare namespace GetEventIntegrationRequest {
|
|
207
|
+
|
|
208
|
+
const filterSensitiveLog: (obj: GetEventIntegrationRequest) => any;
|
|
209
|
+
}
|
|
210
|
+
export interface GetEventIntegrationResponse {
|
|
211
|
+
|
|
212
|
+
Name?: string;
|
|
213
|
+
|
|
214
|
+
Description?: string;
|
|
215
|
+
|
|
216
|
+
EventIntegrationArn?: string;
|
|
217
|
+
|
|
218
|
+
EventBridgeBus?: string;
|
|
219
|
+
|
|
220
|
+
EventFilter?: EventFilter;
|
|
221
|
+
|
|
222
|
+
Tags?: {
|
|
223
|
+
[key: string]: string;
|
|
224
|
+
};
|
|
225
|
+
}
|
|
226
|
+
export declare namespace GetEventIntegrationResponse {
|
|
227
|
+
|
|
228
|
+
const filterSensitiveLog: (obj: GetEventIntegrationResponse) => any;
|
|
229
|
+
}
|
|
230
|
+
export interface ListDataIntegrationAssociationsRequest {
|
|
231
|
+
|
|
232
|
+
DataIntegrationIdentifier: string | undefined;
|
|
233
|
+
|
|
234
|
+
NextToken?: string;
|
|
235
|
+
|
|
236
|
+
MaxResults?: number;
|
|
237
|
+
}
|
|
238
|
+
export declare namespace ListDataIntegrationAssociationsRequest {
|
|
239
|
+
|
|
240
|
+
const filterSensitiveLog: (obj: ListDataIntegrationAssociationsRequest) => any;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export interface DataIntegrationAssociationSummary {
|
|
244
|
+
|
|
245
|
+
DataIntegrationAssociationArn?: string;
|
|
246
|
+
|
|
247
|
+
DataIntegrationArn?: string;
|
|
248
|
+
|
|
249
|
+
ClientId?: string;
|
|
250
|
+
}
|
|
251
|
+
export declare namespace DataIntegrationAssociationSummary {
|
|
252
|
+
|
|
253
|
+
const filterSensitiveLog: (obj: DataIntegrationAssociationSummary) => any;
|
|
254
|
+
}
|
|
255
|
+
export interface ListDataIntegrationAssociationsResponse {
|
|
256
|
+
|
|
257
|
+
DataIntegrationAssociations?: DataIntegrationAssociationSummary[];
|
|
258
|
+
|
|
259
|
+
NextToken?: string;
|
|
260
|
+
}
|
|
261
|
+
export declare namespace ListDataIntegrationAssociationsResponse {
|
|
262
|
+
|
|
263
|
+
const filterSensitiveLog: (obj: ListDataIntegrationAssociationsResponse) => any;
|
|
264
|
+
}
|
|
265
|
+
export interface ListDataIntegrationsRequest {
|
|
266
|
+
|
|
267
|
+
NextToken?: string;
|
|
268
|
+
|
|
269
|
+
MaxResults?: number;
|
|
270
|
+
}
|
|
271
|
+
export declare namespace ListDataIntegrationsRequest {
|
|
272
|
+
|
|
273
|
+
const filterSensitiveLog: (obj: ListDataIntegrationsRequest) => any;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
export interface DataIntegrationSummary {
|
|
277
|
+
|
|
278
|
+
Arn?: string;
|
|
279
|
+
|
|
280
|
+
Name?: string;
|
|
281
|
+
|
|
282
|
+
SourceURI?: string;
|
|
283
|
+
}
|
|
284
|
+
export declare namespace DataIntegrationSummary {
|
|
285
|
+
|
|
286
|
+
const filterSensitiveLog: (obj: DataIntegrationSummary) => any;
|
|
287
|
+
}
|
|
288
|
+
export interface ListDataIntegrationsResponse {
|
|
289
|
+
|
|
290
|
+
DataIntegrations?: DataIntegrationSummary[];
|
|
291
|
+
|
|
292
|
+
NextToken?: string;
|
|
293
|
+
}
|
|
294
|
+
export declare namespace ListDataIntegrationsResponse {
|
|
295
|
+
|
|
296
|
+
const filterSensitiveLog: (obj: ListDataIntegrationsResponse) => any;
|
|
297
|
+
}
|
|
298
|
+
export interface ListEventIntegrationAssociationsRequest {
|
|
299
|
+
|
|
300
|
+
EventIntegrationName: string | undefined;
|
|
301
|
+
|
|
302
|
+
NextToken?: string;
|
|
303
|
+
|
|
304
|
+
MaxResults?: number;
|
|
305
|
+
}
|
|
306
|
+
export declare namespace ListEventIntegrationAssociationsRequest {
|
|
307
|
+
|
|
308
|
+
const filterSensitiveLog: (obj: ListEventIntegrationAssociationsRequest) => any;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export interface EventIntegrationAssociation {
|
|
312
|
+
|
|
313
|
+
EventIntegrationAssociationArn?: string;
|
|
314
|
+
|
|
315
|
+
EventIntegrationAssociationId?: string;
|
|
316
|
+
|
|
317
|
+
EventIntegrationName?: string;
|
|
318
|
+
|
|
319
|
+
ClientId?: string;
|
|
320
|
+
|
|
321
|
+
EventBridgeRuleName?: string;
|
|
322
|
+
|
|
323
|
+
ClientAssociationMetadata?: {
|
|
324
|
+
[key: string]: string;
|
|
325
|
+
};
|
|
326
|
+
}
|
|
327
|
+
export declare namespace EventIntegrationAssociation {
|
|
328
|
+
|
|
329
|
+
const filterSensitiveLog: (obj: EventIntegrationAssociation) => any;
|
|
330
|
+
}
|
|
331
|
+
export interface ListEventIntegrationAssociationsResponse {
|
|
332
|
+
|
|
333
|
+
EventIntegrationAssociations?: EventIntegrationAssociation[];
|
|
334
|
+
|
|
335
|
+
NextToken?: string;
|
|
336
|
+
}
|
|
337
|
+
export declare namespace ListEventIntegrationAssociationsResponse {
|
|
338
|
+
|
|
339
|
+
const filterSensitiveLog: (obj: ListEventIntegrationAssociationsResponse) => any;
|
|
340
|
+
}
|
|
341
|
+
export interface ListEventIntegrationsRequest {
|
|
342
|
+
|
|
343
|
+
NextToken?: string;
|
|
344
|
+
|
|
345
|
+
MaxResults?: number;
|
|
346
|
+
}
|
|
347
|
+
export declare namespace ListEventIntegrationsRequest {
|
|
348
|
+
|
|
349
|
+
const filterSensitiveLog: (obj: ListEventIntegrationsRequest) => any;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
export interface EventIntegration {
|
|
353
|
+
|
|
354
|
+
EventIntegrationArn?: string;
|
|
355
|
+
|
|
356
|
+
Name?: string;
|
|
357
|
+
|
|
358
|
+
Description?: string;
|
|
359
|
+
|
|
360
|
+
EventFilter?: EventFilter;
|
|
361
|
+
|
|
362
|
+
EventBridgeBus?: string;
|
|
363
|
+
|
|
364
|
+
Tags?: {
|
|
365
|
+
[key: string]: string;
|
|
366
|
+
};
|
|
367
|
+
}
|
|
368
|
+
export declare namespace EventIntegration {
|
|
369
|
+
|
|
370
|
+
const filterSensitiveLog: (obj: EventIntegration) => any;
|
|
371
|
+
}
|
|
372
|
+
export interface ListEventIntegrationsResponse {
|
|
373
|
+
|
|
374
|
+
EventIntegrations?: EventIntegration[];
|
|
375
|
+
|
|
376
|
+
NextToken?: string;
|
|
377
|
+
}
|
|
378
|
+
export declare namespace ListEventIntegrationsResponse {
|
|
379
|
+
|
|
380
|
+
const filterSensitiveLog: (obj: ListEventIntegrationsResponse) => any;
|
|
381
|
+
}
|
|
382
|
+
export interface ListTagsForResourceRequest {
|
|
383
|
+
|
|
384
|
+
resourceArn: string | undefined;
|
|
385
|
+
}
|
|
386
|
+
export declare namespace ListTagsForResourceRequest {
|
|
387
|
+
|
|
388
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
389
|
+
}
|
|
390
|
+
export interface ListTagsForResourceResponse {
|
|
391
|
+
|
|
392
|
+
tags?: {
|
|
393
|
+
[key: string]: string;
|
|
394
|
+
};
|
|
395
|
+
}
|
|
396
|
+
export declare namespace ListTagsForResourceResponse {
|
|
397
|
+
|
|
398
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
399
|
+
}
|
|
400
|
+
export interface TagResourceRequest {
|
|
401
|
+
|
|
402
|
+
resourceArn: string | undefined;
|
|
403
|
+
|
|
404
|
+
tags: {
|
|
405
|
+
[key: string]: string;
|
|
406
|
+
} | undefined;
|
|
407
|
+
}
|
|
408
|
+
export declare namespace TagResourceRequest {
|
|
409
|
+
|
|
410
|
+
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
411
|
+
}
|
|
412
|
+
export interface TagResourceResponse {
|
|
413
|
+
}
|
|
414
|
+
export declare namespace TagResourceResponse {
|
|
415
|
+
|
|
416
|
+
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
417
|
+
}
|
|
418
|
+
export interface UntagResourceRequest {
|
|
419
|
+
|
|
420
|
+
resourceArn: string | undefined;
|
|
421
|
+
|
|
422
|
+
tagKeys: string[] | undefined;
|
|
423
|
+
}
|
|
424
|
+
export declare namespace UntagResourceRequest {
|
|
425
|
+
|
|
426
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
427
|
+
}
|
|
428
|
+
export interface UntagResourceResponse {
|
|
429
|
+
}
|
|
430
|
+
export declare namespace UntagResourceResponse {
|
|
431
|
+
|
|
432
|
+
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
433
|
+
}
|
|
434
|
+
export interface UpdateDataIntegrationRequest {
|
|
435
|
+
|
|
436
|
+
Identifier: string | undefined;
|
|
437
|
+
|
|
438
|
+
Name?: string;
|
|
439
|
+
|
|
440
|
+
Description?: string;
|
|
441
|
+
}
|
|
442
|
+
export declare namespace UpdateDataIntegrationRequest {
|
|
443
|
+
|
|
444
|
+
const filterSensitiveLog: (obj: UpdateDataIntegrationRequest) => any;
|
|
445
|
+
}
|
|
446
|
+
export interface UpdateDataIntegrationResponse {
|
|
447
|
+
}
|
|
448
|
+
export declare namespace UpdateDataIntegrationResponse {
|
|
449
|
+
|
|
450
|
+
const filterSensitiveLog: (obj: UpdateDataIntegrationResponse) => any;
|
|
451
|
+
}
|
|
452
|
+
export interface UpdateEventIntegrationRequest {
|
|
453
|
+
|
|
454
|
+
Name: string | undefined;
|
|
455
|
+
|
|
456
|
+
Description?: string;
|
|
457
|
+
}
|
|
458
|
+
export declare namespace UpdateEventIntegrationRequest {
|
|
459
|
+
|
|
460
|
+
const filterSensitiveLog: (obj: UpdateEventIntegrationRequest) => any;
|
|
461
|
+
}
|
|
462
|
+
export interface UpdateEventIntegrationResponse {
|
|
463
|
+
}
|
|
464
|
+
export declare namespace UpdateEventIntegrationResponse {
|
|
465
|
+
|
|
466
|
+
const filterSensitiveLog: (obj: UpdateEventIntegrationResponse) => any;
|
|
467
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput } from "../commands/CreateDataIntegrationCommand";
|
|
4
|
+
import { CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput } from "../commands/CreateEventIntegrationCommand";
|
|
5
|
+
import { DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput } from "../commands/DeleteDataIntegrationCommand";
|
|
6
|
+
import { DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput } from "../commands/DeleteEventIntegrationCommand";
|
|
7
|
+
import { GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput } from "../commands/GetDataIntegrationCommand";
|
|
8
|
+
import { GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput } from "../commands/GetEventIntegrationCommand";
|
|
9
|
+
import { ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput } from "../commands/ListDataIntegrationAssociationsCommand";
|
|
10
|
+
import { ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput } from "../commands/ListDataIntegrationsCommand";
|
|
11
|
+
import { ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput } from "../commands/ListEventIntegrationAssociationsCommand";
|
|
12
|
+
import { ListEventIntegrationsCommandInput, ListEventIntegrationsCommandOutput } from "../commands/ListEventIntegrationsCommand";
|
|
13
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
14
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
15
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
16
|
+
import { UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput } from "../commands/UpdateDataIntegrationCommand";
|
|
17
|
+
import { UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput } from "../commands/UpdateEventIntegrationCommand";
|
|
18
|
+
export declare const serializeAws_restJson1CreateDataIntegrationCommand: (input: CreateDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
+
export declare const serializeAws_restJson1CreateEventIntegrationCommand: (input: CreateEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
+
export declare const serializeAws_restJson1DeleteDataIntegrationCommand: (input: DeleteDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
|
+
export declare const serializeAws_restJson1DeleteEventIntegrationCommand: (input: DeleteEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
+
export declare const serializeAws_restJson1GetDataIntegrationCommand: (input: GetDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
export declare const serializeAws_restJson1GetEventIntegrationCommand: (input: GetEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
export declare const serializeAws_restJson1ListDataIntegrationAssociationsCommand: (input: ListDataIntegrationAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
|
+
export declare const serializeAws_restJson1ListDataIntegrationsCommand: (input: ListDataIntegrationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
export declare const serializeAws_restJson1ListEventIntegrationAssociationsCommand: (input: ListEventIntegrationAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
export declare const serializeAws_restJson1ListEventIntegrationsCommand: (input: ListEventIntegrationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
+
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
export declare const serializeAws_restJson1UpdateDataIntegrationCommand: (input: UpdateDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
export declare const serializeAws_restJson1UpdateEventIntegrationCommand: (input: UpdateEventIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
+
export declare const deserializeAws_restJson1CreateDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataIntegrationCommandOutput>;
|
|
34
|
+
export declare const deserializeAws_restJson1CreateEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEventIntegrationCommandOutput>;
|
|
35
|
+
export declare const deserializeAws_restJson1DeleteDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataIntegrationCommandOutput>;
|
|
36
|
+
export declare const deserializeAws_restJson1DeleteEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEventIntegrationCommandOutput>;
|
|
37
|
+
export declare const deserializeAws_restJson1GetDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataIntegrationCommandOutput>;
|
|
38
|
+
export declare const deserializeAws_restJson1GetEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventIntegrationCommandOutput>;
|
|
39
|
+
export declare const deserializeAws_restJson1ListDataIntegrationAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIntegrationAssociationsCommandOutput>;
|
|
40
|
+
export declare const deserializeAws_restJson1ListDataIntegrationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIntegrationsCommandOutput>;
|
|
41
|
+
export declare const deserializeAws_restJson1ListEventIntegrationAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventIntegrationAssociationsCommandOutput>;
|
|
42
|
+
export declare const deserializeAws_restJson1ListEventIntegrationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventIntegrationsCommandOutput>;
|
|
43
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
44
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
45
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
46
|
+
export declare const deserializeAws_restJson1UpdateDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataIntegrationCommandOutput>;
|
|
47
|
+
export declare const deserializeAws_restJson1UpdateEventIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEventIntegrationCommandOutput>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
+
signingEscapePath?: boolean | undefined;
|
|
33
|
+
systemClockOffset?: number | undefined;
|
|
34
|
+
signingRegion?: string | undefined;
|
|
35
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appintegrations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appintegrations Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.51.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,21 +18,21 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.50.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
31
|
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
32
|
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
36
|
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.50.0",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
45
|
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0",
|