@aws-sdk/client-dataexchange 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.
Files changed (40) hide show
  1. package/dist-types/DataExchange.d.ts +30 -0
  2. package/dist-types/DataExchangeClient.d.ts +24 -4
  3. package/dist-types/commands/CancelJobCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateDataSetCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateEventActionCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateJobCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateRevisionCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteAssetCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteDataSetCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteEventActionCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteRevisionCommand.d.ts +16 -0
  12. package/dist-types/commands/GetAssetCommand.d.ts +16 -0
  13. package/dist-types/commands/GetDataSetCommand.d.ts +16 -0
  14. package/dist-types/commands/GetEventActionCommand.d.ts +16 -0
  15. package/dist-types/commands/GetJobCommand.d.ts +16 -0
  16. package/dist-types/commands/GetRevisionCommand.d.ts +16 -0
  17. package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListDataSetsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListEventActionsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListJobsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListRevisionAssetsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  23. package/dist-types/commands/RevokeRevisionCommand.d.ts +16 -0
  24. package/dist-types/commands/SendApiAssetCommand.d.ts +16 -0
  25. package/dist-types/commands/StartJobCommand.d.ts +16 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateAssetCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateDataSetCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateEventActionCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateRevisionCommand.d.ts +16 -0
  32. package/dist-types/models/DataExchangeServiceException.d.ts +2 -0
  33. package/dist-types/models/models_0.d.ts +267 -1
  34. package/dist-types/pagination/Interfaces.d.ts +3 -0
  35. package/dist-types/pagination/ListDataSetRevisionsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListDataSetsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListEventActionsPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListRevisionAssetsPaginator.d.ts +3 -0
  40. package/package.json +3 -3
@@ -30,6 +30,7 @@ import { UpdateEventActionCommandInput, UpdateEventActionCommandOutput } from ".
30
30
  import { UpdateRevisionCommandInput, UpdateRevisionCommandOutput } from "./commands/UpdateRevisionCommand";
31
31
  import { DataExchangeClient } from "./DataExchangeClient";
32
32
  /**
33
+ * @public
33
34
  * <p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p>
34
35
  * <p>As a subscriber, you can view and access the data sets that you have an entitlement to through
35
36
  * a subscription. You can use the APIs to download or copy your entitled data sets to Amazon
@@ -49,174 +50,203 @@ import { DataExchangeClient } from "./DataExchangeClient";
49
50
  */
50
51
  export declare class DataExchange extends DataExchangeClient {
51
52
  /**
53
+ * @public
52
54
  * <p>This operation cancels a job. Jobs can be cancelled only when they are in the WAITING state.</p>
53
55
  */
54
56
  cancelJob(args: CancelJobCommandInput, options?: __HttpHandlerOptions): Promise<CancelJobCommandOutput>;
55
57
  cancelJob(args: CancelJobCommandInput, cb: (err: any, data?: CancelJobCommandOutput) => void): void;
56
58
  cancelJob(args: CancelJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelJobCommandOutput) => void): void;
57
59
  /**
60
+ * @public
58
61
  * <p>This operation creates a data set.</p>
59
62
  */
60
63
  createDataSet(args: CreateDataSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataSetCommandOutput>;
61
64
  createDataSet(args: CreateDataSetCommandInput, cb: (err: any, data?: CreateDataSetCommandOutput) => void): void;
62
65
  createDataSet(args: CreateDataSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataSetCommandOutput) => void): void;
63
66
  /**
67
+ * @public
64
68
  * <p>This operation creates an event action.</p>
65
69
  */
66
70
  createEventAction(args: CreateEventActionCommandInput, options?: __HttpHandlerOptions): Promise<CreateEventActionCommandOutput>;
67
71
  createEventAction(args: CreateEventActionCommandInput, cb: (err: any, data?: CreateEventActionCommandOutput) => void): void;
68
72
  createEventAction(args: CreateEventActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEventActionCommandOutput) => void): void;
69
73
  /**
74
+ * @public
70
75
  * <p>This operation creates a job.</p>
71
76
  */
72
77
  createJob(args: CreateJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateJobCommandOutput>;
73
78
  createJob(args: CreateJobCommandInput, cb: (err: any, data?: CreateJobCommandOutput) => void): void;
74
79
  createJob(args: CreateJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateJobCommandOutput) => void): void;
75
80
  /**
81
+ * @public
76
82
  * <p>This operation creates a revision for a data set.</p>
77
83
  */
78
84
  createRevision(args: CreateRevisionCommandInput, options?: __HttpHandlerOptions): Promise<CreateRevisionCommandOutput>;
79
85
  createRevision(args: CreateRevisionCommandInput, cb: (err: any, data?: CreateRevisionCommandOutput) => void): void;
80
86
  createRevision(args: CreateRevisionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRevisionCommandOutput) => void): void;
81
87
  /**
88
+ * @public
82
89
  * <p>This operation deletes an asset.</p>
83
90
  */
84
91
  deleteAsset(args: DeleteAssetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssetCommandOutput>;
85
92
  deleteAsset(args: DeleteAssetCommandInput, cb: (err: any, data?: DeleteAssetCommandOutput) => void): void;
86
93
  deleteAsset(args: DeleteAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssetCommandOutput) => void): void;
87
94
  /**
95
+ * @public
88
96
  * <p>This operation deletes a data set.</p>
89
97
  */
90
98
  deleteDataSet(args: DeleteDataSetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataSetCommandOutput>;
91
99
  deleteDataSet(args: DeleteDataSetCommandInput, cb: (err: any, data?: DeleteDataSetCommandOutput) => void): void;
92
100
  deleteDataSet(args: DeleteDataSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataSetCommandOutput) => void): void;
93
101
  /**
102
+ * @public
94
103
  * <p>This operation deletes the event action.</p>
95
104
  */
96
105
  deleteEventAction(args: DeleteEventActionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEventActionCommandOutput>;
97
106
  deleteEventAction(args: DeleteEventActionCommandInput, cb: (err: any, data?: DeleteEventActionCommandOutput) => void): void;
98
107
  deleteEventAction(args: DeleteEventActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEventActionCommandOutput) => void): void;
99
108
  /**
109
+ * @public
100
110
  * <p>This operation deletes a revision.</p>
101
111
  */
102
112
  deleteRevision(args: DeleteRevisionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRevisionCommandOutput>;
103
113
  deleteRevision(args: DeleteRevisionCommandInput, cb: (err: any, data?: DeleteRevisionCommandOutput) => void): void;
104
114
  deleteRevision(args: DeleteRevisionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRevisionCommandOutput) => void): void;
105
115
  /**
116
+ * @public
106
117
  * <p>This operation returns information about an asset.</p>
107
118
  */
108
119
  getAsset(args: GetAssetCommandInput, options?: __HttpHandlerOptions): Promise<GetAssetCommandOutput>;
109
120
  getAsset(args: GetAssetCommandInput, cb: (err: any, data?: GetAssetCommandOutput) => void): void;
110
121
  getAsset(args: GetAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssetCommandOutput) => void): void;
111
122
  /**
123
+ * @public
112
124
  * <p>This operation returns information about a data set.</p>
113
125
  */
114
126
  getDataSet(args: GetDataSetCommandInput, options?: __HttpHandlerOptions): Promise<GetDataSetCommandOutput>;
115
127
  getDataSet(args: GetDataSetCommandInput, cb: (err: any, data?: GetDataSetCommandOutput) => void): void;
116
128
  getDataSet(args: GetDataSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataSetCommandOutput) => void): void;
117
129
  /**
130
+ * @public
118
131
  * <p>This operation retrieves information about an event action.</p>
119
132
  */
120
133
  getEventAction(args: GetEventActionCommandInput, options?: __HttpHandlerOptions): Promise<GetEventActionCommandOutput>;
121
134
  getEventAction(args: GetEventActionCommandInput, cb: (err: any, data?: GetEventActionCommandOutput) => void): void;
122
135
  getEventAction(args: GetEventActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventActionCommandOutput) => void): void;
123
136
  /**
137
+ * @public
124
138
  * <p>This operation returns information about a job.</p>
125
139
  */
126
140
  getJob(args: GetJobCommandInput, options?: __HttpHandlerOptions): Promise<GetJobCommandOutput>;
127
141
  getJob(args: GetJobCommandInput, cb: (err: any, data?: GetJobCommandOutput) => void): void;
128
142
  getJob(args: GetJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobCommandOutput) => void): void;
129
143
  /**
144
+ * @public
130
145
  * <p>This operation returns information about a revision.</p>
131
146
  */
132
147
  getRevision(args: GetRevisionCommandInput, options?: __HttpHandlerOptions): Promise<GetRevisionCommandOutput>;
133
148
  getRevision(args: GetRevisionCommandInput, cb: (err: any, data?: GetRevisionCommandOutput) => void): void;
134
149
  getRevision(args: GetRevisionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRevisionCommandOutput) => void): void;
135
150
  /**
151
+ * @public
136
152
  * <p>This operation lists a data set's revisions sorted by CreatedAt in descending order.</p>
137
153
  */
138
154
  listDataSetRevisions(args: ListDataSetRevisionsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataSetRevisionsCommandOutput>;
139
155
  listDataSetRevisions(args: ListDataSetRevisionsCommandInput, cb: (err: any, data?: ListDataSetRevisionsCommandOutput) => void): void;
140
156
  listDataSetRevisions(args: ListDataSetRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataSetRevisionsCommandOutput) => void): void;
141
157
  /**
158
+ * @public
142
159
  * <p>This operation lists your data sets. When listing by origin OWNED, results are sorted by CreatedAt in descending order. When listing by origin ENTITLED, there is no order and the maxResults parameter is ignored.</p>
143
160
  */
144
161
  listDataSets(args: ListDataSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataSetsCommandOutput>;
145
162
  listDataSets(args: ListDataSetsCommandInput, cb: (err: any, data?: ListDataSetsCommandOutput) => void): void;
146
163
  listDataSets(args: ListDataSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataSetsCommandOutput) => void): void;
147
164
  /**
165
+ * @public
148
166
  * <p>This operation lists your event actions.</p>
149
167
  */
150
168
  listEventActions(args: ListEventActionsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventActionsCommandOutput>;
151
169
  listEventActions(args: ListEventActionsCommandInput, cb: (err: any, data?: ListEventActionsCommandOutput) => void): void;
152
170
  listEventActions(args: ListEventActionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventActionsCommandOutput) => void): void;
153
171
  /**
172
+ * @public
154
173
  * <p>This operation lists your jobs sorted by CreatedAt in descending order.</p>
155
174
  */
156
175
  listJobs(args: ListJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobsCommandOutput>;
157
176
  listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
158
177
  listJobs(args: ListJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
159
178
  /**
179
+ * @public
160
180
  * <p>This operation lists a revision's assets sorted alphabetically in descending order.</p>
161
181
  */
162
182
  listRevisionAssets(args: ListRevisionAssetsCommandInput, options?: __HttpHandlerOptions): Promise<ListRevisionAssetsCommandOutput>;
163
183
  listRevisionAssets(args: ListRevisionAssetsCommandInput, cb: (err: any, data?: ListRevisionAssetsCommandOutput) => void): void;
164
184
  listRevisionAssets(args: ListRevisionAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRevisionAssetsCommandOutput) => void): void;
165
185
  /**
186
+ * @public
166
187
  * <p>This operation lists the tags on the resource.</p>
167
188
  */
168
189
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
169
190
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
170
191
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
171
192
  /**
193
+ * @public
172
194
  * <p>This operation revokes subscribers' access to a revision.</p>
173
195
  */
174
196
  revokeRevision(args: RevokeRevisionCommandInput, options?: __HttpHandlerOptions): Promise<RevokeRevisionCommandOutput>;
175
197
  revokeRevision(args: RevokeRevisionCommandInput, cb: (err: any, data?: RevokeRevisionCommandOutput) => void): void;
176
198
  revokeRevision(args: RevokeRevisionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeRevisionCommandOutput) => void): void;
177
199
  /**
200
+ * @public
178
201
  * <p>This operation invokes an API Gateway API asset. The request is proxied to the provider’s API Gateway API.</p>
179
202
  */
180
203
  sendApiAsset(args: SendApiAssetCommandInput, options?: __HttpHandlerOptions): Promise<SendApiAssetCommandOutput>;
181
204
  sendApiAsset(args: SendApiAssetCommandInput, cb: (err: any, data?: SendApiAssetCommandOutput) => void): void;
182
205
  sendApiAsset(args: SendApiAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendApiAssetCommandOutput) => void): void;
183
206
  /**
207
+ * @public
184
208
  * <p>This operation starts a job.</p>
185
209
  */
186
210
  startJob(args: StartJobCommandInput, options?: __HttpHandlerOptions): Promise<StartJobCommandOutput>;
187
211
  startJob(args: StartJobCommandInput, cb: (err: any, data?: StartJobCommandOutput) => void): void;
188
212
  startJob(args: StartJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartJobCommandOutput) => void): void;
189
213
  /**
214
+ * @public
190
215
  * <p>This operation tags a resource.</p>
191
216
  */
192
217
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
193
218
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
194
219
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
195
220
  /**
221
+ * @public
196
222
  * <p>This operation removes one or more tags from a resource.</p>
197
223
  */
198
224
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
199
225
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
200
226
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
201
227
  /**
228
+ * @public
202
229
  * <p>This operation updates an asset.</p>
203
230
  */
204
231
  updateAsset(args: UpdateAssetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssetCommandOutput>;
205
232
  updateAsset(args: UpdateAssetCommandInput, cb: (err: any, data?: UpdateAssetCommandOutput) => void): void;
206
233
  updateAsset(args: UpdateAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssetCommandOutput) => void): void;
207
234
  /**
235
+ * @public
208
236
  * <p>This operation updates a data set.</p>
209
237
  */
210
238
  updateDataSet(args: UpdateDataSetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDataSetCommandOutput>;
211
239
  updateDataSet(args: UpdateDataSetCommandInput, cb: (err: any, data?: UpdateDataSetCommandOutput) => void): void;
212
240
  updateDataSet(args: UpdateDataSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataSetCommandOutput) => void): void;
213
241
  /**
242
+ * @public
214
243
  * <p>This operation updates the event action.</p>
215
244
  */
216
245
  updateEventAction(args: UpdateEventActionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEventActionCommandOutput>;
217
246
  updateEventAction(args: UpdateEventActionCommandInput, cb: (err: any, data?: UpdateEventActionCommandOutput) => void): void;
218
247
  updateEventAction(args: UpdateEventActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEventActionCommandOutput) => void): void;
219
248
  /**
249
+ * @public
220
250
  * <p>This operation updates a revision.</p>
221
251
  */
222
252
  updateRevision(args: UpdateRevisionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRevisionCommandOutput>;
@@ -37,15 +37,24 @@ import { UpdateDataSetCommandInput, UpdateDataSetCommandOutput } from "./command
37
37
  import { UpdateEventActionCommandInput, UpdateEventActionCommandOutput } from "./commands/UpdateEventActionCommand";
38
38
  import { UpdateRevisionCommandInput, UpdateRevisionCommandOutput } from "./commands/UpdateRevisionCommand";
39
39
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
40
+ /**
41
+ * @public
42
+ */
40
43
  export type ServiceInputTypes = CancelJobCommandInput | CreateDataSetCommandInput | CreateEventActionCommandInput | CreateJobCommandInput | CreateRevisionCommandInput | DeleteAssetCommandInput | DeleteDataSetCommandInput | DeleteEventActionCommandInput | DeleteRevisionCommandInput | GetAssetCommandInput | GetDataSetCommandInput | GetEventActionCommandInput | GetJobCommandInput | GetRevisionCommandInput | ListDataSetRevisionsCommandInput | ListDataSetsCommandInput | ListEventActionsCommandInput | ListJobsCommandInput | ListRevisionAssetsCommandInput | ListTagsForResourceCommandInput | RevokeRevisionCommandInput | SendApiAssetCommandInput | StartJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAssetCommandInput | UpdateDataSetCommandInput | UpdateEventActionCommandInput | UpdateRevisionCommandInput;
44
+ /**
45
+ * @public
46
+ */
41
47
  export type ServiceOutputTypes = CancelJobCommandOutput | CreateDataSetCommandOutput | CreateEventActionCommandOutput | CreateJobCommandOutput | CreateRevisionCommandOutput | DeleteAssetCommandOutput | DeleteDataSetCommandOutput | DeleteEventActionCommandOutput | DeleteRevisionCommandOutput | GetAssetCommandOutput | GetDataSetCommandOutput | GetEventActionCommandOutput | GetJobCommandOutput | GetRevisionCommandOutput | ListDataSetRevisionsCommandOutput | ListDataSetsCommandOutput | ListEventActionsCommandOutput | ListJobsCommandOutput | ListRevisionAssetsCommandOutput | ListTagsForResourceCommandOutput | RevokeRevisionCommandOutput | SendApiAssetCommandOutput | StartJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAssetCommandOutput | UpdateDataSetCommandOutput | UpdateEventActionCommandOutput | UpdateRevisionCommandOutput;
48
+ /**
49
+ * @public
50
+ */
42
51
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
43
52
  /**
44
53
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
45
54
  */
46
55
  requestHandler?: __HttpHandler;
47
56
  /**
48
- * A constructor for a class implementing the {@link __Checksum} interface
57
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
49
58
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
50
59
  * @internal
51
60
  */
@@ -135,23 +144,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
135
144
  */
136
145
  logger?: __Logger;
137
146
  /**
138
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
147
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
139
148
  */
140
149
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
141
150
  }
151
+ /**
152
+ * @public
153
+ */
142
154
  type DataExchangeClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
143
155
  /**
144
- * The configuration interface of DataExchangeClient class constructor that set the region, credentials and other options.
156
+ * @public
157
+ *
158
+ * The configuration interface of DataExchangeClient class constructor that set the region, credentials and other options.
145
159
  */
146
160
  export interface DataExchangeClientConfig extends DataExchangeClientConfigType {
147
161
  }
162
+ /**
163
+ * @public
164
+ */
148
165
  type DataExchangeClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
149
166
  /**
150
- * The resolved configuration interface of DataExchangeClient class. This is resolved and normalized from the {@link DataExchangeClientConfig | constructor configuration interface}.
167
+ * @public
168
+ *
169
+ * The resolved configuration interface of DataExchangeClient class. This is resolved and normalized from the {@link DataExchangeClientConfig | constructor configuration interface}.
151
170
  */
152
171
  export interface DataExchangeClientResolvedConfig extends DataExchangeClientResolvedConfigType {
153
172
  }
154
173
  /**
174
+ * @public
155
175
  * <p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p>
156
176
  * <p>As a subscriber, you can view and access the data sets that you have an entitlement to through
157
177
  * a subscription. You can use the APIs to download or copy your entitled data sets to Amazon
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { CancelJobRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CancelJobCommand}.
8
10
  */
9
11
  export interface CancelJobCommandInput extends CancelJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CancelJobCommand}.
13
17
  */
14
18
  export interface CancelJobCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation cancels a job. Jobs can be cancelled only when they are in the WAITING state.</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 CancelJobCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CancelJobCommandInput - {@link CancelJobCommandInput}
34
+ * @returns {@link CancelJobCommandOutput}
28
35
  * @see {@link CancelJobCommandInput} for command's `input` shape.
29
36
  * @see {@link CancelJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -49,11 +56,20 @@ export interface CancelJobCommandOutput extends __MetadataBearer {
49
56
  export declare class CancelJobCommand extends $Command<CancelJobCommandInput, CancelJobCommandOutput, DataExchangeClientResolvedConfig> {
50
57
  readonly input: CancelJobCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: CancelJobCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelJobCommandInput, CancelJobCommandOutput>;
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 { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { CreateDataSetRequest, CreateDataSetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateDataSetCommand}.
8
10
  */
9
11
  export interface CreateDataSetCommandInput extends CreateDataSetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateDataSetCommand}.
13
17
  */
14
18
  export interface CreateDataSetCommandOutput extends CreateDataSetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation creates a data set.</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 CreateDataSetCommandOutput extends CreateDataSetResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateDataSetCommandInput - {@link CreateDataSetCommandInput}
34
+ * @returns {@link CreateDataSetCommandOutput}
28
35
  * @see {@link CreateDataSetCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateDataSetCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -49,11 +56,20 @@ export interface CreateDataSetCommandOutput extends CreateDataSetResponse, __Met
49
56
  export declare class CreateDataSetCommand extends $Command<CreateDataSetCommandInput, CreateDataSetCommandOutput, DataExchangeClientResolvedConfig> {
50
57
  readonly input: CreateDataSetCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: CreateDataSetCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataSetCommandInput, CreateDataSetCommandOutput>;
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 { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { CreateEventActionRequest, CreateEventActionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateEventActionCommand}.
8
10
  */
9
11
  export interface CreateEventActionCommandInput extends CreateEventActionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateEventActionCommand}.
13
17
  */
14
18
  export interface CreateEventActionCommandOutput extends CreateEventActionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation creates an event action.</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 CreateEventActionCommandOutput extends CreateEventActionRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateEventActionCommandInput - {@link CreateEventActionCommandInput}
34
+ * @returns {@link CreateEventActionCommandOutput}
28
35
  * @see {@link CreateEventActionCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateEventActionCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -49,11 +56,20 @@ export interface CreateEventActionCommandOutput extends CreateEventActionRespons
49
56
  export declare class CreateEventActionCommand extends $Command<CreateEventActionCommandInput, CreateEventActionCommandOutput, DataExchangeClientResolvedConfig> {
50
57
  readonly input: CreateEventActionCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: CreateEventActionCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEventActionCommandInput, CreateEventActionCommandOutput>;
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 { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { CreateJobRequest, CreateJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateJobCommand}.
8
10
  */
9
11
  export interface CreateJobCommandInput extends CreateJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateJobCommand}.
13
17
  */
14
18
  export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation creates a job.</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 CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateJobCommandInput - {@link CreateJobCommandInput}
34
+ * @returns {@link CreateJobCommandOutput}
28
35
  * @see {@link CreateJobCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
52
59
  export declare class CreateJobCommand extends $Command<CreateJobCommandInput, CreateJobCommandOutput, DataExchangeClientResolvedConfig> {
53
60
  readonly input: CreateJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateJobCommandInput, CreateJobCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { CreateRevisionRequest, CreateRevisionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateRevisionCommand}.
8
10
  */
9
11
  export interface CreateRevisionCommandInput extends CreateRevisionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateRevisionCommand}.
13
17
  */
14
18
  export interface CreateRevisionCommandOutput extends CreateRevisionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation creates a revision for a data set.</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 CreateRevisionCommandOutput extends CreateRevisionResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateRevisionCommandInput - {@link CreateRevisionCommandInput}
34
+ * @returns {@link CreateRevisionCommandOutput}
28
35
  * @see {@link CreateRevisionCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateRevisionCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -49,11 +56,20 @@ export interface CreateRevisionCommandOutput extends CreateRevisionResponse, __M
49
56
  export declare class CreateRevisionCommand extends $Command<CreateRevisionCommandInput, CreateRevisionCommandOutput, DataExchangeClientResolvedConfig> {
50
57
  readonly input: CreateRevisionCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: CreateRevisionCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRevisionCommandInput, CreateRevisionCommandOutput>;
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 { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { DeleteAssetRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteAssetCommand}.
8
10
  */
9
11
  export interface DeleteAssetCommandInput extends DeleteAssetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteAssetCommand}.
13
17
  */
14
18
  export interface DeleteAssetCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation deletes an asset.</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 DeleteAssetCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteAssetCommandInput - {@link DeleteAssetCommandInput}
34
+ * @returns {@link DeleteAssetCommandOutput}
28
35
  * @see {@link DeleteAssetCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteAssetCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeleteAssetCommandOutput extends __MetadataBearer {
52
59
  export declare class DeleteAssetCommand extends $Command<DeleteAssetCommandInput, DeleteAssetCommandOutput, DataExchangeClientResolvedConfig> {
53
60
  readonly input: DeleteAssetCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeleteAssetCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAssetCommandInput, DeleteAssetCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { DeleteDataSetRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteDataSetCommand}.
8
10
  */
9
11
  export interface DeleteDataSetCommandInput extends DeleteDataSetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteDataSetCommand}.
13
17
  */
14
18
  export interface DeleteDataSetCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation deletes a data set.</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 DeleteDataSetCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteDataSetCommandInput - {@link DeleteDataSetCommandInput}
34
+ * @returns {@link DeleteDataSetCommandOutput}
28
35
  * @see {@link DeleteDataSetCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteDataSetCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeleteDataSetCommandOutput extends __MetadataBearer {
52
59
  export declare class DeleteDataSetCommand extends $Command<DeleteDataSetCommandInput, DeleteDataSetCommandOutput, DataExchangeClientResolvedConfig> {
53
60
  readonly input: DeleteDataSetCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeleteDataSetCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataSetCommandInput, DeleteDataSetCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }