@aws-sdk/client-appintegrations 3.168.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 +16 -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,88 +1,220 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CreateDataIntegrationCommandInput,
|
|
47
|
+
CreateDataIntegrationCommandOutput,
|
|
48
|
+
} from "./commands/CreateDataIntegrationCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateEventIntegrationCommandInput,
|
|
51
|
+
CreateEventIntegrationCommandOutput,
|
|
52
|
+
} from "./commands/CreateEventIntegrationCommand";
|
|
53
|
+
import {
|
|
54
|
+
DeleteDataIntegrationCommandInput,
|
|
55
|
+
DeleteDataIntegrationCommandOutput,
|
|
56
|
+
} from "./commands/DeleteDataIntegrationCommand";
|
|
57
|
+
import {
|
|
58
|
+
DeleteEventIntegrationCommandInput,
|
|
59
|
+
DeleteEventIntegrationCommandOutput,
|
|
60
|
+
} from "./commands/DeleteEventIntegrationCommand";
|
|
61
|
+
import {
|
|
62
|
+
GetDataIntegrationCommandInput,
|
|
63
|
+
GetDataIntegrationCommandOutput,
|
|
64
|
+
} from "./commands/GetDataIntegrationCommand";
|
|
65
|
+
import {
|
|
66
|
+
GetEventIntegrationCommandInput,
|
|
67
|
+
GetEventIntegrationCommandOutput,
|
|
68
|
+
} from "./commands/GetEventIntegrationCommand";
|
|
69
|
+
import {
|
|
70
|
+
ListDataIntegrationAssociationsCommandInput,
|
|
71
|
+
ListDataIntegrationAssociationsCommandOutput,
|
|
72
|
+
} from "./commands/ListDataIntegrationAssociationsCommand";
|
|
73
|
+
import {
|
|
74
|
+
ListDataIntegrationsCommandInput,
|
|
75
|
+
ListDataIntegrationsCommandOutput,
|
|
76
|
+
} from "./commands/ListDataIntegrationsCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListEventIntegrationAssociationsCommandInput,
|
|
79
|
+
ListEventIntegrationAssociationsCommandOutput,
|
|
80
|
+
} from "./commands/ListEventIntegrationAssociationsCommand";
|
|
81
|
+
import {
|
|
82
|
+
ListEventIntegrationsCommandInput,
|
|
83
|
+
ListEventIntegrationsCommandOutput,
|
|
84
|
+
} from "./commands/ListEventIntegrationsCommand";
|
|
85
|
+
import {
|
|
86
|
+
ListTagsForResourceCommandInput,
|
|
87
|
+
ListTagsForResourceCommandOutput,
|
|
88
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
89
|
+
import {
|
|
90
|
+
TagResourceCommandInput,
|
|
91
|
+
TagResourceCommandOutput,
|
|
92
|
+
} from "./commands/TagResourceCommand";
|
|
93
|
+
import {
|
|
94
|
+
UntagResourceCommandInput,
|
|
95
|
+
UntagResourceCommandOutput,
|
|
96
|
+
} from "./commands/UntagResourceCommand";
|
|
97
|
+
import {
|
|
98
|
+
UpdateDataIntegrationCommandInput,
|
|
99
|
+
UpdateDataIntegrationCommandOutput,
|
|
100
|
+
} from "./commands/UpdateDataIntegrationCommand";
|
|
101
|
+
import {
|
|
102
|
+
UpdateEventIntegrationCommandInput,
|
|
103
|
+
UpdateEventIntegrationCommandOutput,
|
|
104
|
+
} from "./commands/UpdateEventIntegrationCommand";
|
|
105
|
+
export declare type ServiceInputTypes =
|
|
106
|
+
| CreateDataIntegrationCommandInput
|
|
107
|
+
| CreateEventIntegrationCommandInput
|
|
108
|
+
| DeleteDataIntegrationCommandInput
|
|
109
|
+
| DeleteEventIntegrationCommandInput
|
|
110
|
+
| GetDataIntegrationCommandInput
|
|
111
|
+
| GetEventIntegrationCommandInput
|
|
112
|
+
| ListDataIntegrationAssociationsCommandInput
|
|
113
|
+
| ListDataIntegrationsCommandInput
|
|
114
|
+
| ListEventIntegrationAssociationsCommandInput
|
|
115
|
+
| ListEventIntegrationsCommandInput
|
|
116
|
+
| ListTagsForResourceCommandInput
|
|
117
|
+
| TagResourceCommandInput
|
|
118
|
+
| UntagResourceCommandInput
|
|
119
|
+
| UpdateDataIntegrationCommandInput
|
|
120
|
+
| UpdateEventIntegrationCommandInput;
|
|
121
|
+
export declare type ServiceOutputTypes =
|
|
122
|
+
| CreateDataIntegrationCommandOutput
|
|
123
|
+
| CreateEventIntegrationCommandOutput
|
|
124
|
+
| DeleteDataIntegrationCommandOutput
|
|
125
|
+
| DeleteEventIntegrationCommandOutput
|
|
126
|
+
| GetDataIntegrationCommandOutput
|
|
127
|
+
| GetEventIntegrationCommandOutput
|
|
128
|
+
| ListDataIntegrationAssociationsCommandOutput
|
|
129
|
+
| ListDataIntegrationsCommandOutput
|
|
130
|
+
| ListEventIntegrationAssociationsCommandOutput
|
|
131
|
+
| ListEventIntegrationsCommandOutput
|
|
132
|
+
| ListTagsForResourceCommandOutput
|
|
133
|
+
| TagResourceCommandOutput
|
|
134
|
+
| UntagResourceCommandOutput
|
|
135
|
+
| UpdateDataIntegrationCommandOutput
|
|
136
|
+
| UpdateEventIntegrationCommandOutput;
|
|
137
|
+
export interface ClientDefaults
|
|
138
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
139
|
+
requestHandler?: __HttpHandler;
|
|
140
|
+
|
|
141
|
+
sha256?: __HashConstructor;
|
|
142
|
+
|
|
143
|
+
urlParser?: __UrlParser;
|
|
144
|
+
|
|
145
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
146
|
+
|
|
147
|
+
streamCollector?: __StreamCollector;
|
|
148
|
+
|
|
149
|
+
base64Decoder?: __Decoder;
|
|
150
|
+
|
|
151
|
+
base64Encoder?: __Encoder;
|
|
152
|
+
|
|
153
|
+
utf8Decoder?: __Decoder;
|
|
154
|
+
|
|
155
|
+
utf8Encoder?: __Encoder;
|
|
156
|
+
|
|
157
|
+
runtime?: string;
|
|
158
|
+
|
|
159
|
+
disableHostPrefix?: boolean;
|
|
160
|
+
|
|
161
|
+
maxAttempts?: number | __Provider<number>;
|
|
162
|
+
|
|
163
|
+
retryMode?: string | __Provider<string>;
|
|
164
|
+
|
|
165
|
+
logger?: __Logger;
|
|
166
|
+
|
|
167
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
168
|
+
|
|
169
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
170
|
+
|
|
171
|
+
serviceId?: string;
|
|
172
|
+
|
|
173
|
+
region?: string | __Provider<string>;
|
|
174
|
+
|
|
175
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
176
|
+
|
|
177
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
178
|
+
|
|
179
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
180
|
+
|
|
181
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
182
|
+
}
|
|
183
|
+
declare type AppIntegrationsClientConfigType = Partial<
|
|
184
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
185
|
+
> &
|
|
186
|
+
ClientDefaults &
|
|
187
|
+
RegionInputConfig &
|
|
188
|
+
EndpointsInputConfig &
|
|
189
|
+
RetryInputConfig &
|
|
190
|
+
HostHeaderInputConfig &
|
|
191
|
+
AwsAuthInputConfig &
|
|
192
|
+
UserAgentInputConfig;
|
|
193
|
+
|
|
194
|
+
export interface AppIntegrationsClientConfig
|
|
195
|
+
extends AppIntegrationsClientConfigType {}
|
|
196
|
+
declare type AppIntegrationsClientResolvedConfigType =
|
|
197
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
198
|
+
Required<ClientDefaults> &
|
|
199
|
+
RegionResolvedConfig &
|
|
200
|
+
EndpointsResolvedConfig &
|
|
201
|
+
RetryResolvedConfig &
|
|
202
|
+
HostHeaderResolvedConfig &
|
|
203
|
+
AwsAuthResolvedConfig &
|
|
204
|
+
UserAgentResolvedConfig;
|
|
205
|
+
|
|
206
|
+
export interface AppIntegrationsClientResolvedConfig
|
|
207
|
+
extends AppIntegrationsClientResolvedConfigType {}
|
|
208
|
+
|
|
209
|
+
export declare class AppIntegrationsClient extends __Client<
|
|
210
|
+
__HttpHandlerOptions,
|
|
211
|
+
ServiceInputTypes,
|
|
212
|
+
ServiceOutputTypes,
|
|
213
|
+
AppIntegrationsClientResolvedConfig
|
|
214
|
+
> {
|
|
215
|
+
readonly config: AppIntegrationsClientResolvedConfig;
|
|
216
|
+
constructor(configuration: AppIntegrationsClientConfig);
|
|
217
|
+
|
|
218
|
+
destroy(): void;
|
|
219
|
+
}
|
|
220
|
+
export {};
|
|
@@ -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
|
+
CreateDataIntegrationRequest,
|
|
15
|
+
CreateDataIntegrationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateDataIntegrationCommandInput
|
|
18
|
+
extends CreateDataIntegrationRequest {}
|
|
19
|
+
export interface CreateDataIntegrationCommandOutput
|
|
20
|
+
extends CreateDataIntegrationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateDataIntegrationCommand extends $Command<
|
|
24
|
+
CreateDataIntegrationCommandInput,
|
|
25
|
+
CreateDataIntegrationCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateDataIntegrationCommandInput;
|
|
29
|
+
constructor(input: CreateDataIntegrationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateDataIntegrationCommandInput,
|
|
37
|
+
CreateDataIntegrationCommandOutput
|
|
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
|
+
CreateEventIntegrationRequest,
|
|
15
|
+
CreateEventIntegrationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateEventIntegrationCommandInput
|
|
18
|
+
extends CreateEventIntegrationRequest {}
|
|
19
|
+
export interface CreateEventIntegrationCommandOutput
|
|
20
|
+
extends CreateEventIntegrationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateEventIntegrationCommand extends $Command<
|
|
24
|
+
CreateEventIntegrationCommandInput,
|
|
25
|
+
CreateEventIntegrationCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateEventIntegrationCommandInput;
|
|
29
|
+
constructor(input: CreateEventIntegrationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateEventIntegrationCommandInput,
|
|
37
|
+
CreateEventIntegrationCommandOutput
|
|
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
|
+
DeleteDataIntegrationRequest,
|
|
15
|
+
DeleteDataIntegrationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteDataIntegrationCommandInput
|
|
18
|
+
extends DeleteDataIntegrationRequest {}
|
|
19
|
+
export interface DeleteDataIntegrationCommandOutput
|
|
20
|
+
extends DeleteDataIntegrationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteDataIntegrationCommand extends $Command<
|
|
24
|
+
DeleteDataIntegrationCommandInput,
|
|
25
|
+
DeleteDataIntegrationCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteDataIntegrationCommandInput;
|
|
29
|
+
constructor(input: DeleteDataIntegrationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteDataIntegrationCommandInput,
|
|
37
|
+
DeleteDataIntegrationCommandOutput
|
|
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
|
+
DeleteEventIntegrationRequest,
|
|
15
|
+
DeleteEventIntegrationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteEventIntegrationCommandInput
|
|
18
|
+
extends DeleteEventIntegrationRequest {}
|
|
19
|
+
export interface DeleteEventIntegrationCommandOutput
|
|
20
|
+
extends DeleteEventIntegrationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteEventIntegrationCommand extends $Command<
|
|
24
|
+
DeleteEventIntegrationCommandInput,
|
|
25
|
+
DeleteEventIntegrationCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteEventIntegrationCommandInput;
|
|
29
|
+
constructor(input: DeleteEventIntegrationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteEventIntegrationCommandInput,
|
|
37
|
+
DeleteEventIntegrationCommandOutput
|
|
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
|
+
GetDataIntegrationRequest,
|
|
15
|
+
GetDataIntegrationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetDataIntegrationCommandInput
|
|
18
|
+
extends GetDataIntegrationRequest {}
|
|
19
|
+
export interface GetDataIntegrationCommandOutput
|
|
20
|
+
extends GetDataIntegrationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetDataIntegrationCommand extends $Command<
|
|
24
|
+
GetDataIntegrationCommandInput,
|
|
25
|
+
GetDataIntegrationCommandOutput,
|
|
26
|
+
AppIntegrationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetDataIntegrationCommandInput;
|
|
29
|
+
constructor(input: GetDataIntegrationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AppIntegrationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|