@aws-sdk/client-supplychain 3.774.0 → 3.777.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-cjs/index.js +17 -18
- package/dist-es/SupplyChainClient.js +2 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -3
- package/dist-es/runtimeExtensions.js +2 -14
- package/dist-types/commands/CreateBillOfMaterialsImportJobCommand.d.ts +7 -7
- package/dist-types/commands/CreateDataIntegrationFlowCommand.d.ts +47 -48
- package/dist-types/commands/CreateDataLakeDatasetCommand.d.ts +160 -161
- package/dist-types/commands/CreateInstanceCommand.d.ts +29 -30
- package/dist-types/commands/DeleteDataIntegrationFlowCommand.d.ts +7 -7
- package/dist-types/commands/DeleteDataLakeDatasetCommand.d.ts +16 -17
- package/dist-types/commands/DeleteInstanceCommand.d.ts +14 -14
- package/dist-types/commands/GetBillOfMaterialsImportJobCommand.d.ts +19 -20
- package/dist-types/commands/GetDataIntegrationFlowCommand.d.ts +24 -24
- package/dist-types/commands/GetDataLakeDatasetCommand.d.ts +136 -137
- package/dist-types/commands/GetInstanceCommand.d.ts +27 -28
- package/dist-types/commands/ListDataIntegrationFlowsCommand.d.ts +44 -44
- package/dist-types/commands/ListDataLakeDatasetsCommand.d.ts +157 -158
- package/dist-types/commands/ListInstancesCommand.d.ts +60 -63
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -6
- package/dist-types/commands/SendDataIntegrationEventCommand.d.ts +107 -121
- package/dist-types/commands/TagResourceCommand.d.ts +9 -6
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
- package/dist-types/commands/UpdateDataIntegrationFlowCommand.d.ts +80 -81
- package/dist-types/commands/UpdateDataLakeDatasetCommand.d.ts +138 -139
- package/dist-types/commands/UpdateInstanceCommand.d.ts +16 -16
- package/package.json +33 -33
|
@@ -88,33 +88,33 @@ declare const DeleteInstanceCommand_base: {
|
|
|
88
88
|
* @throws {@link SupplyChainServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
90
90
|
*
|
|
91
|
-
*
|
|
91
|
+
*
|
|
92
92
|
* @example Successful DeleteInstance request
|
|
93
93
|
* ```javascript
|
|
94
94
|
* //
|
|
95
95
|
* const input = {
|
|
96
|
-
*
|
|
96
|
+
* instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793"
|
|
97
97
|
* };
|
|
98
98
|
* const command = new DeleteInstanceCommand(input);
|
|
99
99
|
* const response = await client.send(command);
|
|
100
|
-
* /* response
|
|
100
|
+
* /* response is
|
|
101
101
|
* {
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
102
|
+
* instance: {
|
|
103
|
+
* awsAccountId: "123456789012",
|
|
104
|
+
* createdTime: 172615383136,
|
|
105
|
+
* instanceDescription: "updated example instance description",
|
|
106
|
+
* instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793",
|
|
107
|
+
* instanceName: "updated example instance name",
|
|
108
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
109
|
+
* lastModifiedTime: 172615383136,
|
|
110
|
+
* state: "Deleting",
|
|
111
|
+
* versionNumber: 2.0
|
|
112
112
|
* }
|
|
113
113
|
* }
|
|
114
114
|
* *\/
|
|
115
|
-
* // example id: example-1
|
|
116
115
|
* ```
|
|
117
116
|
*
|
|
117
|
+
* @public
|
|
118
118
|
*/
|
|
119
119
|
export declare class DeleteInstanceCommand extends DeleteInstanceCommand_base {
|
|
120
120
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -82,52 +82,51 @@ declare const GetBillOfMaterialsImportJobCommand_base: {
|
|
|
82
82
|
* @throws {@link SupplyChainServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
84
84
|
*
|
|
85
|
-
*
|
|
85
|
+
*
|
|
86
86
|
* @example Invoke GetBillOfMaterialsImportJob for a successful job
|
|
87
87
|
* ```javascript
|
|
88
88
|
* //
|
|
89
89
|
* const input = {
|
|
90
|
-
*
|
|
91
|
-
*
|
|
90
|
+
* instanceId: "60f82bbd-71f7-4fcd-a941-472f574c5243",
|
|
91
|
+
* jobId: "f79b359b-1515-4436-a3bf-bae7b33e47b4"
|
|
92
92
|
* };
|
|
93
93
|
* const command = new GetBillOfMaterialsImportJobCommand(input);
|
|
94
94
|
* const response = await client.send(command);
|
|
95
|
-
* /* response
|
|
95
|
+
* /* response is
|
|
96
96
|
* {
|
|
97
|
-
*
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
97
|
+
* job: {
|
|
98
|
+
* instanceId: "60f82bbd-71f7-4fcd-a941-472f574c5243",
|
|
99
|
+
* jobId: "f79b359b-1515-4436-a3bf-bae7b33e47b4",
|
|
100
|
+
* message: "Import job completed successfully.",
|
|
101
|
+
* s3uri: "s3://mybucketname/pathelemene/file.csv",
|
|
102
|
+
* status: "SUCCESS"
|
|
103
103
|
* }
|
|
104
104
|
* }
|
|
105
105
|
* *\/
|
|
106
|
-
* // example id: example-1
|
|
107
106
|
* ```
|
|
108
107
|
*
|
|
109
108
|
* @example Invoke GetBillOfMaterialsImportJob for an in-progress job
|
|
110
109
|
* ```javascript
|
|
111
110
|
* //
|
|
112
111
|
* const input = {
|
|
113
|
-
*
|
|
114
|
-
*
|
|
112
|
+
* instanceId: "60f82bbd-71f7-4fcd-a941-472f574c5243",
|
|
113
|
+
* jobId: "f79b359b-1515-4436-a3bf-bae7b33e47b4"
|
|
115
114
|
* };
|
|
116
115
|
* const command = new GetBillOfMaterialsImportJobCommand(input);
|
|
117
116
|
* const response = await client.send(command);
|
|
118
|
-
* /* response
|
|
117
|
+
* /* response is
|
|
119
118
|
* {
|
|
120
|
-
*
|
|
121
|
-
*
|
|
122
|
-
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
119
|
+
* job: {
|
|
120
|
+
* instanceId: "60f82bbd-71f7-4fcd-a941-472f574c5243",
|
|
121
|
+
* jobId: "f79b359b-1515-4436-a3bf-bae7b33e47b4",
|
|
122
|
+
* s3uri: "s3://mybucketname/pathelemene/file.csv",
|
|
123
|
+
* status: "IN_PROGRESS"
|
|
125
124
|
* }
|
|
126
125
|
* }
|
|
127
126
|
* *\/
|
|
128
|
-
* // example id: example-2
|
|
129
127
|
* ```
|
|
130
128
|
*
|
|
129
|
+
* @public
|
|
131
130
|
*/
|
|
132
131
|
export declare class GetBillOfMaterialsImportJobCommand extends GetBillOfMaterialsImportJobCommand_base {
|
|
133
132
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -124,51 +124,51 @@ declare const GetDataIntegrationFlowCommand_base: {
|
|
|
124
124
|
* @throws {@link SupplyChainServiceException}
|
|
125
125
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
126
126
|
*
|
|
127
|
-
*
|
|
127
|
+
*
|
|
128
128
|
* @example Successful GetDataIntegrationFlow
|
|
129
129
|
* ```javascript
|
|
130
130
|
* //
|
|
131
131
|
* const input = {
|
|
132
|
-
*
|
|
133
|
-
*
|
|
132
|
+
* instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d",
|
|
133
|
+
* name: "testStagingFlow"
|
|
134
134
|
* };
|
|
135
135
|
* const command = new GetDataIntegrationFlowCommand(input);
|
|
136
136
|
* const response = await client.send(command);
|
|
137
|
-
* /* response
|
|
137
|
+
* /* response is
|
|
138
138
|
* {
|
|
139
|
-
*
|
|
140
|
-
*
|
|
141
|
-
* "
|
|
142
|
-
*
|
|
143
|
-
* "
|
|
144
|
-
*
|
|
139
|
+
* flow: {
|
|
140
|
+
* createdTime: 1.72495640044E9,
|
|
141
|
+
* instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d",
|
|
142
|
+
* lastModifiedTime: 1.72495640044E9,
|
|
143
|
+
* name: "testStagingFlow",
|
|
144
|
+
* sources: [
|
|
145
145
|
* {
|
|
146
|
-
*
|
|
147
|
-
*
|
|
148
|
-
*
|
|
146
|
+
* s3Source: {
|
|
147
|
+
* bucketName: "aws-supply-chain-data-b8c7bb28-a576-4334-b481-6d6e8e47371f",
|
|
148
|
+
* prefix: "example-prefix"
|
|
149
149
|
* },
|
|
150
|
-
*
|
|
151
|
-
*
|
|
150
|
+
* sourceName: "testSourceName",
|
|
151
|
+
* sourceType: "S3"
|
|
152
152
|
* }
|
|
153
153
|
* ],
|
|
154
|
-
*
|
|
155
|
-
*
|
|
156
|
-
*
|
|
154
|
+
* target: {
|
|
155
|
+
* datasetTarget: {
|
|
156
|
+
* datasetIdentifier: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/namespaces/default/datasets/my_staging_dataset"
|
|
157
157
|
* },
|
|
158
|
-
*
|
|
158
|
+
* targetType: "DATASET"
|
|
159
159
|
* },
|
|
160
|
-
*
|
|
161
|
-
*
|
|
162
|
-
*
|
|
160
|
+
* transformation: {
|
|
161
|
+
* sqlTransformation: {
|
|
162
|
+
* query: "SELECT * FROM testSourceName"
|
|
163
163
|
* },
|
|
164
|
-
*
|
|
164
|
+
* transformationType: "SQL"
|
|
165
165
|
* }
|
|
166
166
|
* }
|
|
167
167
|
* }
|
|
168
168
|
* *\/
|
|
169
|
-
* // example id: example-1
|
|
170
169
|
* ```
|
|
171
170
|
*
|
|
171
|
+
* @public
|
|
172
172
|
*/
|
|
173
173
|
export declare class GetDataIntegrationFlowCommand extends GetDataIntegrationFlowCommand_base {
|
|
174
174
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -95,239 +95,238 @@ declare const GetDataLakeDatasetCommand_base: {
|
|
|
95
95
|
* @throws {@link SupplyChainServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
97
97
|
*
|
|
98
|
-
*
|
|
98
|
+
*
|
|
99
99
|
* @example Get properties of an existing AWS Supply Chain inbound order dataset
|
|
100
100
|
* ```javascript
|
|
101
101
|
* //
|
|
102
102
|
* const input = {
|
|
103
|
-
*
|
|
104
|
-
*
|
|
105
|
-
*
|
|
103
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
104
|
+
* name: "inbound_order",
|
|
105
|
+
* namespace: "asc"
|
|
106
106
|
* };
|
|
107
107
|
* const command = new GetDataLakeDatasetCommand(input);
|
|
108
108
|
* const response = await client.send(command);
|
|
109
|
-
* /* response
|
|
109
|
+
* /* response is
|
|
110
110
|
* {
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
* "
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
* "
|
|
118
|
-
*
|
|
119
|
-
*
|
|
120
|
-
*
|
|
121
|
-
* "fields": [
|
|
111
|
+
* dataset: {
|
|
112
|
+
* arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/asc/datasets/inbound_order",
|
|
113
|
+
* createdTime: 1.727116807751E9,
|
|
114
|
+
* description: "This is an AWS Supply Chain inbound order dataset",
|
|
115
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
116
|
+
* lastModifiedTime: 1.727116807751E9,
|
|
117
|
+
* name: "inbound_order",
|
|
118
|
+
* namespace: "asc",
|
|
119
|
+
* schema: {
|
|
120
|
+
* fields: [
|
|
122
121
|
* {
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
* "
|
|
122
|
+
* isRequired: true,
|
|
123
|
+
* name: "id",
|
|
124
|
+
* type: "STRING"
|
|
126
125
|
* },
|
|
127
126
|
* {
|
|
128
|
-
*
|
|
129
|
-
*
|
|
130
|
-
* "
|
|
127
|
+
* isRequired: true,
|
|
128
|
+
* name: "tpartner_id",
|
|
129
|
+
* type: "STRING"
|
|
131
130
|
* },
|
|
132
131
|
* {
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
* "
|
|
132
|
+
* isRequired: true,
|
|
133
|
+
* name: "connection_id",
|
|
134
|
+
* type: "STRING"
|
|
136
135
|
* },
|
|
137
136
|
* {
|
|
138
|
-
*
|
|
139
|
-
*
|
|
140
|
-
* "
|
|
137
|
+
* isRequired: false,
|
|
138
|
+
* name: "order_type",
|
|
139
|
+
* type: "STRING"
|
|
141
140
|
* },
|
|
142
141
|
* {
|
|
143
|
-
*
|
|
144
|
-
*
|
|
145
|
-
* "
|
|
142
|
+
* isRequired: false,
|
|
143
|
+
* name: "order_status",
|
|
144
|
+
* type: "STRING"
|
|
146
145
|
* },
|
|
147
146
|
* {
|
|
148
|
-
*
|
|
149
|
-
*
|
|
150
|
-
* "
|
|
147
|
+
* isRequired: false,
|
|
148
|
+
* name: "inbound_order_url",
|
|
149
|
+
* type: "STRING"
|
|
151
150
|
* },
|
|
152
151
|
* {
|
|
153
|
-
*
|
|
154
|
-
*
|
|
155
|
-
* "
|
|
152
|
+
* isRequired: false,
|
|
153
|
+
* name: "order_creation_date",
|
|
154
|
+
* type: "TIMESTAMP"
|
|
156
155
|
* },
|
|
157
156
|
* {
|
|
158
|
-
*
|
|
159
|
-
*
|
|
160
|
-
* "
|
|
157
|
+
* isRequired: false,
|
|
158
|
+
* name: "company_id",
|
|
159
|
+
* type: "STRING"
|
|
161
160
|
* },
|
|
162
161
|
* {
|
|
163
|
-
*
|
|
164
|
-
*
|
|
165
|
-
* "
|
|
162
|
+
* isRequired: false,
|
|
163
|
+
* name: "to_site_id",
|
|
164
|
+
* type: "STRING"
|
|
166
165
|
* },
|
|
167
166
|
* {
|
|
168
|
-
*
|
|
169
|
-
*
|
|
170
|
-
* "
|
|
167
|
+
* isRequired: false,
|
|
168
|
+
* name: "order_currency_uom",
|
|
169
|
+
* type: "STRING"
|
|
171
170
|
* },
|
|
172
171
|
* {
|
|
173
|
-
*
|
|
174
|
-
*
|
|
175
|
-
* "
|
|
172
|
+
* isRequired: false,
|
|
173
|
+
* name: "vendor_currency_uom",
|
|
174
|
+
* type: "STRING"
|
|
176
175
|
* },
|
|
177
176
|
* {
|
|
178
|
-
*
|
|
179
|
-
*
|
|
180
|
-
* "
|
|
177
|
+
* isRequired: false,
|
|
178
|
+
* name: "exchange_rate",
|
|
179
|
+
* type: "DOUBLE"
|
|
181
180
|
* },
|
|
182
181
|
* {
|
|
183
|
-
*
|
|
184
|
-
*
|
|
185
|
-
* "
|
|
182
|
+
* isRequired: false,
|
|
183
|
+
* name: "exchange_rate_date",
|
|
184
|
+
* type: "TIMESTAMP"
|
|
186
185
|
* },
|
|
187
186
|
* {
|
|
188
|
-
*
|
|
189
|
-
*
|
|
190
|
-
* "
|
|
187
|
+
* isRequired: false,
|
|
188
|
+
* name: "incoterm",
|
|
189
|
+
* type: "STRING"
|
|
191
190
|
* },
|
|
192
191
|
* {
|
|
193
|
-
*
|
|
194
|
-
*
|
|
195
|
-
* "
|
|
192
|
+
* isRequired: false,
|
|
193
|
+
* name: "incoterm2",
|
|
194
|
+
* type: "STRING"
|
|
196
195
|
* },
|
|
197
196
|
* {
|
|
198
|
-
*
|
|
199
|
-
*
|
|
200
|
-
* "
|
|
197
|
+
* isRequired: false,
|
|
198
|
+
* name: "incoterm_location_1",
|
|
199
|
+
* type: "STRING"
|
|
201
200
|
* },
|
|
202
201
|
* {
|
|
203
|
-
*
|
|
204
|
-
*
|
|
205
|
-
* "
|
|
202
|
+
* isRequired: false,
|
|
203
|
+
* name: "incoterm_location_2",
|
|
204
|
+
* type: "STRING"
|
|
206
205
|
* },
|
|
207
206
|
* {
|
|
208
|
-
*
|
|
209
|
-
*
|
|
210
|
-
* "
|
|
207
|
+
* isRequired: false,
|
|
208
|
+
* name: "submitted_date",
|
|
209
|
+
* type: "TIMESTAMP"
|
|
211
210
|
* },
|
|
212
211
|
* {
|
|
213
|
-
*
|
|
214
|
-
*
|
|
215
|
-
* "
|
|
212
|
+
* isRequired: false,
|
|
213
|
+
* name: "agreement_start_date",
|
|
214
|
+
* type: "TIMESTAMP"
|
|
216
215
|
* },
|
|
217
216
|
* {
|
|
218
|
-
*
|
|
219
|
-
*
|
|
220
|
-
* "
|
|
217
|
+
* isRequired: false,
|
|
218
|
+
* name: "agreement_end_date",
|
|
219
|
+
* type: "TIMESTAMP"
|
|
221
220
|
* },
|
|
222
221
|
* {
|
|
223
|
-
*
|
|
224
|
-
*
|
|
225
|
-
* "
|
|
222
|
+
* isRequired: false,
|
|
223
|
+
* name: "shipping_instr_code",
|
|
224
|
+
* type: "STRING"
|
|
226
225
|
* },
|
|
227
226
|
* {
|
|
228
|
-
*
|
|
229
|
-
*
|
|
230
|
-
* "
|
|
227
|
+
* isRequired: false,
|
|
228
|
+
* name: "payment_terms_code",
|
|
229
|
+
* type: "STRING"
|
|
231
230
|
* },
|
|
232
231
|
* {
|
|
233
|
-
*
|
|
234
|
-
*
|
|
235
|
-
* "
|
|
232
|
+
* isRequired: false,
|
|
233
|
+
* name: "std_terms_agreement",
|
|
234
|
+
* type: "STRING"
|
|
236
235
|
* },
|
|
237
236
|
* {
|
|
238
|
-
*
|
|
239
|
-
*
|
|
240
|
-
* "
|
|
237
|
+
* isRequired: false,
|
|
238
|
+
* name: "std_terms_agreement_ver",
|
|
239
|
+
* type: "STRING"
|
|
241
240
|
* },
|
|
242
241
|
* {
|
|
243
|
-
*
|
|
244
|
-
*
|
|
245
|
-
* "
|
|
242
|
+
* isRequired: false,
|
|
243
|
+
* name: "agreement_number",
|
|
244
|
+
* type: "STRING"
|
|
246
245
|
* },
|
|
247
246
|
* {
|
|
248
|
-
*
|
|
249
|
-
*
|
|
250
|
-
* "
|
|
247
|
+
* isRequired: false,
|
|
248
|
+
* name: "source",
|
|
249
|
+
* type: "STRING"
|
|
251
250
|
* },
|
|
252
251
|
* {
|
|
253
|
-
*
|
|
254
|
-
*
|
|
255
|
-
* "
|
|
252
|
+
* isRequired: false,
|
|
253
|
+
* name: "source_update_dttm",
|
|
254
|
+
* type: "TIMESTAMP"
|
|
256
255
|
* },
|
|
257
256
|
* {
|
|
258
|
-
*
|
|
259
|
-
*
|
|
260
|
-
* "
|
|
257
|
+
* isRequired: false,
|
|
258
|
+
* name: "source_event_id",
|
|
259
|
+
* type: "STRING"
|
|
261
260
|
* },
|
|
262
261
|
* {
|
|
263
|
-
*
|
|
264
|
-
*
|
|
265
|
-
* "
|
|
262
|
+
* isRequired: false,
|
|
263
|
+
* name: "db_creation_dttm",
|
|
264
|
+
* type: "TIMESTAMP"
|
|
266
265
|
* },
|
|
267
266
|
* {
|
|
268
|
-
*
|
|
269
|
-
*
|
|
270
|
-
* "
|
|
267
|
+
* isRequired: false,
|
|
268
|
+
* name: "db_updation_dttm",
|
|
269
|
+
* type: "TIMESTAMP"
|
|
271
270
|
* }
|
|
272
|
-
* ]
|
|
271
|
+
* ],
|
|
272
|
+
* name: "InboundOrder"
|
|
273
273
|
* }
|
|
274
274
|
* }
|
|
275
275
|
* }
|
|
276
276
|
* *\/
|
|
277
|
-
* // example id: example-1
|
|
278
277
|
* ```
|
|
279
278
|
*
|
|
280
279
|
* @example Get proporties of an existing custom dataset
|
|
281
280
|
* ```javascript
|
|
282
281
|
* //
|
|
283
282
|
* const input = {
|
|
284
|
-
*
|
|
285
|
-
*
|
|
286
|
-
*
|
|
283
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
284
|
+
* name: "my_dataset",
|
|
285
|
+
* namespace: "default"
|
|
287
286
|
* };
|
|
288
287
|
* const command = new GetDataLakeDatasetCommand(input);
|
|
289
288
|
* const response = await client.send(command);
|
|
290
|
-
* /* response
|
|
289
|
+
* /* response is
|
|
291
290
|
* {
|
|
292
|
-
*
|
|
293
|
-
*
|
|
294
|
-
*
|
|
295
|
-
* "
|
|
296
|
-
*
|
|
297
|
-
*
|
|
298
|
-
* "
|
|
299
|
-
*
|
|
300
|
-
*
|
|
301
|
-
*
|
|
302
|
-
* "fields": [
|
|
291
|
+
* dataset: {
|
|
292
|
+
* arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset",
|
|
293
|
+
* createdTime: 1.727116807751E9,
|
|
294
|
+
* description: "This is a custom dataset",
|
|
295
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
296
|
+
* lastModifiedTime: 1.727116807751E9,
|
|
297
|
+
* name: "my_dataset",
|
|
298
|
+
* namespace: "default",
|
|
299
|
+
* schema: {
|
|
300
|
+
* fields: [
|
|
303
301
|
* {
|
|
304
|
-
*
|
|
305
|
-
*
|
|
306
|
-
* "
|
|
302
|
+
* isRequired: true,
|
|
303
|
+
* name: "id",
|
|
304
|
+
* type: "INT"
|
|
307
305
|
* },
|
|
308
306
|
* {
|
|
309
|
-
*
|
|
310
|
-
*
|
|
311
|
-
* "
|
|
307
|
+
* isRequired: true,
|
|
308
|
+
* name: "description",
|
|
309
|
+
* type: "STRING"
|
|
312
310
|
* },
|
|
313
311
|
* {
|
|
314
|
-
*
|
|
315
|
-
*
|
|
316
|
-
* "
|
|
312
|
+
* isRequired: false,
|
|
313
|
+
* name: "price",
|
|
314
|
+
* type: "DOUBLE"
|
|
317
315
|
* },
|
|
318
316
|
* {
|
|
319
|
-
*
|
|
320
|
-
*
|
|
321
|
-
* "
|
|
317
|
+
* isRequired: false,
|
|
318
|
+
* name: "creation_time",
|
|
319
|
+
* type: "TIMESTAMP"
|
|
322
320
|
* }
|
|
323
|
-
* ]
|
|
321
|
+
* ],
|
|
322
|
+
* name: "MyDataset"
|
|
324
323
|
* }
|
|
325
324
|
* }
|
|
326
325
|
* }
|
|
327
326
|
* *\/
|
|
328
|
-
* // example id: example-2
|
|
329
327
|
* ```
|
|
330
328
|
*
|
|
329
|
+
* @public
|
|
331
330
|
*/
|
|
332
331
|
export declare class GetDataLakeDatasetCommand extends GetDataLakeDatasetCommand_base {
|
|
333
332
|
/** @internal type navigation helper, not in runtime. */
|