@aws-sdk/client-appintegrations 3.296.0 → 3.297.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.
@@ -16,6 +16,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
16
16
  import { UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput } from "./commands/UpdateDataIntegrationCommand";
17
17
  import { UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput } from "./commands/UpdateEventIntegrationCommand";
18
18
  /**
19
+ * @public
19
20
  * <p>The Amazon AppIntegrations service enables you to configure and reuse connections to external
20
21
  * applications.</p>
21
22
  * <p>For information about how you can use external applications with Amazon Connect, see
@@ -26,6 +27,7 @@ import { UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput
26
27
  */
27
28
  export declare class AppIntegrations extends AppIntegrationsClient {
28
29
  /**
30
+ * @public
29
31
  * <p>Creates and persists a DataIntegration resource.</p>
30
32
  * <note>
31
33
  * <p>You cannot create a DataIntegration association for a DataIntegration that has been
@@ -37,6 +39,7 @@ export declare class AppIntegrations extends AppIntegrationsClient {
37
39
  createDataIntegration(args: CreateDataIntegrationCommandInput, cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void): void;
38
40
  createDataIntegration(args: CreateDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void): void;
39
41
  /**
42
+ * @public
40
43
  * <p>Creates an EventIntegration, given a specified name, description, and a reference to an
41
44
  * Amazon EventBridge bus in your account and a partner event source that pushes events to
42
45
  * that bus. No objects are created in the your account, only metadata that is persisted on the
@@ -46,6 +49,7 @@ export declare class AppIntegrations extends AppIntegrationsClient {
46
49
  createEventIntegration(args: CreateEventIntegrationCommandInput, cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void): void;
47
50
  createEventIntegration(args: CreateEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEventIntegrationCommandOutput) => void): void;
48
51
  /**
52
+ * @public
49
53
  * <p>Deletes the DataIntegration. Only DataIntegrations that don't have any
50
54
  * DataIntegrationAssociations can be deleted. Deleting a DataIntegration also deletes the
51
55
  * underlying Amazon AppFlow flow and service linked role. </p>
@@ -59,6 +63,7 @@ export declare class AppIntegrations extends AppIntegrationsClient {
59
63
  deleteDataIntegration(args: DeleteDataIntegrationCommandInput, cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void): void;
60
64
  deleteDataIntegration(args: DeleteDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataIntegrationCommandOutput) => void): void;
61
65
  /**
66
+ * @public
62
67
  * <p>Deletes the specified existing event integration. If the event integration is associated
63
68
  * with clients, the request is rejected.</p>
64
69
  */
@@ -66,6 +71,7 @@ export declare class AppIntegrations extends AppIntegrationsClient {
66
71
  deleteEventIntegration(args: DeleteEventIntegrationCommandInput, cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void): void;
67
72
  deleteEventIntegration(args: DeleteEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEventIntegrationCommandOutput) => void): void;
68
73
  /**
74
+ * @public
69
75
  * <p>Returns information about the DataIntegration.</p>
70
76
  * <note>
71
77
  * <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
@@ -77,12 +83,14 @@ export declare class AppIntegrations extends AppIntegrationsClient {
77
83
  getDataIntegration(args: GetDataIntegrationCommandInput, cb: (err: any, data?: GetDataIntegrationCommandOutput) => void): void;
78
84
  getDataIntegration(args: GetDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataIntegrationCommandOutput) => void): void;
79
85
  /**
86
+ * @public
80
87
  * <p>Returns information about the event integration.</p>
81
88
  */
82
89
  getEventIntegration(args: GetEventIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<GetEventIntegrationCommandOutput>;
83
90
  getEventIntegration(args: GetEventIntegrationCommandInput, cb: (err: any, data?: GetEventIntegrationCommandOutput) => void): void;
84
91
  getEventIntegration(args: GetEventIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventIntegrationCommandOutput) => void): void;
85
92
  /**
93
+ * @public
86
94
  * <p>Returns a paginated list of DataIntegration associations in the account.</p>
87
95
  * <note>
88
96
  * <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
@@ -94,6 +102,7 @@ export declare class AppIntegrations extends AppIntegrationsClient {
94
102
  listDataIntegrationAssociations(args: ListDataIntegrationAssociationsCommandInput, cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void): void;
95
103
  listDataIntegrationAssociations(args: ListDataIntegrationAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataIntegrationAssociationsCommandOutput) => void): void;
96
104
  /**
105
+ * @public
97
106
  * <p>Returns a paginated list of DataIntegrations in the account.</p>
98
107
  * <note>
99
108
  * <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
@@ -105,36 +114,42 @@ export declare class AppIntegrations extends AppIntegrationsClient {
105
114
  listDataIntegrations(args: ListDataIntegrationsCommandInput, cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void): void;
106
115
  listDataIntegrations(args: ListDataIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataIntegrationsCommandOutput) => void): void;
107
116
  /**
117
+ * @public
108
118
  * <p>Returns a paginated list of event integration associations in the account. </p>
109
119
  */
110
120
  listEventIntegrationAssociations(args: ListEventIntegrationAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventIntegrationAssociationsCommandOutput>;
111
121
  listEventIntegrationAssociations(args: ListEventIntegrationAssociationsCommandInput, cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void): void;
112
122
  listEventIntegrationAssociations(args: ListEventIntegrationAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventIntegrationAssociationsCommandOutput) => void): void;
113
123
  /**
124
+ * @public
114
125
  * <p>Returns a paginated list of event integrations in the account.</p>
115
126
  */
116
127
  listEventIntegrations(args: ListEventIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventIntegrationsCommandOutput>;
117
128
  listEventIntegrations(args: ListEventIntegrationsCommandInput, cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void): void;
118
129
  listEventIntegrations(args: ListEventIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventIntegrationsCommandOutput) => void): void;
119
130
  /**
131
+ * @public
120
132
  * <p>Lists the tags for the specified resource.</p>
121
133
  */
122
134
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
123
135
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
124
136
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
125
137
  /**
138
+ * @public
126
139
  * <p>Adds the specified tags to the specified resource.</p>
127
140
  */
128
141
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
129
142
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
130
143
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
131
144
  /**
145
+ * @public
132
146
  * <p>Removes the specified tags from the specified resource.</p>
133
147
  */
134
148
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
135
149
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
136
150
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
137
151
  /**
152
+ * @public
138
153
  * <p>Updates the description of a DataIntegration.</p>
139
154
  * <note>
140
155
  * <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
@@ -146,6 +161,7 @@ export declare class AppIntegrations extends AppIntegrationsClient {
146
161
  updateDataIntegration(args: UpdateDataIntegrationCommandInput, cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void): void;
147
162
  updateDataIntegration(args: UpdateDataIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void): void;
148
163
  /**
164
+ * @public
149
165
  * <p>Updates the description of an event integration.</p>
150
166
  */
151
167
  updateEventIntegration(args: UpdateEventIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEventIntegrationCommandOutput>;
@@ -23,15 +23,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
23
23
  import { UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput } from "./commands/UpdateDataIntegrationCommand";
24
24
  import { UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput } from "./commands/UpdateEventIntegrationCommand";
25
25
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
26
+ /**
27
+ * @public
28
+ */
26
29
  export type ServiceInputTypes = CreateDataIntegrationCommandInput | CreateEventIntegrationCommandInput | DeleteDataIntegrationCommandInput | DeleteEventIntegrationCommandInput | GetDataIntegrationCommandInput | GetEventIntegrationCommandInput | ListDataIntegrationAssociationsCommandInput | ListDataIntegrationsCommandInput | ListEventIntegrationAssociationsCommandInput | ListEventIntegrationsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDataIntegrationCommandInput | UpdateEventIntegrationCommandInput;
30
+ /**
31
+ * @public
32
+ */
27
33
  export type ServiceOutputTypes = CreateDataIntegrationCommandOutput | CreateEventIntegrationCommandOutput | DeleteDataIntegrationCommandOutput | DeleteEventIntegrationCommandOutput | GetDataIntegrationCommandOutput | GetEventIntegrationCommandOutput | ListDataIntegrationAssociationsCommandOutput | ListDataIntegrationsCommandOutput | ListEventIntegrationAssociationsCommandOutput | ListEventIntegrationsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDataIntegrationCommandOutput | UpdateEventIntegrationCommandOutput;
34
+ /**
35
+ * @public
36
+ */
28
37
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
29
38
  /**
30
39
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
31
40
  */
32
41
  requestHandler?: __HttpHandler;
33
42
  /**
34
- * A constructor for a class implementing the {@link __Checksum} interface
43
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
35
44
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
36
45
  * @internal
37
46
  */
@@ -121,23 +130,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
121
130
  */
122
131
  logger?: __Logger;
123
132
  /**
124
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
133
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
125
134
  */
126
135
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
127
136
  }
137
+ /**
138
+ * @public
139
+ */
128
140
  type AppIntegrationsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
129
141
  /**
130
- * The configuration interface of AppIntegrationsClient class constructor that set the region, credentials and other options.
142
+ * @public
143
+ *
144
+ * The configuration interface of AppIntegrationsClient class constructor that set the region, credentials and other options.
131
145
  */
132
146
  export interface AppIntegrationsClientConfig extends AppIntegrationsClientConfigType {
133
147
  }
148
+ /**
149
+ * @public
150
+ */
134
151
  type AppIntegrationsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
135
152
  /**
136
- * The resolved configuration interface of AppIntegrationsClient class. This is resolved and normalized from the {@link AppIntegrationsClientConfig | constructor configuration interface}.
153
+ * @public
154
+ *
155
+ * The resolved configuration interface of AppIntegrationsClient class. This is resolved and normalized from the {@link AppIntegrationsClientConfig | constructor configuration interface}.
137
156
  */
138
157
  export interface AppIntegrationsClientResolvedConfig extends AppIntegrationsClientResolvedConfigType {
139
158
  }
140
159
  /**
160
+ * @public
141
161
  * <p>The Amazon AppIntegrations service enables you to configure and reuse connections to external
142
162
  * applications.</p>
143
163
  * <p>For information about how you can use external applications with Amazon Connect, see
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
5
5
  import { CreateDataIntegrationRequest, CreateDataIntegrationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateDataIntegrationCommand}.
8
10
  */
9
11
  export interface CreateDataIntegrationCommandInput extends CreateDataIntegrationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateDataIntegrationCommand}.
13
17
  */
14
18
  export interface CreateDataIntegrationCommandOutput extends CreateDataIntegrationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates and persists a DataIntegration resource.</p>
18
23
  * <note>
19
24
  * <p>You cannot create a DataIntegration association for a DataIntegration that has been
@@ -30,6 +35,8 @@ export interface CreateDataIntegrationCommandOutput extends CreateDataIntegratio
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param CreateDataIntegrationCommandInput - {@link CreateDataIntegrationCommandInput}
39
+ * @returns {@link CreateDataIntegrationCommandOutput}
33
40
  * @see {@link CreateDataIntegrationCommandInput} for command's `input` shape.
34
41
  * @see {@link CreateDataIntegrationCommandOutput} for command's `response` shape.
35
42
  * @see {@link AppIntegrationsClientResolvedConfig | config} for AppIntegrationsClient's `config` shape.
@@ -57,11 +64,20 @@ export interface CreateDataIntegrationCommandOutput extends CreateDataIntegratio
57
64
  export declare class CreateDataIntegrationCommand extends $Command<CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
58
65
  readonly input: CreateDataIntegrationCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: CreateDataIntegrationCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
5
5
  import { CreateEventIntegrationRequest, CreateEventIntegrationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateEventIntegrationCommand}.
8
10
  */
9
11
  export interface CreateEventIntegrationCommandInput extends CreateEventIntegrationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateEventIntegrationCommand}.
13
17
  */
14
18
  export interface CreateEventIntegrationCommandOutput extends CreateEventIntegrationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates an EventIntegration, given a specified name, description, and a reference to an
18
23
  * Amazon EventBridge bus in your account and a partner event source that pushes events to
19
24
  * that bus. No objects are created in the your account, only metadata that is persisted on the
@@ -28,6 +33,8 @@ export interface CreateEventIntegrationCommandOutput extends CreateEventIntegrat
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param CreateEventIntegrationCommandInput - {@link CreateEventIntegrationCommandInput}
37
+ * @returns {@link CreateEventIntegrationCommandOutput}
31
38
  * @see {@link CreateEventIntegrationCommandInput} for command's `input` shape.
32
39
  * @see {@link CreateEventIntegrationCommandOutput} for command's `response` shape.
33
40
  * @see {@link AppIntegrationsClientResolvedConfig | config} for AppIntegrationsClient's `config` shape.
@@ -55,11 +62,20 @@ export interface CreateEventIntegrationCommandOutput extends CreateEventIntegrat
55
62
  export declare class CreateEventIntegrationCommand extends $Command<CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
56
63
  readonly input: CreateEventIntegrationCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: CreateEventIntegrationCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
5
5
  import { DeleteDataIntegrationRequest, DeleteDataIntegrationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteDataIntegrationCommand}.
8
10
  */
9
11
  export interface DeleteDataIntegrationCommandInput extends DeleteDataIntegrationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteDataIntegrationCommand}.
13
17
  */
14
18
  export interface DeleteDataIntegrationCommandOutput extends DeleteDataIntegrationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the DataIntegration. Only DataIntegrations that don't have any
18
23
  * DataIntegrationAssociations can be deleted. Deleting a DataIntegration also deletes the
19
24
  * underlying Amazon AppFlow flow and service linked role. </p>
@@ -32,6 +37,8 @@ export interface DeleteDataIntegrationCommandOutput extends DeleteDataIntegratio
32
37
  * const response = await client.send(command);
33
38
  * ```
34
39
  *
40
+ * @param DeleteDataIntegrationCommandInput - {@link DeleteDataIntegrationCommandInput}
41
+ * @returns {@link DeleteDataIntegrationCommandOutput}
35
42
  * @see {@link DeleteDataIntegrationCommandInput} for command's `input` shape.
36
43
  * @see {@link DeleteDataIntegrationCommandOutput} for command's `response` shape.
37
44
  * @see {@link AppIntegrationsClientResolvedConfig | config} for AppIntegrationsClient's `config` shape.
@@ -56,11 +63,20 @@ export interface DeleteDataIntegrationCommandOutput extends DeleteDataIntegratio
56
63
  export declare class DeleteDataIntegrationCommand extends $Command<DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
57
64
  readonly input: DeleteDataIntegrationCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: DeleteDataIntegrationCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataIntegrationCommandInput, DeleteDataIntegrationCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
5
5
  import { DeleteEventIntegrationRequest, DeleteEventIntegrationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteEventIntegrationCommand}.
8
10
  */
9
11
  export interface DeleteEventIntegrationCommandInput extends DeleteEventIntegrationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteEventIntegrationCommand}.
13
17
  */
14
18
  export interface DeleteEventIntegrationCommandOutput extends DeleteEventIntegrationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the specified existing event integration. If the event integration is associated
18
23
  * with clients, the request is rejected.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DeleteEventIntegrationCommandOutput extends DeleteEventIntegrat
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DeleteEventIntegrationCommandInput - {@link DeleteEventIntegrationCommandInput}
35
+ * @returns {@link DeleteEventIntegrationCommandOutput}
29
36
  * @see {@link DeleteEventIntegrationCommandInput} for command's `input` shape.
30
37
  * @see {@link DeleteEventIntegrationCommandOutput} for command's `response` shape.
31
38
  * @see {@link AppIntegrationsClientResolvedConfig | config} for AppIntegrationsClient's `config` shape.
@@ -50,11 +57,20 @@ export interface DeleteEventIntegrationCommandOutput extends DeleteEventIntegrat
50
57
  export declare class DeleteEventIntegrationCommand extends $Command<DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
51
58
  readonly input: DeleteEventIntegrationCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: DeleteEventIntegrationCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEventIntegrationCommandInput, DeleteEventIntegrationCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
5
5
  import { GetDataIntegrationRequest, GetDataIntegrationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetDataIntegrationCommand}.
8
10
  */
9
11
  export interface GetDataIntegrationCommandInput extends GetDataIntegrationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetDataIntegrationCommand}.
13
17
  */
14
18
  export interface GetDataIntegrationCommandOutput extends GetDataIntegrationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about the DataIntegration.</p>
18
23
  * <note>
19
24
  * <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
@@ -30,6 +35,8 @@ export interface GetDataIntegrationCommandOutput extends GetDataIntegrationRespo
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param GetDataIntegrationCommandInput - {@link GetDataIntegrationCommandInput}
39
+ * @returns {@link GetDataIntegrationCommandOutput}
33
40
  * @see {@link GetDataIntegrationCommandInput} for command's `input` shape.
34
41
  * @see {@link GetDataIntegrationCommandOutput} for command's `response` shape.
35
42
  * @see {@link AppIntegrationsClientResolvedConfig | config} for AppIntegrationsClient's `config` shape.
@@ -54,11 +61,20 @@ export interface GetDataIntegrationCommandOutput extends GetDataIntegrationRespo
54
61
  export declare class GetDataIntegrationCommand extends $Command<GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
55
62
  readonly input: GetDataIntegrationCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: GetDataIntegrationCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataIntegrationCommandInput, GetDataIntegrationCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
5
5
  import { GetEventIntegrationRequest, GetEventIntegrationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetEventIntegrationCommand}.
8
10
  */
9
11
  export interface GetEventIntegrationCommandInput extends GetEventIntegrationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetEventIntegrationCommand}.
13
17
  */
14
18
  export interface GetEventIntegrationCommandOutput extends GetEventIntegrationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about the event integration.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetEventIntegrationCommandOutput extends GetEventIntegrationRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetEventIntegrationCommandInput - {@link GetEventIntegrationCommandInput}
34
+ * @returns {@link GetEventIntegrationCommandOutput}
28
35
  * @see {@link GetEventIntegrationCommandInput} for command's `input` shape.
29
36
  * @see {@link GetEventIntegrationCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppIntegrationsClientResolvedConfig | config} for AppIntegrationsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetEventIntegrationCommandOutput extends GetEventIntegrationRes
49
56
  export declare class GetEventIntegrationCommand extends $Command<GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
50
57
  readonly input: GetEventIntegrationCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetEventIntegrationCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEventIntegrationCommandInput, GetEventIntegrationCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
5
5
  import { ListDataIntegrationAssociationsRequest, ListDataIntegrationAssociationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDataIntegrationAssociationsCommand}.
8
10
  */
9
11
  export interface ListDataIntegrationAssociationsCommandInput extends ListDataIntegrationAssociationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDataIntegrationAssociationsCommand}.
13
17
  */
14
18
  export interface ListDataIntegrationAssociationsCommandOutput extends ListDataIntegrationAssociationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a paginated list of DataIntegration associations in the account.</p>
18
23
  * <note>
19
24
  * <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
@@ -30,6 +35,8 @@ export interface ListDataIntegrationAssociationsCommandOutput extends ListDataIn
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param ListDataIntegrationAssociationsCommandInput - {@link ListDataIntegrationAssociationsCommandInput}
39
+ * @returns {@link ListDataIntegrationAssociationsCommandOutput}
33
40
  * @see {@link ListDataIntegrationAssociationsCommandInput} for command's `input` shape.
34
41
  * @see {@link ListDataIntegrationAssociationsCommandOutput} for command's `response` shape.
35
42
  * @see {@link AppIntegrationsClientResolvedConfig | config} for AppIntegrationsClient's `config` shape.
@@ -54,11 +61,20 @@ export interface ListDataIntegrationAssociationsCommandOutput extends ListDataIn
54
61
  export declare class ListDataIntegrationAssociationsCommand extends $Command<ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig> {
55
62
  readonly input: ListDataIntegrationAssociationsCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: ListDataIntegrationAssociationsCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataIntegrationAssociationsCommandInput, ListDataIntegrationAssociationsCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
5
5
  import { ListDataIntegrationsRequest, ListDataIntegrationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDataIntegrationsCommand}.
8
10
  */
9
11
  export interface ListDataIntegrationsCommandInput extends ListDataIntegrationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDataIntegrationsCommand}.
13
17
  */
14
18
  export interface ListDataIntegrationsCommandOutput extends ListDataIntegrationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a paginated list of DataIntegrations in the account.</p>
18
23
  * <note>
19
24
  * <p>You cannot create a DataIntegration association for a DataIntegration that has been previously associated.
@@ -30,6 +35,8 @@ export interface ListDataIntegrationsCommandOutput extends ListDataIntegrationsR
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param ListDataIntegrationsCommandInput - {@link ListDataIntegrationsCommandInput}
39
+ * @returns {@link ListDataIntegrationsCommandOutput}
33
40
  * @see {@link ListDataIntegrationsCommandInput} for command's `input` shape.
34
41
  * @see {@link ListDataIntegrationsCommandOutput} for command's `response` shape.
35
42
  * @see {@link AppIntegrationsClientResolvedConfig | config} for AppIntegrationsClient's `config` shape.
@@ -51,11 +58,20 @@ export interface ListDataIntegrationsCommandOutput extends ListDataIntegrationsR
51
58
  export declare class ListDataIntegrationsCommand extends $Command<ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput, AppIntegrationsClientResolvedConfig> {
52
59
  readonly input: ListDataIntegrationsCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: ListDataIntegrationsCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataIntegrationsCommandInput, ListDataIntegrationsCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
5
5
  import { ListEventIntegrationAssociationsRequest, ListEventIntegrationAssociationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListEventIntegrationAssociationsCommand}.
8
10
  */
9
11
  export interface ListEventIntegrationAssociationsCommandInput extends ListEventIntegrationAssociationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListEventIntegrationAssociationsCommand}.
13
17
  */
14
18
  export interface ListEventIntegrationAssociationsCommandOutput extends ListEventIntegrationAssociationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a paginated list of event integration associations in the account. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListEventIntegrationAssociationsCommandOutput extends ListEvent
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListEventIntegrationAssociationsCommandInput - {@link ListEventIntegrationAssociationsCommandInput}
34
+ * @returns {@link ListEventIntegrationAssociationsCommandOutput}
28
35
  * @see {@link ListEventIntegrationAssociationsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListEventIntegrationAssociationsCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppIntegrationsClientResolvedConfig | config} for AppIntegrationsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListEventIntegrationAssociationsCommandOutput extends ListEvent
49
56
  export declare class ListEventIntegrationAssociationsCommand extends $Command<ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput, AppIntegrationsClientResolvedConfig> {
50
57
  readonly input: ListEventIntegrationAssociationsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListEventIntegrationAssociationsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppIntegrationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEventIntegrationAssociationsCommandInput, ListEventIntegrationAssociationsCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }