@aws-sdk/client-datazone 3.940.0 → 3.943.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 (36) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +127 -22
  3. package/dist-es/DataZone.js +4 -0
  4. package/dist-es/commands/GetDataExportConfigurationCommand.js +16 -0
  5. package/dist-es/commands/PutDataExportConfigurationCommand.js +16 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/enums.js +10 -3
  8. package/dist-es/schemas/schemas_0.js +89 -19
  9. package/dist-types/DataZone.d.ts +14 -0
  10. package/dist-types/DataZoneClient.d.ts +4 -2
  11. package/dist-types/commands/GetDataExportConfigurationCommand.d.ts +100 -0
  12. package/dist-types/commands/GetMetadataGenerationRunCommand.d.ts +13 -2
  13. package/dist-types/commands/ListMetadataGenerationRunsCommand.d.ts +8 -4
  14. package/dist-types/commands/PutDataExportConfigurationCommand.d.ts +102 -0
  15. package/dist-types/commands/StartMetadataGenerationRunCommand.d.ts +10 -4
  16. package/dist-types/commands/UpdateAccountPoolCommand.d.ts +1 -1
  17. package/dist-types/commands/UpdateConnectionCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +1 -1
  19. package/dist-types/commands/index.d.ts +2 -0
  20. package/dist-types/models/enums.d.ts +26 -11
  21. package/dist-types/models/models_1.d.ts +158 -343
  22. package/dist-types/models/models_2.d.ts +342 -2
  23. package/dist-types/schemas/schemas_0.d.ts +11 -1
  24. package/dist-types/ts3.4/DataZone.d.ts +34 -0
  25. package/dist-types/ts3.4/DataZoneClient.d.ts +12 -0
  26. package/dist-types/ts3.4/commands/GetDataExportConfigurationCommand.d.ts +51 -0
  27. package/dist-types/ts3.4/commands/PutDataExportConfigurationCommand.d.ts +51 -0
  28. package/dist-types/ts3.4/commands/UpdateAccountPoolCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/UpdateConnectionCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  32. package/dist-types/ts3.4/models/enums.d.ts +14 -5
  33. package/dist-types/ts3.4/models/models_1.d.ts +36 -78
  34. package/dist-types/ts3.4/models/models_2.d.ts +86 -0
  35. package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -1
  36. package/package.json +5 -5
@@ -1,6 +1,346 @@
1
- import { FilterStatus, GroupProfileStatus, InventorySearchScope, ProjectStatus, SearchOutputAdditionalAttribute, Status, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, TypesSearchScope, UserProfileStatus, UserProfileType } from "./enums";
2
- import { ActionParameters, AggregationListItem, ColumnFilterConfiguration, CustomParameter, DeploymentProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, FailureCause, FormOutput, GrantedEntity, ProjectDeletionError, ProvisioningProperties, ResourceTag, ResourceTagParameter, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionTargetForm, UserProfileDetails } from "./models_0";
1
+ import { ConnectionScope, ConnectionType, EnvironmentStatus, FilterStatus, GroupProfileStatus, InventorySearchScope, ProjectStatus, ResolutionStrategy, SearchOutputAdditionalAttribute, Status, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, TypesSearchScope, UserProfileStatus, UserProfileType } from "./enums";
2
+ import { AccountSource, ActionParameters, AggregationListItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, ConnectionPropertiesOutput, ConnectionPropertiesPatch, CustomParameter, Deployment, DeploymentProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, FailureCause, FormOutput, GrantedEntity, PhysicalEndpoint, ProjectDeletionError, ProvisioningProperties, Resource, ResourceTag, ResourceTagParameter, RowFilterExpression, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionTargetForm, UserProfileDetails } from "./models_0";
3
3
  import { Filter, SearchInItem, SearchSort } from "./models_1";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface UpdateAccountPoolInput {
8
+ /**
9
+ * <p>The domain ID where the account pool that is to be updated lives.</p>
10
+ * @public
11
+ */
12
+ domainIdentifier: string | undefined;
13
+ /**
14
+ * <p>The ID of the account pool that is to be updated.</p>
15
+ * @public
16
+ */
17
+ identifier: string | undefined;
18
+ /**
19
+ * <p>The name of the account pool that is to be updated.</p>
20
+ * @public
21
+ */
22
+ name?: string | undefined;
23
+ /**
24
+ * <p>The description of the account pool that is to be udpated.</p>
25
+ * @public
26
+ */
27
+ description?: string | undefined;
28
+ /**
29
+ * <p>The mechanism used to resolve the account selection from the account pool.</p>
30
+ * @public
31
+ */
32
+ resolutionStrategy?: ResolutionStrategy | undefined;
33
+ /**
34
+ * <p>The source of accounts for the account pool. In the current release, it's either a static list of accounts provided by the customer or a custom Amazon Web Services Lambda handler. </p>
35
+ * @public
36
+ */
37
+ accountSource?: AccountSource | undefined;
38
+ }
39
+ /**
40
+ * @public
41
+ */
42
+ export interface UpdateAccountPoolOutput {
43
+ /**
44
+ * <p>The domain ID where the account pool that is to be updated lives.</p>
45
+ * @public
46
+ */
47
+ domainId?: string | undefined;
48
+ /**
49
+ * <p>The name of the account pool that is to be updated.</p>
50
+ * @public
51
+ */
52
+ name?: string | undefined;
53
+ /**
54
+ * <p>The ID of the account pool that is to be updated.</p>
55
+ * @public
56
+ */
57
+ id?: string | undefined;
58
+ /**
59
+ * <p>The description of the account pool that is to be udpated.</p>
60
+ * @public
61
+ */
62
+ description?: string | undefined;
63
+ /**
64
+ * <p>The mechanism used to resolve the account selection from the account pool.</p>
65
+ * @public
66
+ */
67
+ resolutionStrategy?: ResolutionStrategy | undefined;
68
+ /**
69
+ * <p>The source of accounts for the account pool. In the current release, it's either a static list of accounts provided by the customer or a custom Amazon Web Services Lambda handler. </p>
70
+ * @public
71
+ */
72
+ accountSource: AccountSource | undefined;
73
+ /**
74
+ * <p>The user who created the account pool.</p>
75
+ * @public
76
+ */
77
+ createdBy: string | undefined;
78
+ /**
79
+ * <p>The timestamp at which the account pool was created.</p>
80
+ * @public
81
+ */
82
+ createdAt?: Date | undefined;
83
+ /**
84
+ * <p>The timestamp at which the account pool was last updated.</p>
85
+ * @public
86
+ */
87
+ lastUpdatedAt?: Date | undefined;
88
+ /**
89
+ * <p>The user who last updated the account pool.</p>
90
+ * @public
91
+ */
92
+ updatedBy?: string | undefined;
93
+ /**
94
+ * <p>The domain ID in which the account pool that is to be updated lives.</p>
95
+ * @public
96
+ */
97
+ domainUnitId?: string | undefined;
98
+ }
99
+ /**
100
+ * @public
101
+ */
102
+ export interface UpdateConnectionInput {
103
+ /**
104
+ * <p>The ID of the domain where a connection is to be updated.</p>
105
+ * @public
106
+ */
107
+ domainIdentifier: string | undefined;
108
+ /**
109
+ * <p>The ID of the connection to be updated.</p>
110
+ * @public
111
+ */
112
+ identifier: string | undefined;
113
+ /**
114
+ * <p>The description of a connection.</p>
115
+ * @public
116
+ */
117
+ description?: string | undefined;
118
+ /**
119
+ * <p>The location where a connection is to be updated.</p>
120
+ * @public
121
+ */
122
+ awsLocation?: AwsLocation | undefined;
123
+ /**
124
+ * <p>The connection props.</p>
125
+ * @public
126
+ */
127
+ props?: ConnectionPropertiesPatch | undefined;
128
+ }
129
+ /**
130
+ * @public
131
+ */
132
+ export interface UpdateConnectionOutput {
133
+ /**
134
+ * <p>The ID of the connection.</p>
135
+ * @public
136
+ */
137
+ connectionId: string | undefined;
138
+ /**
139
+ * <p>The connection description.</p>
140
+ * @public
141
+ */
142
+ description?: string | undefined;
143
+ /**
144
+ * <p>The ID of the domain where a connection is to be updated.</p>
145
+ * @public
146
+ */
147
+ domainId: string | undefined;
148
+ /**
149
+ * <p>The ID of the domain unit where a connection is to be updated.</p>
150
+ * @public
151
+ */
152
+ domainUnitId: string | undefined;
153
+ /**
154
+ * <p>The ID of the environment where a connection is to be updated.</p>
155
+ * @public
156
+ */
157
+ environmentId?: string | undefined;
158
+ /**
159
+ * <p>The name of the connection.</p>
160
+ * @public
161
+ */
162
+ name: string | undefined;
163
+ /**
164
+ * <p>The physical endpoints of the connection.</p>
165
+ * @public
166
+ */
167
+ physicalEndpoints: PhysicalEndpoint[] | undefined;
168
+ /**
169
+ * <p>The project ID of the connection.</p>
170
+ * @public
171
+ */
172
+ projectId?: string | undefined;
173
+ /**
174
+ * <p>The connection props.</p>
175
+ * @public
176
+ */
177
+ props?: ConnectionPropertiesOutput | undefined;
178
+ /**
179
+ * <p>The connection type.</p>
180
+ * @public
181
+ */
182
+ type: ConnectionType | undefined;
183
+ /**
184
+ * <p>The scope of the connection.</p>
185
+ * @public
186
+ */
187
+ scope?: ConnectionScope | undefined;
188
+ }
189
+ /**
190
+ * @public
191
+ */
192
+ export interface UpdateEnvironmentInput {
193
+ /**
194
+ * <p>The identifier of the domain in which the environment is to be updated.</p>
195
+ * @public
196
+ */
197
+ domainIdentifier: string | undefined;
198
+ /**
199
+ * <p>The identifier of the environment that is to be updated.</p>
200
+ * @public
201
+ */
202
+ identifier: string | undefined;
203
+ /**
204
+ * <p>The name to be updated as part of the <code>UpdateEnvironment</code> action.</p>
205
+ * @public
206
+ */
207
+ name?: string | undefined;
208
+ /**
209
+ * <p>The description to be updated as part of the <code>UpdateEnvironment</code> action.</p>
210
+ * @public
211
+ */
212
+ description?: string | undefined;
213
+ /**
214
+ * <p>The glossary terms to be updated as part of the <code>UpdateEnvironment</code> action.</p>
215
+ * @public
216
+ */
217
+ glossaryTerms?: string[] | undefined;
218
+ /**
219
+ * <p>The blueprint version to which the environment should be updated. You can only specify the following string for this parameter: <code>latest</code>.</p>
220
+ * @public
221
+ */
222
+ blueprintVersion?: string | undefined;
223
+ /**
224
+ * <p>The user parameters of the environment.</p>
225
+ * @public
226
+ */
227
+ userParameters?: EnvironmentParameter[] | undefined;
228
+ }
229
+ /**
230
+ * @public
231
+ */
232
+ export interface UpdateEnvironmentOutput {
233
+ /**
234
+ * <p>The project identifier of the environment.</p>
235
+ * @public
236
+ */
237
+ projectId: string | undefined;
238
+ /**
239
+ * <p>The identifier of the environment that is to be updated.</p>
240
+ * @public
241
+ */
242
+ id?: string | undefined;
243
+ /**
244
+ * <p>The identifier of the domain in which the environment is to be updated.</p>
245
+ * @public
246
+ */
247
+ domainId: string | undefined;
248
+ /**
249
+ * <p>The Amazon DataZone user who created the environment.</p>
250
+ * @public
251
+ */
252
+ createdBy: string | undefined;
253
+ /**
254
+ * <p>The timestamp of when the environment was created.</p>
255
+ * @public
256
+ */
257
+ createdAt?: Date | undefined;
258
+ /**
259
+ * <p>The timestamp of when the environment was updated.</p>
260
+ * @public
261
+ */
262
+ updatedAt?: Date | undefined;
263
+ /**
264
+ * <p>The name to be updated as part of the <code>UpdateEnvironment</code> action.</p>
265
+ * @public
266
+ */
267
+ name: string | undefined;
268
+ /**
269
+ * <p>The description to be updated as part of the <code>UpdateEnvironment</code> action.</p>
270
+ * @public
271
+ */
272
+ description?: string | undefined;
273
+ /**
274
+ * <p>The profile identifier of the environment.</p>
275
+ * @public
276
+ */
277
+ environmentProfileId?: string | undefined;
278
+ /**
279
+ * <p>The identifier of the Amazon Web Services account in which the environment is to be updated.</p>
280
+ * @public
281
+ */
282
+ awsAccountId?: string | undefined;
283
+ /**
284
+ * <p>The Amazon Web Services Region in which the environment is updated.</p>
285
+ * @public
286
+ */
287
+ awsAccountRegion?: string | undefined;
288
+ /**
289
+ * <p>The provider identifier of the environment.</p>
290
+ * @public
291
+ */
292
+ provider: string | undefined;
293
+ /**
294
+ * <p>The provisioned resources to be updated as part of the <code>UpdateEnvironment</code> action.</p>
295
+ * @public
296
+ */
297
+ provisionedResources?: Resource[] | undefined;
298
+ /**
299
+ * <p>The status to be updated as part of the <code>UpdateEnvironment</code> action.</p>
300
+ * @public
301
+ */
302
+ status?: EnvironmentStatus | undefined;
303
+ /**
304
+ * <p>The environment actions to be updated as part of the <code>UpdateEnvironment</code> action.</p>
305
+ * @public
306
+ */
307
+ environmentActions?: ConfigurableEnvironmentAction[] | undefined;
308
+ /**
309
+ * <p>The glossary terms to be updated as part of the <code>UpdateEnvironment</code> action.</p>
310
+ * @public
311
+ */
312
+ glossaryTerms?: string[] | undefined;
313
+ /**
314
+ * <p>The user parameters to be updated as part of the <code>UpdateEnvironment</code> action.</p>
315
+ * @public
316
+ */
317
+ userParameters?: CustomParameter[] | undefined;
318
+ /**
319
+ * <p>The last deployment of the environment.</p>
320
+ * @public
321
+ */
322
+ lastDeployment?: Deployment | undefined;
323
+ /**
324
+ * <p>The provisioning properties to be updated as part of the <code>UpdateEnvironment</code> action.</p>
325
+ * @public
326
+ */
327
+ provisioningProperties?: ProvisioningProperties | undefined;
328
+ /**
329
+ * <p>The deployment properties to be updated as part of the <code>UpdateEnvironment</code> action.</p>
330
+ * @public
331
+ */
332
+ deploymentProperties?: DeploymentProperties | undefined;
333
+ /**
334
+ * <p>The blueprint identifier of the environment.</p>
335
+ * @public
336
+ */
337
+ environmentBlueprintId?: string | undefined;
338
+ /**
339
+ * <p>The configuration ID of the environment.</p>
340
+ * @public
341
+ */
342
+ environmentConfigurationId?: string | undefined;
343
+ }
4
344
  /**
5
345
  * @public
6
346
  */
@@ -246,6 +246,7 @@ export declare var DomainUnitPolicyGrantPrincipal: StaticStructureSchema;
246
246
  export declare var DomainUnitSummary: StaticStructureSchema;
247
247
  export declare var DomainUnitTarget: StaticStructureSchema;
248
248
  export declare var DomainUnitUserProperties: StaticStructureSchema;
249
+ export declare var EncryptionConfiguration: StaticStructureSchema;
249
250
  export declare var EnvironmentActionSummary: StaticStructureSchema;
250
251
  export declare var EnvironmentBlueprintConfigurationItem: StaticStructureSchema;
251
252
  export declare var EnvironmentBlueprintSummary: StaticStructureSchema;
@@ -278,6 +279,8 @@ export declare var GetAssetTypeInput: StaticStructureSchema;
278
279
  export declare var GetAssetTypeOutput: StaticStructureSchema;
279
280
  export declare var GetConnectionInput: StaticStructureSchema;
280
281
  export declare var GetConnectionOutput: StaticStructureSchema;
282
+ export declare var GetDataExportConfigurationInput: StaticStructureSchema;
283
+ export declare var GetDataExportConfigurationOutput: StaticStructureSchema;
281
284
  export declare var GetDataProductInput: StaticStructureSchema;
282
285
  export declare var GetDataProductOutput: StaticStructureSchema;
283
286
  export declare var GetDataSourceInput: StaticStructureSchema;
@@ -459,6 +462,7 @@ export declare var MetadataFormReference: StaticStructureSchema;
459
462
  export declare var MetadataFormSummary: StaticStructureSchema;
460
463
  export declare var MetadataGenerationRunItem: StaticStructureSchema;
461
464
  export declare var MetadataGenerationRunTarget: StaticStructureSchema;
465
+ export declare var MetadataGenerationRunTypeStat: StaticStructureSchema;
462
466
  export declare var MlflowPropertiesInput: StaticStructureSchema;
463
467
  export declare var MlflowPropertiesOutput: StaticStructureSchema;
464
468
  export declare var MlflowPropertiesPatch: StaticStructureSchema;
@@ -491,6 +495,8 @@ export declare var ProjectPolicyGrantPrincipal: StaticStructureSchema;
491
495
  export declare var ProjectProfileSummary: StaticStructureSchema;
492
496
  export declare var ProjectsForRule: StaticStructureSchema;
493
497
  export declare var ProjectSummary: StaticStructureSchema;
498
+ export declare var PutDataExportConfigurationInput: StaticStructureSchema;
499
+ export declare var PutDataExportConfigurationOutput: StaticStructureSchema;
494
500
  export declare var PutEnvironmentBlueprintConfigurationInput: StaticStructureSchema;
495
501
  export declare var PutEnvironmentBlueprintConfigurationOutput: StaticStructureSchema;
496
502
  export declare var RecommendationConfiguration: StaticStructureSchema;
@@ -584,7 +590,7 @@ export declare var TimeSeriesDataPointFormOutput: StaticStructureSchema;
584
590
  export declare var TimeSeriesDataPointSummaryFormOutput: StaticStructureSchema;
585
591
  export declare var Topic: StaticStructureSchema;
586
592
  export declare var UnauthorizedException: StaticErrorSchema;
587
- export declare var Unit: StaticStructureSchema;
593
+ export declare var Unit_n0: StaticStructureSchema;
588
594
  export declare var UntagResourceRequest: StaticStructureSchema;
589
595
  export declare var UntagResourceResponse: StaticStructureSchema;
590
596
  export declare var UpdateAccountPoolInput: StaticStructureSchema;
@@ -714,6 +720,8 @@ export declare var MetadataFormInputs: StaticListSchema;
714
720
  export declare var MetadataForms: StaticListSchema;
715
721
  export declare var MetadataFormsSummary: StaticListSchema;
716
722
  export declare var MetadataGenerationRuns: StaticListSchema;
723
+ export declare var MetadataGenerationRunTypes: number;
724
+ export declare var MetadataGenerationRunTypeStats: StaticListSchema;
717
725
  export declare var NameIdentifiers: StaticListSchema;
718
726
  export declare var NotificationsList: StaticListSchema;
719
727
  export declare var NotificationSubjects: number;
@@ -895,6 +903,7 @@ export declare var GetAsset: StaticOperationSchema;
895
903
  export declare var GetAssetFilter: StaticOperationSchema;
896
904
  export declare var GetAssetType: StaticOperationSchema;
897
905
  export declare var GetConnection: StaticOperationSchema;
906
+ export declare var GetDataExportConfiguration: StaticOperationSchema;
898
907
  export declare var GetDataProduct: StaticOperationSchema;
899
908
  export declare var GetDataSource: StaticOperationSchema;
900
909
  export declare var GetDataSourceRun: StaticOperationSchema;
@@ -960,6 +969,7 @@ export declare var ListTagsForResource: StaticOperationSchema;
960
969
  export declare var ListTimeSeriesDataPoints: StaticOperationSchema;
961
970
  export declare var PostLineageEvent: StaticOperationSchema;
962
971
  export declare var PostTimeSeriesDataPoints: StaticOperationSchema;
972
+ export declare var PutDataExportConfiguration: StaticOperationSchema;
963
973
  export declare var PutEnvironmentBlueprintConfiguration: StaticOperationSchema;
964
974
  export declare var RejectPredictions: StaticOperationSchema;
965
975
  export declare var RejectSubscriptionRequest: StaticOperationSchema;
@@ -283,6 +283,10 @@ import {
283
283
  GetConnectionCommandInput,
284
284
  GetConnectionCommandOutput,
285
285
  } from "./commands/GetConnectionCommand";
286
+ import {
287
+ GetDataExportConfigurationCommandInput,
288
+ GetDataExportConfigurationCommandOutput,
289
+ } from "./commands/GetDataExportConfigurationCommand";
286
290
  import {
287
291
  GetDataProductCommandInput,
288
292
  GetDataProductCommandOutput,
@@ -543,6 +547,10 @@ import {
543
547
  PostTimeSeriesDataPointsCommandInput,
544
548
  PostTimeSeriesDataPointsCommandOutput,
545
549
  } from "./commands/PostTimeSeriesDataPointsCommand";
550
+ import {
551
+ PutDataExportConfigurationCommandInput,
552
+ PutDataExportConfigurationCommandOutput,
553
+ } from "./commands/PutDataExportConfigurationCommand";
546
554
  import {
547
555
  PutEnvironmentBlueprintConfigurationCommandInput,
548
556
  PutEnvironmentBlueprintConfigurationCommandOutput,
@@ -1618,6 +1626,19 @@ export interface DataZone {
1618
1626
  options: __HttpHandlerOptions,
1619
1627
  cb: (err: any, data?: GetConnectionCommandOutput) => void
1620
1628
  ): void;
1629
+ getDataExportConfiguration(
1630
+ args: GetDataExportConfigurationCommandInput,
1631
+ options?: __HttpHandlerOptions
1632
+ ): Promise<GetDataExportConfigurationCommandOutput>;
1633
+ getDataExportConfiguration(
1634
+ args: GetDataExportConfigurationCommandInput,
1635
+ cb: (err: any, data?: GetDataExportConfigurationCommandOutput) => void
1636
+ ): void;
1637
+ getDataExportConfiguration(
1638
+ args: GetDataExportConfigurationCommandInput,
1639
+ options: __HttpHandlerOptions,
1640
+ cb: (err: any, data?: GetDataExportConfigurationCommandOutput) => void
1641
+ ): void;
1621
1642
  getDataProduct(
1622
1643
  args: GetDataProductCommandInput,
1623
1644
  options?: __HttpHandlerOptions
@@ -2476,6 +2497,19 @@ export interface DataZone {
2476
2497
  options: __HttpHandlerOptions,
2477
2498
  cb: (err: any, data?: PostTimeSeriesDataPointsCommandOutput) => void
2478
2499
  ): void;
2500
+ putDataExportConfiguration(
2501
+ args: PutDataExportConfigurationCommandInput,
2502
+ options?: __HttpHandlerOptions
2503
+ ): Promise<PutDataExportConfigurationCommandOutput>;
2504
+ putDataExportConfiguration(
2505
+ args: PutDataExportConfigurationCommandInput,
2506
+ cb: (err: any, data?: PutDataExportConfigurationCommandOutput) => void
2507
+ ): void;
2508
+ putDataExportConfiguration(
2509
+ args: PutDataExportConfigurationCommandInput,
2510
+ options: __HttpHandlerOptions,
2511
+ cb: (err: any, data?: PutDataExportConfigurationCommandOutput) => void
2512
+ ): void;
2479
2513
  putEnvironmentBlueprintConfiguration(
2480
2514
  args: PutEnvironmentBlueprintConfigurationCommandInput,
2481
2515
  options?: __HttpHandlerOptions
@@ -332,6 +332,10 @@ import {
332
332
  GetConnectionCommandInput,
333
333
  GetConnectionCommandOutput,
334
334
  } from "./commands/GetConnectionCommand";
335
+ import {
336
+ GetDataExportConfigurationCommandInput,
337
+ GetDataExportConfigurationCommandOutput,
338
+ } from "./commands/GetDataExportConfigurationCommand";
335
339
  import {
336
340
  GetDataProductCommandInput,
337
341
  GetDataProductCommandOutput,
@@ -592,6 +596,10 @@ import {
592
596
  PostTimeSeriesDataPointsCommandInput,
593
597
  PostTimeSeriesDataPointsCommandOutput,
594
598
  } from "./commands/PostTimeSeriesDataPointsCommand";
599
+ import {
600
+ PutDataExportConfigurationCommandInput,
601
+ PutDataExportConfigurationCommandOutput,
602
+ } from "./commands/PutDataExportConfigurationCommand";
595
603
  import {
596
604
  PutEnvironmentBlueprintConfigurationCommandInput,
597
605
  PutEnvironmentBlueprintConfigurationCommandOutput,
@@ -815,6 +823,7 @@ export type ServiceInputTypes =
815
823
  | GetAssetFilterCommandInput
816
824
  | GetAssetTypeCommandInput
817
825
  | GetConnectionCommandInput
826
+ | GetDataExportConfigurationCommandInput
818
827
  | GetDataProductCommandInput
819
828
  | GetDataSourceCommandInput
820
829
  | GetDataSourceRunCommandInput
@@ -880,6 +889,7 @@ export type ServiceInputTypes =
880
889
  | ListTimeSeriesDataPointsCommandInput
881
890
  | PostLineageEventCommandInput
882
891
  | PostTimeSeriesDataPointsCommandInput
892
+ | PutDataExportConfigurationCommandInput
883
893
  | PutEnvironmentBlueprintConfigurationCommandInput
884
894
  | RejectPredictionsCommandInput
885
895
  | RejectSubscriptionRequestCommandInput
@@ -988,6 +998,7 @@ export type ServiceOutputTypes =
988
998
  | GetAssetFilterCommandOutput
989
999
  | GetAssetTypeCommandOutput
990
1000
  | GetConnectionCommandOutput
1001
+ | GetDataExportConfigurationCommandOutput
991
1002
  | GetDataProductCommandOutput
992
1003
  | GetDataSourceCommandOutput
993
1004
  | GetDataSourceRunCommandOutput
@@ -1053,6 +1064,7 @@ export type ServiceOutputTypes =
1053
1064
  | ListTimeSeriesDataPointsCommandOutput
1054
1065
  | PostLineageEventCommandOutput
1055
1066
  | PostTimeSeriesDataPointsCommandOutput
1067
+ | PutDataExportConfigurationCommandOutput
1056
1068
  | PutEnvironmentBlueprintConfigurationCommandOutput
1057
1069
  | RejectPredictionsCommandOutput
1058
1070
  | RejectSubscriptionRequestCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DataZoneClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DataZoneClient";
8
+ import {
9
+ GetDataExportConfigurationInput,
10
+ GetDataExportConfigurationOutput,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetDataExportConfigurationCommandInput
15
+ extends GetDataExportConfigurationInput {}
16
+ export interface GetDataExportConfigurationCommandOutput
17
+ extends GetDataExportConfigurationOutput,
18
+ __MetadataBearer {}
19
+ declare const GetDataExportConfigurationCommand_base: {
20
+ new (
21
+ input: GetDataExportConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetDataExportConfigurationCommandInput,
24
+ GetDataExportConfigurationCommandOutput,
25
+ DataZoneClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetDataExportConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetDataExportConfigurationCommandInput,
33
+ GetDataExportConfigurationCommandOutput,
34
+ DataZoneClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetDataExportConfigurationCommand extends GetDataExportConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetDataExportConfigurationInput;
44
+ output: GetDataExportConfigurationOutput;
45
+ };
46
+ sdk: {
47
+ input: GetDataExportConfigurationCommandInput;
48
+ output: GetDataExportConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DataZoneClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DataZoneClient";
8
+ import {
9
+ PutDataExportConfigurationInput,
10
+ PutDataExportConfigurationOutput,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface PutDataExportConfigurationCommandInput
15
+ extends PutDataExportConfigurationInput {}
16
+ export interface PutDataExportConfigurationCommandOutput
17
+ extends PutDataExportConfigurationOutput,
18
+ __MetadataBearer {}
19
+ declare const PutDataExportConfigurationCommand_base: {
20
+ new (
21
+ input: PutDataExportConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ PutDataExportConfigurationCommandInput,
24
+ PutDataExportConfigurationCommandOutput,
25
+ DataZoneClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: PutDataExportConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ PutDataExportConfigurationCommandInput,
33
+ PutDataExportConfigurationCommandOutput,
34
+ DataZoneClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class PutDataExportConfigurationCommand extends PutDataExportConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: PutDataExportConfigurationInput;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: PutDataExportConfigurationCommandInput;
48
+ output: PutDataExportConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdateAccountPoolInput,
10
10
  UpdateAccountPoolOutput,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdateAccountPoolCommandInput extends UpdateAccountPoolInput {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdateConnectionInput,
10
10
  UpdateConnectionOutput,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdateConnectionCommandInput extends UpdateConnectionInput {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdateEnvironmentInput,
10
10
  UpdateEnvironmentOutput,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdateEnvironmentCommandInput extends UpdateEnvironmentInput {}
@@ -69,6 +69,7 @@ export * from "./GetAssetCommand";
69
69
  export * from "./GetAssetFilterCommand";
70
70
  export * from "./GetAssetTypeCommand";
71
71
  export * from "./GetConnectionCommand";
72
+ export * from "./GetDataExportConfigurationCommand";
72
73
  export * from "./GetDataProductCommand";
73
74
  export * from "./GetDataSourceCommand";
74
75
  export * from "./GetDataSourceRunCommand";
@@ -134,6 +135,7 @@ export * from "./ListTagsForResourceCommand";
134
135
  export * from "./ListTimeSeriesDataPointsCommand";
135
136
  export * from "./PostLineageEventCommand";
136
137
  export * from "./PostTimeSeriesDataPointsCommand";
138
+ export * from "./PutDataExportConfigurationCommand";
137
139
  export * from "./PutEnvironmentBlueprintConfigurationCommand";
138
140
  export * from "./RejectPredictionsCommand";
139
141
  export * from "./RejectSubscriptionRequestCommand";