@aws-sdk/client-appintegrations 3.533.0 → 3.540.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/dist-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/AppIntegrations.d.ts +4 -1
- package/dist-types/AppIntegrationsClient.d.ts +1 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +2 -1
- package/dist-types/commands/CreateDataIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/CreateEventIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteApplicationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDataIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteEventIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +2 -1
- package/dist-types/commands/GetDataIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/GetEventIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/ListApplicationAssociationsCommand.d.ts +2 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +2 -1
- package/dist-types/commands/ListDataIntegrationAssociationsCommand.d.ts +2 -1
- package/dist-types/commands/ListDataIntegrationsCommand.d.ts +2 -1
- package/dist-types/commands/ListEventIntegrationAssociationsCommand.d.ts +2 -1
- package/dist-types/commands/ListEventIntegrationsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDataIntegrationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateEventIntegrationCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +179 -179
- package/dist-types/ts3.4/AppIntegrations.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListApplicationAssociationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1554,9 +1554,6 @@ var paginateListEventIntegrationAssociations = (0, import_core.createPaginator)(
|
|
|
1554
1554
|
// src/pagination/ListEventIntegrationsPaginator.ts
|
|
1555
1555
|
|
|
1556
1556
|
var paginateListEventIntegrations = (0, import_core.createPaginator)(AppIntegrationsClient, ListEventIntegrationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1557
|
-
|
|
1558
|
-
// src/index.ts
|
|
1559
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
1560
1557
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1561
1558
|
|
|
1562
1559
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
|
@@ -85,6 +85,7 @@ export interface AppIntegrations {
|
|
|
85
85
|
/**
|
|
86
86
|
* @see {@link ListApplicationsCommand}
|
|
87
87
|
*/
|
|
88
|
+
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
88
89
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
89
90
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
90
91
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
@@ -97,6 +98,7 @@ export interface AppIntegrations {
|
|
|
97
98
|
/**
|
|
98
99
|
* @see {@link ListDataIntegrationsCommand}
|
|
99
100
|
*/
|
|
101
|
+
listDataIntegrations(): Promise<ListDataIntegrationsCommandOutput>;
|
|
100
102
|
listDataIntegrations(args: ListDataIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataIntegrationsCommandOutput>;
|
|
101
103
|
listDataIntegrations(args: ListDataIntegrationsCommandInput, cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void): void;
|
|
102
104
|
listDataIntegrations(args: ListDataIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void): void;
|
|
@@ -109,6 +111,7 @@ export interface AppIntegrations {
|
|
|
109
111
|
/**
|
|
110
112
|
* @see {@link ListEventIntegrationsCommand}
|
|
111
113
|
*/
|
|
114
|
+
listEventIntegrations(): Promise<ListEventIntegrationsCommandOutput>;
|
|
112
115
|
listEventIntegrations(args: ListEventIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventIntegrationsCommandOutput>;
|
|
113
116
|
listEventIntegrations(args: ListEventIntegrationsCommandInput, cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void): void;
|
|
114
117
|
listEventIntegrations(args: ListEventIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void): void;
|
|
@@ -150,7 +153,6 @@ export interface AppIntegrations {
|
|
|
150
153
|
updateEventIntegration(args: UpdateEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEventIntegrationCommandOutput) => void): void;
|
|
151
154
|
}
|
|
152
155
|
/**
|
|
153
|
-
* @public
|
|
154
156
|
* <p>The Amazon AppIntegrations service enables you to configure and reuse connections to external
|
|
155
157
|
* applications.</p>
|
|
156
158
|
* <p>For information about how you can use external applications with Amazon Connect, see
|
|
@@ -158,6 +160,7 @@ export interface AppIntegrations {
|
|
|
158
160
|
* integrations</a> and <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-wisdom.html">Deliver information to agents
|
|
159
161
|
* using Amazon Connect Wisdom</a> in the <i>Amazon Connect Administrator
|
|
160
162
|
* Guide</i>.</p>
|
|
163
|
+
* @public
|
|
161
164
|
*/
|
|
162
165
|
export declare class AppIntegrations extends AppIntegrationsClient implements AppIntegrations {
|
|
163
166
|
}
|
|
@@ -172,7 +172,6 @@ export type AppIntegrationsClientResolvedConfigType = __SmithyResolvedConfigurat
|
|
|
172
172
|
export interface AppIntegrationsClientResolvedConfig extends AppIntegrationsClientResolvedConfigType {
|
|
173
173
|
}
|
|
174
174
|
/**
|
|
175
|
-
* @public
|
|
176
175
|
* <p>The Amazon AppIntegrations service enables you to configure and reuse connections to external
|
|
177
176
|
* applications.</p>
|
|
178
177
|
* <p>For information about how you can use external applications with Amazon Connect, see
|
|
@@ -180,6 +179,7 @@ export interface AppIntegrationsClientResolvedConfig extends AppIntegrationsClie
|
|
|
180
179
|
* integrations</a> and <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-wisdom.html">Deliver information to agents
|
|
181
180
|
* using Amazon Connect Wisdom</a> in the <i>Amazon Connect Administrator
|
|
182
181
|
* Guide</i>.</p>
|
|
182
|
+
* @public
|
|
183
183
|
*/
|
|
184
184
|
export declare class AppIntegrationsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AppIntegrationsClientResolvedConfig> {
|
|
185
185
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateApplicationCommand_base: {
|
|
24
24
|
new (input: CreateApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateApplicationCommandInput, CreateApplicationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateApplicationCommandInput, CreateApplicationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This API is in preview release and subject to change.</p>
|
|
30
30
|
* <p>Creates and persists an Application resource.</p>
|
|
31
31
|
* @example
|
|
@@ -106,6 +106,7 @@ declare const CreateApplicationCommand_base: {
|
|
|
106
106
|
* @throws {@link AppIntegrationsServiceException}
|
|
107
107
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
108
108
|
*
|
|
109
|
+
* @public
|
|
109
110
|
* @example To create an application
|
|
110
111
|
* ```javascript
|
|
111
112
|
* // The following creates an application named My Application with access url https://example.com.
|
|
@@ -22,10 +22,10 @@ export interface CreateDataIntegrationCommandOutput extends CreateDataIntegratio
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateDataIntegrationCommand_base: {
|
|
24
24
|
new (input: CreateDataIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateDataIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates and persists a DataIntegration resource.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>You cannot create a DataIntegration association for a DataIntegration that has been
|
|
@@ -136,6 +136,7 @@ declare const CreateDataIntegrationCommand_base: {
|
|
|
136
136
|
* @throws {@link AppIntegrationsServiceException}
|
|
137
137
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
138
138
|
*
|
|
139
|
+
* @public
|
|
139
140
|
*/
|
|
140
141
|
export declare class CreateDataIntegrationCommand extends CreateDataIntegrationCommand_base {
|
|
141
142
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateEventIntegrationCommandOutput extends CreateEventIntegrat
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateEventIntegrationCommand_base: {
|
|
24
24
|
new (input: CreateEventIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateEventIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates an EventIntegration, given a specified name, description, and a reference to an
|
|
30
30
|
* Amazon EventBridge bus in your account and a partner event source that pushes events to
|
|
31
31
|
* that bus. No objects are created in the your account, only metadata that is persisted on the
|
|
@@ -83,6 +83,7 @@ declare const CreateEventIntegrationCommand_base: {
|
|
|
83
83
|
* @throws {@link AppIntegrationsServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class CreateEventIntegrationCommand extends CreateEventIntegrationCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteApplicationCommand_base: {
|
|
24
24
|
new (input: DeleteApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the Application. Only Applications that don't have any Application Associations can be deleted.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -66,6 +66,7 @@ declare const DeleteApplicationCommand_base: {
|
|
|
66
66
|
* @throws {@link AppIntegrationsServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
* @example To delete an application
|
|
70
71
|
* ```javascript
|
|
71
72
|
* // The following deletes an application.
|
|
@@ -22,10 +22,10 @@ export interface DeleteDataIntegrationCommandOutput extends DeleteDataIntegratio
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteDataIntegrationCommand_base: {
|
|
24
24
|
new (input: DeleteDataIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteDataIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the DataIntegration. Only DataIntegrations that don't have any
|
|
30
30
|
* DataIntegrationAssociations can be deleted. Deleting a DataIntegration also deletes the
|
|
31
31
|
* underlying Amazon AppFlow flow and service linked role. </p>
|
|
@@ -73,6 +73,7 @@ declare const DeleteDataIntegrationCommand_base: {
|
|
|
73
73
|
* @throws {@link AppIntegrationsServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class DeleteDataIntegrationCommand extends DeleteDataIntegrationCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteEventIntegrationCommandOutput extends DeleteEventIntegrat
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteEventIntegrationCommand_base: {
|
|
24
24
|
new (input: DeleteEventIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteEventIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified existing event integration. If the event integration is associated
|
|
30
30
|
* with clients, the request is rejected.</p>
|
|
31
31
|
* @example
|
|
@@ -67,6 +67,7 @@ declare const DeleteEventIntegrationCommand_base: {
|
|
|
67
67
|
* @throws {@link AppIntegrationsServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class DeleteEventIntegrationCommand extends DeleteEventIntegrationCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetApplicationCommand_base: {
|
|
24
24
|
new (input: GetApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<GetApplicationCommandInput, GetApplicationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<GetApplicationCommandInput, GetApplicationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This API is in preview release and subject to change.</p>
|
|
30
30
|
* <p>Get an Application resource.</p>
|
|
31
31
|
* @example
|
|
@@ -102,6 +102,7 @@ declare const GetApplicationCommand_base: {
|
|
|
102
102
|
* @throws {@link AppIntegrationsServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
104
104
|
*
|
|
105
|
+
* @public
|
|
105
106
|
* @example To get an application
|
|
106
107
|
* ```javascript
|
|
107
108
|
* // The following retrives an application.
|
|
@@ -22,10 +22,10 @@ export interface GetDataIntegrationCommandOutput extends GetDataIntegrationRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetDataIntegrationCommand_base: {
|
|
24
24
|
new (input: GetDataIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetDataIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about the DataIntegration.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
|
|
@@ -103,6 +103,7 @@ declare const GetDataIntegrationCommand_base: {
|
|
|
103
103
|
* @throws {@link AppIntegrationsServiceException}
|
|
104
104
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
105
105
|
*
|
|
106
|
+
* @public
|
|
106
107
|
*/
|
|
107
108
|
export declare class GetDataIntegrationCommand extends GetDataIntegrationCommand_base {
|
|
108
109
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetEventIntegrationCommandOutput extends GetEventIntegrationRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetEventIntegrationCommand_base: {
|
|
24
24
|
new (input: GetEventIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetEventIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns information about the event integration.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const GetEventIntegrationCommand_base: {
|
|
|
77
77
|
* @throws {@link AppIntegrationsServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class GetEventIntegrationCommand extends GetEventIntegrationCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListApplicationAssociationsCommandOutput extends ListApplicatio
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListApplicationAssociationsCommand_base: {
|
|
24
24
|
new (input: ListApplicationAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListApplicationAssociationsCommandInput, ListApplicationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListApplicationAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListApplicationAssociationsCommandInput, ListApplicationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a paginated list of application associations for an application.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const ListApplicationAssociationsCommand_base: {
|
|
|
77
77
|
* @throws {@link AppIntegrationsServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
* @example To list application associations of an application
|
|
81
82
|
* ```javascript
|
|
82
83
|
* // The following retrives application associations of an application
|
|
@@ -22,10 +22,10 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListApplicationsCommand_base: {
|
|
24
24
|
new (input: ListApplicationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListApplicationsCommandInput, ListApplicationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListApplicationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListApplicationsCommandInput, ListApplicationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This API is in preview release and subject to change.</p>
|
|
30
30
|
* <p>Lists applications in the account.</p>
|
|
31
31
|
* @example
|
|
@@ -77,6 +77,7 @@ declare const ListApplicationsCommand_base: {
|
|
|
77
77
|
* @throws {@link AppIntegrationsServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
* @example To list applications in the account
|
|
81
82
|
* ```javascript
|
|
82
83
|
* // The following lists application summary in the account.
|
|
@@ -22,10 +22,10 @@ export interface ListDataIntegrationAssociationsCommandOutput extends ListDataIn
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDataIntegrationAssociationsCommand_base: {
|
|
24
24
|
new (input: ListDataIntegrationAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListDataIntegrationAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a paginated list of DataIntegration associations in the account.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
|
|
@@ -82,6 +82,7 @@ declare const ListDataIntegrationAssociationsCommand_base: {
|
|
|
82
82
|
* @throws {@link AppIntegrationsServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class ListDataIntegrationAssociationsCommand extends ListDataIntegrationAssociationsCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListDataIntegrationsCommandOutput extends ListDataIntegrationsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDataIntegrationsCommand_base: {
|
|
24
24
|
new (input: ListDataIntegrationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListDataIntegrationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a paginated list of DataIntegrations in the account.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
|
|
@@ -78,6 +78,7 @@ declare const ListDataIntegrationsCommand_base: {
|
|
|
78
78
|
* @throws {@link AppIntegrationsServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class ListDataIntegrationsCommand extends ListDataIntegrationsCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListEventIntegrationAssociationsCommandOutput extends ListEvent
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListEventIntegrationAssociationsCommand_base: {
|
|
24
24
|
new (input: ListEventIntegrationAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListEventIntegrationAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a paginated list of event integration associations in the account. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const ListEventIntegrationAssociationsCommand_base: {
|
|
|
82
82
|
* @throws {@link AppIntegrationsServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class ListEventIntegrationAssociationsCommand extends ListEventIntegrationAssociationsCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListEventIntegrationsCommandOutput extends ListEventIntegration
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListEventIntegrationsCommand_base: {
|
|
24
24
|
new (input: ListEventIntegrationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEventIntegrationsCommandInput, ListEventIntegrationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListEventIntegrationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListEventIntegrationsCommandInput, ListEventIntegrationsCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a paginated list of event integrations in the account.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -80,6 +80,7 @@ declare const ListEventIntegrationsCommand_base: {
|
|
|
80
80
|
* @throws {@link AppIntegrationsServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class ListEventIntegrationsCommand extends ListEventIntegrationsCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the tags for the specified resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -67,6 +67,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
67
67
|
* @throws {@link AppIntegrationsServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds the specified tags to the specified resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -66,6 +66,7 @@ declare const TagResourceCommand_base: {
|
|
|
66
66
|
* @throws {@link AppIntegrationsServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
71
72
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes the specified tags from the specified resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -66,6 +66,7 @@ declare const UntagResourceCommand_base: {
|
|
|
66
66
|
* @throws {@link AppIntegrationsServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
71
72
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateApplicationCommand_base: {
|
|
24
24
|
new (input: UpdateApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This API is in preview release and subject to change.</p>
|
|
30
30
|
* <p>Updates and persists an Application resource.</p>
|
|
31
31
|
* @example
|
|
@@ -96,6 +96,7 @@ declare const UpdateApplicationCommand_base: {
|
|
|
96
96
|
* @throws {@link AppIntegrationsServiceException}
|
|
97
97
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
98
98
|
*
|
|
99
|
+
* @public
|
|
99
100
|
* @example To update an application
|
|
100
101
|
* ```javascript
|
|
101
102
|
* // The following updates an existing application named with a new name.
|
|
@@ -22,10 +22,10 @@ export interface UpdateDataIntegrationCommandOutput extends UpdateDataIntegratio
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateDataIntegrationCommand_base: {
|
|
24
24
|
new (input: UpdateDataIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateDataIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the description of a DataIntegration.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
|
|
@@ -73,6 +73,7 @@ declare const UpdateDataIntegrationCommand_base: {
|
|
|
73
73
|
* @throws {@link AppIntegrationsServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class UpdateDataIntegrationCommand extends UpdateDataIntegrationCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateEventIntegrationCommandOutput extends UpdateEventIntegrat
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateEventIntegrationCommand_base: {
|
|
24
24
|
new (input: UpdateEventIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateEventIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the description of an event integration.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -67,6 +67,7 @@ declare const UpdateEventIntegrationCommand_base: {
|
|
|
67
67
|
* @throws {@link AppIntegrationsServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from AppIntegrations service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class UpdateEventIntegrationCommand extends UpdateEventIntegrationCommand_base {
|
|
72
73
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -17,5 +17,4 @@ export { AppIntegrationsExtensionConfiguration } from "./extensionConfiguration"
|
|
|
17
17
|
export * from "./commands";
|
|
18
18
|
export * from "./pagination";
|
|
19
19
|
export * from "./models";
|
|
20
|
-
import "@aws-sdk/util-endpoints";
|
|
21
20
|
export { AppIntegrationsServiceException } from "./models/AppIntegrationsServiceException";
|