@aws-sdk/client-snowball 3.315.0 → 3.317.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/Snowball.js +30 -364
- package/dist-cjs/models/models_0.js +15 -12
- package/dist-cjs/protocols/Aws_json1_1.js +114 -7
- package/dist-es/Snowball.js +30 -364
- package/dist-es/models/models_0.js +14 -11
- package/dist-es/protocols/Aws_json1_1.js +115 -8
- package/dist-types/Snowball.d.ts +38 -254
- package/dist-types/commands/CreateClusterCommand.d.ts +15 -3
- package/dist-types/commands/CreateJobCommand.d.ts +37 -5
- package/dist-types/commands/CreateLongTermPricingCommand.d.ts +2 -2
- package/dist-types/commands/ListCompatibleImagesCommand.d.ts +3 -4
- package/dist-types/commands/UpdateClusterCommand.d.ts +7 -1
- package/dist-types/commands/UpdateJobCommand.d.ts +8 -2
- package/dist-types/models/models_0.d.ts +122 -63
- package/dist-types/ts3.4/Snowball.d.ts +2 -1
- package/dist-types/ts3.4/models/models_0.d.ts +39 -24
- package/package.json +6 -6
package/dist-types/Snowball.d.ts
CHANGED
|
@@ -26,388 +26,172 @@ import { UpdateJobCommandInput, UpdateJobCommandOutput } from "./commands/Update
|
|
|
26
26
|
import { UpdateJobShipmentStateCommandInput, UpdateJobShipmentStateCommandOutput } from "./commands/UpdateJobShipmentStateCommand";
|
|
27
27
|
import { UpdateLongTermPricingCommandInput, UpdateLongTermPricingCommandOutput } from "./commands/UpdateLongTermPricingCommand";
|
|
28
28
|
import { SnowballClient } from "./SnowballClient";
|
|
29
|
-
|
|
30
|
-
* @public
|
|
31
|
-
* <p>The Amazon Web Services Snow Family provides a petabyte-scale data transport solution that uses
|
|
32
|
-
* secure devices to transfer large amounts of data between your on-premises data centers and
|
|
33
|
-
* Amazon Simple Storage Service (Amazon S3). The Snow Family commands described here provide access to the same
|
|
34
|
-
* functionality that is available in the Amazon Web Services Snow Family Management Console, which enables you to create
|
|
35
|
-
* and manage jobs for a Snow Family device. To transfer data locally with a Snow Family device,
|
|
36
|
-
* you'll need to use the Snowball Edge client or the Amazon S3 API Interface for Snowball or OpsHub for Snow Family. For more information, see the <a href="https://docs.aws.amazon.com/AWSImportExport/latest/ug/api-reference.html">User Guide</a>.</p>
|
|
37
|
-
*/
|
|
38
|
-
export declare class Snowball extends SnowballClient {
|
|
29
|
+
export interface Snowball {
|
|
39
30
|
/**
|
|
40
|
-
* @
|
|
41
|
-
* <p>Cancels a cluster job. You can only cancel a cluster job while it's in the
|
|
42
|
-
* <code>AwaitingQuorum</code> status. You'll have at least an hour after creating a cluster
|
|
43
|
-
* job to cancel it.</p>
|
|
31
|
+
* @see {@link CancelClusterCommand}
|
|
44
32
|
*/
|
|
45
33
|
cancelCluster(args: CancelClusterCommandInput, options?: __HttpHandlerOptions): Promise<CancelClusterCommandOutput>;
|
|
46
34
|
cancelCluster(args: CancelClusterCommandInput, cb: (err: any, data?: CancelClusterCommandOutput) => void): void;
|
|
47
35
|
cancelCluster(args: CancelClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelClusterCommandOutput) => void): void;
|
|
48
36
|
/**
|
|
49
|
-
* @
|
|
50
|
-
* <p>Cancels the specified job. You can only cancel a job before its <code>JobState</code>
|
|
51
|
-
* value changes to <code>PreparingAppliance</code>. Requesting the <code>ListJobs</code> or
|
|
52
|
-
* <code>DescribeJob</code> action returns a job's <code>JobState</code> as part of the
|
|
53
|
-
* response element data returned.</p>
|
|
37
|
+
* @see {@link CancelJobCommand}
|
|
54
38
|
*/
|
|
55
39
|
cancelJob(args: CancelJobCommandInput, options?: __HttpHandlerOptions): Promise<CancelJobCommandOutput>;
|
|
56
40
|
cancelJob(args: CancelJobCommandInput, cb: (err: any, data?: CancelJobCommandOutput) => void): void;
|
|
57
41
|
cancelJob(args: CancelJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelJobCommandOutput) => void): void;
|
|
58
42
|
/**
|
|
59
|
-
* @
|
|
60
|
-
* <p>Creates an address for a Snow device to be shipped to. In most regions,
|
|
61
|
-
* addresses are validated at the time of creation. The address you provide must be located
|
|
62
|
-
* within the serviceable area of your region. If the address is invalid or unsupported, then an
|
|
63
|
-
* exception is thrown.</p>
|
|
43
|
+
* @see {@link CreateAddressCommand}
|
|
64
44
|
*/
|
|
65
45
|
createAddress(args: CreateAddressCommandInput, options?: __HttpHandlerOptions): Promise<CreateAddressCommandOutput>;
|
|
66
46
|
createAddress(args: CreateAddressCommandInput, cb: (err: any, data?: CreateAddressCommandOutput) => void): void;
|
|
67
47
|
createAddress(args: CreateAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAddressCommandOutput) => void): void;
|
|
68
48
|
/**
|
|
69
|
-
* @
|
|
70
|
-
* <p>Creates an empty cluster. Each cluster supports five nodes. You use the <a>CreateJob</a> action separately to create the jobs for each of these nodes. The
|
|
71
|
-
* cluster does not ship until these five node jobs have been created.</p>
|
|
49
|
+
* @see {@link CreateClusterCommand}
|
|
72
50
|
*/
|
|
73
51
|
createCluster(args: CreateClusterCommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterCommandOutput>;
|
|
74
52
|
createCluster(args: CreateClusterCommandInput, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
|
|
75
53
|
createCluster(args: CreateClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
|
|
76
54
|
/**
|
|
77
|
-
* @
|
|
78
|
-
* <p>Creates a job to import or export data between Amazon S3 and your on-premises data
|
|
79
|
-
* center. Your Amazon Web Services account must have the right trust policies and permissions in
|
|
80
|
-
* place to create a job for a Snow device. If you're creating a job for a node in a cluster, you
|
|
81
|
-
* only need to provide the <code>clusterId</code> value; the other job attributes are inherited
|
|
82
|
-
* from the cluster. </p>
|
|
83
|
-
* <note>
|
|
84
|
-
* <p>Only the Snowball; Edge device type is supported when ordering clustered jobs.</p>
|
|
85
|
-
* <p>The device capacity is optional.</p>
|
|
86
|
-
* <p>Availability of device types differ by Amazon Web Services Region. For more information
|
|
87
|
-
* about Region availability, see <a href="https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services/?p=ngi&loc=4">Amazon Web Services Regional Services</a>.</p>
|
|
88
|
-
* </note>
|
|
89
|
-
* <p></p>
|
|
90
|
-
* <p class="title">
|
|
91
|
-
* <b>Snow Family devices and their capacities.</b>
|
|
92
|
-
* </p>
|
|
93
|
-
* <ul>
|
|
94
|
-
* <li>
|
|
95
|
-
* <p>Snow Family device type: <b>SNC1_SSD</b>
|
|
96
|
-
* </p>
|
|
97
|
-
* <ul>
|
|
98
|
-
* <li>
|
|
99
|
-
* <p>Capacity: T14</p>
|
|
100
|
-
* </li>
|
|
101
|
-
* <li>
|
|
102
|
-
* <p>Description: Snowcone </p>
|
|
103
|
-
* </li>
|
|
104
|
-
* </ul>
|
|
105
|
-
* <p></p>
|
|
106
|
-
* </li>
|
|
107
|
-
* <li>
|
|
108
|
-
* <p>Snow Family device type: <b>SNC1_HDD</b>
|
|
109
|
-
* </p>
|
|
110
|
-
* <ul>
|
|
111
|
-
* <li>
|
|
112
|
-
* <p>Capacity: T8</p>
|
|
113
|
-
* </li>
|
|
114
|
-
* <li>
|
|
115
|
-
* <p>Description: Snowcone </p>
|
|
116
|
-
* </li>
|
|
117
|
-
* </ul>
|
|
118
|
-
* <p></p>
|
|
119
|
-
* </li>
|
|
120
|
-
* <li>
|
|
121
|
-
* <p>Device type: <b>EDGE_S</b>
|
|
122
|
-
* </p>
|
|
123
|
-
* <ul>
|
|
124
|
-
* <li>
|
|
125
|
-
* <p>Capacity: T98</p>
|
|
126
|
-
* </li>
|
|
127
|
-
* <li>
|
|
128
|
-
* <p>Description: Snowball Edge Storage Optimized for data transfer only </p>
|
|
129
|
-
* </li>
|
|
130
|
-
* </ul>
|
|
131
|
-
* <p></p>
|
|
132
|
-
* </li>
|
|
133
|
-
* <li>
|
|
134
|
-
* <p>Device type: <b>EDGE_CG</b>
|
|
135
|
-
* </p>
|
|
136
|
-
* <ul>
|
|
137
|
-
* <li>
|
|
138
|
-
* <p>Capacity: T42</p>
|
|
139
|
-
* </li>
|
|
140
|
-
* <li>
|
|
141
|
-
* <p>Description: Snowball Edge Compute Optimized with GPU</p>
|
|
142
|
-
* </li>
|
|
143
|
-
* </ul>
|
|
144
|
-
* <p></p>
|
|
145
|
-
* </li>
|
|
146
|
-
* <li>
|
|
147
|
-
* <p>Device type: <b>EDGE_C</b>
|
|
148
|
-
* </p>
|
|
149
|
-
* <ul>
|
|
150
|
-
* <li>
|
|
151
|
-
* <p>Capacity: T42</p>
|
|
152
|
-
* </li>
|
|
153
|
-
* <li>
|
|
154
|
-
* <p>Description: Snowball Edge Compute Optimized without GPU</p>
|
|
155
|
-
* </li>
|
|
156
|
-
* </ul>
|
|
157
|
-
* <p></p>
|
|
158
|
-
* </li>
|
|
159
|
-
* <li>
|
|
160
|
-
* <p>Device type: <b>EDGE</b>
|
|
161
|
-
* </p>
|
|
162
|
-
* <ul>
|
|
163
|
-
* <li>
|
|
164
|
-
* <p>Capacity: T100</p>
|
|
165
|
-
* </li>
|
|
166
|
-
* <li>
|
|
167
|
-
* <p>Description: Snowball Edge Storage Optimized with EC2 Compute</p>
|
|
168
|
-
* </li>
|
|
169
|
-
* </ul>
|
|
170
|
-
* <p></p>
|
|
171
|
-
* </li>
|
|
172
|
-
* <li>
|
|
173
|
-
* <p>Device type: <b>STANDARD</b>
|
|
174
|
-
* </p>
|
|
175
|
-
* <ul>
|
|
176
|
-
* <li>
|
|
177
|
-
* <p>Capacity: T50</p>
|
|
178
|
-
* </li>
|
|
179
|
-
* <li>
|
|
180
|
-
* <p>Description: Original Snowball device</p>
|
|
181
|
-
* <note>
|
|
182
|
-
* <p>This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region
|
|
183
|
-
* </p>
|
|
184
|
-
* </note>
|
|
185
|
-
* </li>
|
|
186
|
-
* </ul>
|
|
187
|
-
* <p></p>
|
|
188
|
-
* </li>
|
|
189
|
-
* <li>
|
|
190
|
-
* <p>Device type: <b>STANDARD</b>
|
|
191
|
-
* </p>
|
|
192
|
-
* <ul>
|
|
193
|
-
* <li>
|
|
194
|
-
* <p>Capacity: T80</p>
|
|
195
|
-
* </li>
|
|
196
|
-
* <li>
|
|
197
|
-
* <p>Description: Original Snowball device</p>
|
|
198
|
-
* <note>
|
|
199
|
-
* <p>This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region. </p>
|
|
200
|
-
* </note>
|
|
201
|
-
* </li>
|
|
202
|
-
* </ul>
|
|
203
|
-
* <p></p>
|
|
204
|
-
* </li>
|
|
205
|
-
* </ul>
|
|
55
|
+
* @see {@link CreateJobCommand}
|
|
206
56
|
*/
|
|
207
57
|
createJob(args: CreateJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateJobCommandOutput>;
|
|
208
58
|
createJob(args: CreateJobCommandInput, cb: (err: any, data?: CreateJobCommandOutput) => void): void;
|
|
209
59
|
createJob(args: CreateJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateJobCommandOutput) => void): void;
|
|
210
60
|
/**
|
|
211
|
-
* @
|
|
212
|
-
* <p>Creates a job with the long-term usage option for a device. The long-term usage is a
|
|
213
|
-
* 1-year or 3-year long-term pricing type for the device. You are billed upfront, and Amazon Web Services provides discounts for long-term pricing.
|
|
214
|
-
* </p>
|
|
61
|
+
* @see {@link CreateLongTermPricingCommand}
|
|
215
62
|
*/
|
|
216
63
|
createLongTermPricing(args: CreateLongTermPricingCommandInput, options?: __HttpHandlerOptions): Promise<CreateLongTermPricingCommandOutput>;
|
|
217
64
|
createLongTermPricing(args: CreateLongTermPricingCommandInput, cb: (err: any, data?: CreateLongTermPricingCommandOutput) => void): void;
|
|
218
65
|
createLongTermPricing(args: CreateLongTermPricingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLongTermPricingCommandOutput) => void): void;
|
|
219
66
|
/**
|
|
220
|
-
* @
|
|
221
|
-
* <p>Creates a shipping label that will be used to return the Snow device to Amazon Web Services.</p>
|
|
67
|
+
* @see {@link CreateReturnShippingLabelCommand}
|
|
222
68
|
*/
|
|
223
69
|
createReturnShippingLabel(args: CreateReturnShippingLabelCommandInput, options?: __HttpHandlerOptions): Promise<CreateReturnShippingLabelCommandOutput>;
|
|
224
70
|
createReturnShippingLabel(args: CreateReturnShippingLabelCommandInput, cb: (err: any, data?: CreateReturnShippingLabelCommandOutput) => void): void;
|
|
225
71
|
createReturnShippingLabel(args: CreateReturnShippingLabelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReturnShippingLabelCommandOutput) => void): void;
|
|
226
72
|
/**
|
|
227
|
-
* @
|
|
228
|
-
* <p>Takes an <code>AddressId</code> and returns specific details about that address in the
|
|
229
|
-
* form of an <code>Address</code> object.</p>
|
|
73
|
+
* @see {@link DescribeAddressCommand}
|
|
230
74
|
*/
|
|
231
75
|
describeAddress(args: DescribeAddressCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAddressCommandOutput>;
|
|
232
76
|
describeAddress(args: DescribeAddressCommandInput, cb: (err: any, data?: DescribeAddressCommandOutput) => void): void;
|
|
233
77
|
describeAddress(args: DescribeAddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAddressCommandOutput) => void): void;
|
|
234
78
|
/**
|
|
235
|
-
* @
|
|
236
|
-
* <p>Returns a specified number of <code>ADDRESS</code> objects. Calling this API in one of
|
|
237
|
-
* the US regions will return addresses from the list of all addresses associated with this
|
|
238
|
-
* account in all US regions.</p>
|
|
79
|
+
* @see {@link DescribeAddressesCommand}
|
|
239
80
|
*/
|
|
240
81
|
describeAddresses(args: DescribeAddressesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAddressesCommandOutput>;
|
|
241
82
|
describeAddresses(args: DescribeAddressesCommandInput, cb: (err: any, data?: DescribeAddressesCommandOutput) => void): void;
|
|
242
83
|
describeAddresses(args: DescribeAddressesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAddressesCommandOutput) => void): void;
|
|
243
84
|
/**
|
|
244
|
-
* @
|
|
245
|
-
* <p>Returns information about a specific cluster including shipping information, cluster
|
|
246
|
-
* status, and other important metadata.</p>
|
|
85
|
+
* @see {@link DescribeClusterCommand}
|
|
247
86
|
*/
|
|
248
87
|
describeCluster(args: DescribeClusterCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterCommandOutput>;
|
|
249
88
|
describeCluster(args: DescribeClusterCommandInput, cb: (err: any, data?: DescribeClusterCommandOutput) => void): void;
|
|
250
89
|
describeCluster(args: DescribeClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterCommandOutput) => void): void;
|
|
251
90
|
/**
|
|
252
|
-
* @
|
|
253
|
-
* <p>Returns information about a specific job including shipping information, job status,
|
|
254
|
-
* and other important metadata. </p>
|
|
91
|
+
* @see {@link DescribeJobCommand}
|
|
255
92
|
*/
|
|
256
93
|
describeJob(args: DescribeJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobCommandOutput>;
|
|
257
94
|
describeJob(args: DescribeJobCommandInput, cb: (err: any, data?: DescribeJobCommandOutput) => void): void;
|
|
258
95
|
describeJob(args: DescribeJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobCommandOutput) => void): void;
|
|
259
96
|
/**
|
|
260
|
-
* @
|
|
261
|
-
* <p>Information on the shipping label of a Snow device that is being returned to Amazon Web Services.</p>
|
|
97
|
+
* @see {@link DescribeReturnShippingLabelCommand}
|
|
262
98
|
*/
|
|
263
99
|
describeReturnShippingLabel(args: DescribeReturnShippingLabelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReturnShippingLabelCommandOutput>;
|
|
264
100
|
describeReturnShippingLabel(args: DescribeReturnShippingLabelCommandInput, cb: (err: any, data?: DescribeReturnShippingLabelCommandOutput) => void): void;
|
|
265
101
|
describeReturnShippingLabel(args: DescribeReturnShippingLabelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReturnShippingLabelCommandOutput) => void): void;
|
|
266
102
|
/**
|
|
267
|
-
* @
|
|
268
|
-
* <p>Returns a link to an Amazon S3 presigned URL for the manifest file associated with the
|
|
269
|
-
* specified <code>JobId</code> value. You can access the manifest file for up to 60 minutes
|
|
270
|
-
* after this request has been made. To access the manifest file after 60 minutes have passed,
|
|
271
|
-
* you'll have to make another call to the <code>GetJobManifest</code> action.</p>
|
|
272
|
-
* <p>The manifest is an encrypted file that you can download after your job enters the
|
|
273
|
-
* <code>WithCustomer</code> status. This is the only valid status for calling this API as the
|
|
274
|
-
* manifest and <code>UnlockCode</code> code value are used for securing your device and should
|
|
275
|
-
* only be used when you have the device. The manifest is decrypted by using the
|
|
276
|
-
* <code>UnlockCode</code> code value, when you pass both values to the Snow device through the
|
|
277
|
-
* Snowball client when the client is started for the first time. </p>
|
|
278
|
-
* <p>As a best practice, we recommend that you don't save a copy of an
|
|
279
|
-
* <code>UnlockCode</code> value in the same location as the manifest file for that job. Saving
|
|
280
|
-
* these separately helps prevent unauthorized parties from gaining access to the Snow device
|
|
281
|
-
* associated with that job.</p>
|
|
282
|
-
* <p>The credentials of a given job, including its manifest file and unlock code, expire 360
|
|
283
|
-
* days after the job is created.</p>
|
|
103
|
+
* @see {@link GetJobManifestCommand}
|
|
284
104
|
*/
|
|
285
105
|
getJobManifest(args: GetJobManifestCommandInput, options?: __HttpHandlerOptions): Promise<GetJobManifestCommandOutput>;
|
|
286
106
|
getJobManifest(args: GetJobManifestCommandInput, cb: (err: any, data?: GetJobManifestCommandOutput) => void): void;
|
|
287
107
|
getJobManifest(args: GetJobManifestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobManifestCommandOutput) => void): void;
|
|
288
108
|
/**
|
|
289
|
-
* @
|
|
290
|
-
* <p>Returns the <code>UnlockCode</code> code value for the specified job. A particular
|
|
291
|
-
* <code>UnlockCode</code> value can be accessed for up to 360 days after the associated job
|
|
292
|
-
* has been created.</p>
|
|
293
|
-
* <p>The <code>UnlockCode</code> value is a 29-character code with 25 alphanumeric
|
|
294
|
-
* characters and 4 hyphens. This code is used to decrypt the manifest file when it is passed
|
|
295
|
-
* along with the manifest to the Snow device through the Snowball client when the client is
|
|
296
|
-
* started for the first time. The only valid status for calling this API is
|
|
297
|
-
* <code>WithCustomer</code> as the manifest and <code>Unlock</code> code values are used for
|
|
298
|
-
* securing your device and should only be used when you have the device.</p>
|
|
299
|
-
* <p>As a best practice, we recommend that you don't save a copy of the
|
|
300
|
-
* <code>UnlockCode</code> in the same location as the manifest file for that job. Saving these
|
|
301
|
-
* separately helps prevent unauthorized parties from gaining access to the Snow device
|
|
302
|
-
* associated with that job.</p>
|
|
109
|
+
* @see {@link GetJobUnlockCodeCommand}
|
|
303
110
|
*/
|
|
304
111
|
getJobUnlockCode(args: GetJobUnlockCodeCommandInput, options?: __HttpHandlerOptions): Promise<GetJobUnlockCodeCommandOutput>;
|
|
305
112
|
getJobUnlockCode(args: GetJobUnlockCodeCommandInput, cb: (err: any, data?: GetJobUnlockCodeCommandOutput) => void): void;
|
|
306
113
|
getJobUnlockCode(args: GetJobUnlockCodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobUnlockCodeCommandOutput) => void): void;
|
|
307
114
|
/**
|
|
308
|
-
* @
|
|
309
|
-
* <p>Returns information about the Snow Family service limit for your account, and also the
|
|
310
|
-
* number of Snow devices your account has in use.</p>
|
|
311
|
-
* <p>The default service limit for the number of Snow devices that you can have at one time
|
|
312
|
-
* is 1. If you want to increase your service limit, contact Amazon Web Services Support.</p>
|
|
115
|
+
* @see {@link GetSnowballUsageCommand}
|
|
313
116
|
*/
|
|
314
117
|
getSnowballUsage(args: GetSnowballUsageCommandInput, options?: __HttpHandlerOptions): Promise<GetSnowballUsageCommandOutput>;
|
|
315
118
|
getSnowballUsage(args: GetSnowballUsageCommandInput, cb: (err: any, data?: GetSnowballUsageCommandOutput) => void): void;
|
|
316
119
|
getSnowballUsage(args: GetSnowballUsageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSnowballUsageCommandOutput) => void): void;
|
|
317
120
|
/**
|
|
318
|
-
* @
|
|
319
|
-
* <p>Returns an Amazon S3 presigned URL for an update file associated with a specified
|
|
320
|
-
* <code>JobId</code>.</p>
|
|
121
|
+
* @see {@link GetSoftwareUpdatesCommand}
|
|
321
122
|
*/
|
|
322
123
|
getSoftwareUpdates(args: GetSoftwareUpdatesCommandInput, options?: __HttpHandlerOptions): Promise<GetSoftwareUpdatesCommandOutput>;
|
|
323
124
|
getSoftwareUpdates(args: GetSoftwareUpdatesCommandInput, cb: (err: any, data?: GetSoftwareUpdatesCommandOutput) => void): void;
|
|
324
125
|
getSoftwareUpdates(args: GetSoftwareUpdatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSoftwareUpdatesCommandOutput) => void): void;
|
|
325
126
|
/**
|
|
326
|
-
* @
|
|
327
|
-
* <p>Returns an array of <code>JobListEntry</code> objects of the specified length. Each
|
|
328
|
-
* <code>JobListEntry</code> object is for a job in the specified cluster and contains a job's
|
|
329
|
-
* state, a job's ID, and other information.</p>
|
|
127
|
+
* @see {@link ListClusterJobsCommand}
|
|
330
128
|
*/
|
|
331
129
|
listClusterJobs(args: ListClusterJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListClusterJobsCommandOutput>;
|
|
332
130
|
listClusterJobs(args: ListClusterJobsCommandInput, cb: (err: any, data?: ListClusterJobsCommandOutput) => void): void;
|
|
333
131
|
listClusterJobs(args: ListClusterJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClusterJobsCommandOutput) => void): void;
|
|
334
132
|
/**
|
|
335
|
-
* @
|
|
336
|
-
* <p>Returns an array of <code>ClusterListEntry</code> objects of the specified length. Each
|
|
337
|
-
* <code>ClusterListEntry</code> object contains a cluster's state, a cluster's ID, and other
|
|
338
|
-
* important status information.</p>
|
|
133
|
+
* @see {@link ListClustersCommand}
|
|
339
134
|
*/
|
|
340
135
|
listClusters(args: ListClustersCommandInput, options?: __HttpHandlerOptions): Promise<ListClustersCommandOutput>;
|
|
341
136
|
listClusters(args: ListClustersCommandInput, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
|
|
342
137
|
listClusters(args: ListClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
|
|
343
138
|
/**
|
|
344
|
-
* @
|
|
345
|
-
* <p>This action returns a list of the different Amazon EC2 Amazon Machine Images (AMIs)
|
|
346
|
-
* that are owned by your Amazon Web Services accountthat would be supported for use on a Snow
|
|
347
|
-
* device. Currently, supported AMIs are based on the CentOS 7 (x86_64) - with Updates HVM,
|
|
348
|
-
* Ubuntu Server 14.04 LTS (HVM), and Ubuntu 16.04 LTS - Xenial (HVM) images, available on the
|
|
349
|
-
* Amazon Web Services Marketplace.</p>
|
|
139
|
+
* @see {@link ListCompatibleImagesCommand}
|
|
350
140
|
*/
|
|
351
141
|
listCompatibleImages(args: ListCompatibleImagesCommandInput, options?: __HttpHandlerOptions): Promise<ListCompatibleImagesCommandOutput>;
|
|
352
142
|
listCompatibleImages(args: ListCompatibleImagesCommandInput, cb: (err: any, data?: ListCompatibleImagesCommandOutput) => void): void;
|
|
353
143
|
listCompatibleImages(args: ListCompatibleImagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCompatibleImagesCommandOutput) => void): void;
|
|
354
144
|
/**
|
|
355
|
-
* @
|
|
356
|
-
* <p>Returns an array of <code>JobListEntry</code> objects of the specified length. Each
|
|
357
|
-
* <code>JobListEntry</code> object contains a job's state, a job's ID, and a value that
|
|
358
|
-
* indicates whether the job is a job part, in the case of export jobs. Calling this API action
|
|
359
|
-
* in one of the US regions will return jobs from the list of all jobs associated with this
|
|
360
|
-
* account in all US regions.</p>
|
|
145
|
+
* @see {@link ListJobsCommand}
|
|
361
146
|
*/
|
|
362
147
|
listJobs(args: ListJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobsCommandOutput>;
|
|
363
148
|
listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
364
149
|
listJobs(args: ListJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
365
150
|
/**
|
|
366
|
-
* @
|
|
367
|
-
* <p>Lists all long-term pricing types.</p>
|
|
151
|
+
* @see {@link ListLongTermPricingCommand}
|
|
368
152
|
*/
|
|
369
153
|
listLongTermPricing(args: ListLongTermPricingCommandInput, options?: __HttpHandlerOptions): Promise<ListLongTermPricingCommandOutput>;
|
|
370
154
|
listLongTermPricing(args: ListLongTermPricingCommandInput, cb: (err: any, data?: ListLongTermPricingCommandOutput) => void): void;
|
|
371
155
|
listLongTermPricing(args: ListLongTermPricingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLongTermPricingCommandOutput) => void): void;
|
|
372
156
|
/**
|
|
373
|
-
* @
|
|
374
|
-
* <p>Lists all supported versions for Snow on-device services. Returns an
|
|
375
|
-
* array of <code>ServiceVersion</code> object containing the supported versions for a particular service.</p>
|
|
157
|
+
* @see {@link ListServiceVersionsCommand}
|
|
376
158
|
*/
|
|
377
159
|
listServiceVersions(args: ListServiceVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceVersionsCommandOutput>;
|
|
378
160
|
listServiceVersions(args: ListServiceVersionsCommandInput, cb: (err: any, data?: ListServiceVersionsCommandOutput) => void): void;
|
|
379
161
|
listServiceVersions(args: ListServiceVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceVersionsCommandOutput) => void): void;
|
|
380
162
|
/**
|
|
381
|
-
* @
|
|
382
|
-
* <p>While a cluster's <code>ClusterState</code> value is in the <code>AwaitingQuorum</code>
|
|
383
|
-
* state, you can update some of the information associated with a cluster. Once the cluster
|
|
384
|
-
* changes to a different job state, usually 60 minutes after the cluster being created, this
|
|
385
|
-
* action is no longer available.</p>
|
|
163
|
+
* @see {@link UpdateClusterCommand}
|
|
386
164
|
*/
|
|
387
165
|
updateCluster(args: UpdateClusterCommandInput, options?: __HttpHandlerOptions): Promise<UpdateClusterCommandOutput>;
|
|
388
166
|
updateCluster(args: UpdateClusterCommandInput, cb: (err: any, data?: UpdateClusterCommandOutput) => void): void;
|
|
389
167
|
updateCluster(args: UpdateClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClusterCommandOutput) => void): void;
|
|
390
168
|
/**
|
|
391
|
-
* @
|
|
392
|
-
* <p>While a job's <code>JobState</code> value is <code>New</code>, you can update some of
|
|
393
|
-
* the information associated with a job. Once the job changes to a different job state, usually
|
|
394
|
-
* within 60 minutes of the job being created, this action is no longer available.</p>
|
|
169
|
+
* @see {@link UpdateJobCommand}
|
|
395
170
|
*/
|
|
396
171
|
updateJob(args: UpdateJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateJobCommandOutput>;
|
|
397
172
|
updateJob(args: UpdateJobCommandInput, cb: (err: any, data?: UpdateJobCommandOutput) => void): void;
|
|
398
173
|
updateJob(args: UpdateJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateJobCommandOutput) => void): void;
|
|
399
174
|
/**
|
|
400
|
-
* @
|
|
401
|
-
* <p>Updates the state when a shipment state changes to a different state.</p>
|
|
175
|
+
* @see {@link UpdateJobShipmentStateCommand}
|
|
402
176
|
*/
|
|
403
177
|
updateJobShipmentState(args: UpdateJobShipmentStateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateJobShipmentStateCommandOutput>;
|
|
404
178
|
updateJobShipmentState(args: UpdateJobShipmentStateCommandInput, cb: (err: any, data?: UpdateJobShipmentStateCommandOutput) => void): void;
|
|
405
179
|
updateJobShipmentState(args: UpdateJobShipmentStateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateJobShipmentStateCommandOutput) => void): void;
|
|
406
180
|
/**
|
|
407
|
-
* @
|
|
408
|
-
* <p>Updates the long-term pricing type.</p>
|
|
181
|
+
* @see {@link UpdateLongTermPricingCommand}
|
|
409
182
|
*/
|
|
410
183
|
updateLongTermPricing(args: UpdateLongTermPricingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLongTermPricingCommandOutput>;
|
|
411
184
|
updateLongTermPricing(args: UpdateLongTermPricingCommandInput, cb: (err: any, data?: UpdateLongTermPricingCommandOutput) => void): void;
|
|
412
185
|
updateLongTermPricing(args: UpdateLongTermPricingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLongTermPricingCommandOutput) => void): void;
|
|
413
186
|
}
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
* <p>The Amazon Web Services Snow Family provides a petabyte-scale data transport solution that uses
|
|
190
|
+
* secure devices to transfer large amounts of data between your on-premises data centers and
|
|
191
|
+
* Amazon Simple Storage Service (Amazon S3). The Snow Family commands described here provide access to the same
|
|
192
|
+
* functionality that is available in the Amazon Web Services Snow Family Management Console, which enables you to create
|
|
193
|
+
* and manage jobs for a Snow Family device. To transfer data locally with a Snow Family device,
|
|
194
|
+
* you'll need to use the Snowball Edge client or the Amazon S3 API Interface for Snowball or OpsHub for Snow Family. For more information, see the <a href="https://docs.aws.amazon.com/AWSImportExport/latest/ug/api-reference.html">User Guide</a>.</p>
|
|
195
|
+
*/
|
|
196
|
+
export declare class Snowball extends SnowballClient implements Snowball {
|
|
197
|
+
}
|
|
@@ -75,12 +75,18 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
|
|
|
75
75
|
* KubernetesVersion: "STRING_VALUE",
|
|
76
76
|
* EKSAnywhereVersion: "STRING_VALUE",
|
|
77
77
|
* },
|
|
78
|
+
* S3OnDeviceService: { // S3OnDeviceServiceConfiguration
|
|
79
|
+
* StorageLimit: Number("double"),
|
|
80
|
+
* StorageUnit: "TB",
|
|
81
|
+
* ServiceSize: Number("int"),
|
|
82
|
+
* FaultTolerance: Number("int"),
|
|
83
|
+
* },
|
|
78
84
|
* },
|
|
79
85
|
* Description: "STRING_VALUE",
|
|
80
86
|
* AddressId: "STRING_VALUE", // required
|
|
81
87
|
* KmsKeyARN: "STRING_VALUE",
|
|
82
|
-
* RoleARN: "STRING_VALUE",
|
|
83
|
-
* SnowballType: "STANDARD" || "EDGE" || "EDGE_C" || "EDGE_CG" || "EDGE_S" || "SNC1_HDD" || "SNC1_SSD" || "V3_5C", // required
|
|
88
|
+
* RoleARN: "STRING_VALUE",
|
|
89
|
+
* SnowballType: "STANDARD" || "EDGE" || "EDGE_C" || "EDGE_CG" || "EDGE_S" || "SNC1_HDD" || "SNC1_SSD" || "V3_5C" || "V3_5S", // required
|
|
84
90
|
* ShippingOption: "SECOND_DAY" || "NEXT_DAY" || "EXPRESS" || "STANDARD", // required
|
|
85
91
|
* Notification: { // Notification
|
|
86
92
|
* SnsTopicARN: "STRING_VALUE",
|
|
@@ -96,6 +102,12 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
|
|
|
96
102
|
* },
|
|
97
103
|
* },
|
|
98
104
|
* RemoteManagement: "INSTALLED_ONLY" || "INSTALLED_AUTOSTART",
|
|
105
|
+
* InitialClusterSize: Number("int"),
|
|
106
|
+
* ForceCreateJobs: true || false,
|
|
107
|
+
* LongTermPricingIds: [ // LongTermPricingIdList
|
|
108
|
+
* "STRING_VALUE",
|
|
109
|
+
* ],
|
|
110
|
+
* SnowballCapacityPreference: "T50" || "T80" || "T100" || "T42" || "T98" || "T8" || "T14" || "T32" || "NoPreference" || "T240",
|
|
99
111
|
* };
|
|
100
112
|
* const command = new CreateClusterCommand(input);
|
|
101
113
|
* const response = await client.send(command);
|
|
@@ -108,7 +120,7 @@ export interface CreateClusterCommandOutput extends CreateClusterResult, __Metad
|
|
|
108
120
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
109
121
|
*
|
|
110
122
|
* @throws {@link Ec2RequestFailedException} (client fault)
|
|
111
|
-
* <p>Your
|
|
123
|
+
* <p>Your user lacks the necessary Amazon EC2 permissions to perform the attempted
|
|
112
124
|
* action.</p>
|
|
113
125
|
*
|
|
114
126
|
* @throws {@link InvalidInputCombinationException} (client fault)
|
|
@@ -36,7 +36,7 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
36
36
|
* </p>
|
|
37
37
|
* <ul>
|
|
38
38
|
* <li>
|
|
39
|
-
* <p>
|
|
39
|
+
* <p>Device type: <b>SNC1_SSD</b>
|
|
40
40
|
* </p>
|
|
41
41
|
* <ul>
|
|
42
42
|
* <li>
|
|
@@ -49,7 +49,7 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
49
49
|
* <p></p>
|
|
50
50
|
* </li>
|
|
51
51
|
* <li>
|
|
52
|
-
* <p>
|
|
52
|
+
* <p>Device type: <b>SNC1_HDD</b>
|
|
53
53
|
* </p>
|
|
54
54
|
* <ul>
|
|
55
55
|
* <li>
|
|
@@ -146,6 +146,32 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
146
146
|
* </ul>
|
|
147
147
|
* <p></p>
|
|
148
148
|
* </li>
|
|
149
|
+
* <li>
|
|
150
|
+
* <p>Device type: <b>V3_5C</b>
|
|
151
|
+
* </p>
|
|
152
|
+
* <ul>
|
|
153
|
+
* <li>
|
|
154
|
+
* <p>Capacity: T32</p>
|
|
155
|
+
* </li>
|
|
156
|
+
* <li>
|
|
157
|
+
* <p>Description: Snowball Edge Compute Optimized without GPU</p>
|
|
158
|
+
* </li>
|
|
159
|
+
* </ul>
|
|
160
|
+
* <p></p>
|
|
161
|
+
* </li>
|
|
162
|
+
* <li>
|
|
163
|
+
* <p>Device type: <b>V3_5S</b>
|
|
164
|
+
* </p>
|
|
165
|
+
* <ul>
|
|
166
|
+
* <li>
|
|
167
|
+
* <p>Capacity: T240</p>
|
|
168
|
+
* </li>
|
|
169
|
+
* <li>
|
|
170
|
+
* <p>Description: Snowball Edge Storage Optimized 210TB</p>
|
|
171
|
+
* </li>
|
|
172
|
+
* </ul>
|
|
173
|
+
* <p></p>
|
|
174
|
+
* </li>
|
|
149
175
|
* </ul>
|
|
150
176
|
* @example
|
|
151
177
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -201,12 +227,18 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
201
227
|
* KubernetesVersion: "STRING_VALUE",
|
|
202
228
|
* EKSAnywhereVersion: "STRING_VALUE",
|
|
203
229
|
* },
|
|
230
|
+
* S3OnDeviceService: { // S3OnDeviceServiceConfiguration
|
|
231
|
+
* StorageLimit: Number("double"),
|
|
232
|
+
* StorageUnit: "TB",
|
|
233
|
+
* ServiceSize: Number("int"),
|
|
234
|
+
* FaultTolerance: Number("int"),
|
|
235
|
+
* },
|
|
204
236
|
* },
|
|
205
237
|
* Description: "STRING_VALUE",
|
|
206
238
|
* AddressId: "STRING_VALUE",
|
|
207
239
|
* KmsKeyARN: "STRING_VALUE",
|
|
208
240
|
* RoleARN: "STRING_VALUE",
|
|
209
|
-
* SnowballCapacityPreference: "T50" || "T80" || "T100" || "T42" || "T98" || "T8" || "T14" || "T32" || "NoPreference",
|
|
241
|
+
* SnowballCapacityPreference: "T50" || "T80" || "T100" || "T42" || "T98" || "T8" || "T14" || "T32" || "NoPreference" || "T240",
|
|
210
242
|
* ShippingOption: "SECOND_DAY" || "NEXT_DAY" || "EXPRESS" || "STANDARD",
|
|
211
243
|
* Notification: { // Notification
|
|
212
244
|
* SnsTopicARN: "STRING_VALUE",
|
|
@@ -216,7 +248,7 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
216
248
|
* NotifyAll: true || false,
|
|
217
249
|
* },
|
|
218
250
|
* ClusterId: "STRING_VALUE",
|
|
219
|
-
* SnowballType: "STANDARD" || "EDGE" || "EDGE_C" || "EDGE_CG" || "EDGE_S" || "SNC1_HDD" || "SNC1_SSD" || "V3_5C",
|
|
251
|
+
* SnowballType: "STANDARD" || "EDGE" || "EDGE_C" || "EDGE_CG" || "EDGE_S" || "SNC1_HDD" || "SNC1_SSD" || "V3_5C" || "V3_5S",
|
|
220
252
|
* ForwardingAddressId: "STRING_VALUE",
|
|
221
253
|
* TaxDocuments: { // TaxDocuments
|
|
222
254
|
* IND: { // INDTaxDocuments
|
|
@@ -249,7 +281,7 @@ export interface CreateJobCommandOutput extends CreateJobResult, __MetadataBeare
|
|
|
249
281
|
* create jobs until your cluster has exactly five nodes.</p>
|
|
250
282
|
*
|
|
251
283
|
* @throws {@link Ec2RequestFailedException} (client fault)
|
|
252
|
-
* <p>Your
|
|
284
|
+
* <p>Your user lacks the necessary Amazon EC2 permissions to perform the attempted
|
|
253
285
|
* action.</p>
|
|
254
286
|
*
|
|
255
287
|
* @throws {@link InvalidInputCombinationException} (client fault)
|
|
@@ -29,9 +29,9 @@ export interface CreateLongTermPricingCommandOutput extends CreateLongTermPricin
|
|
|
29
29
|
* // const { SnowballClient, CreateLongTermPricingCommand } = require("@aws-sdk/client-snowball"); // CommonJS import
|
|
30
30
|
* const client = new SnowballClient(config);
|
|
31
31
|
* const input = { // CreateLongTermPricingRequest
|
|
32
|
-
* LongTermPricingType: "OneYear" || "ThreeYear", // required
|
|
32
|
+
* LongTermPricingType: "OneYear" || "ThreeYear" || "OneMonth", // required
|
|
33
33
|
* IsLongTermPricingAutoRenew: true || false,
|
|
34
|
-
* SnowballType: "STANDARD" || "EDGE" || "EDGE_C" || "EDGE_CG" || "EDGE_S" || "SNC1_HDD" || "SNC1_SSD" || "V3_5C",
|
|
34
|
+
* SnowballType: "STANDARD" || "EDGE" || "EDGE_C" || "EDGE_CG" || "EDGE_S" || "SNC1_HDD" || "SNC1_SSD" || "V3_5C" || "V3_5S",
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreateLongTermPricingCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
@@ -21,9 +21,8 @@ export interface ListCompatibleImagesCommandOutput extends ListCompatibleImagesR
|
|
|
21
21
|
* @public
|
|
22
22
|
* <p>This action returns a list of the different Amazon EC2 Amazon Machine Images (AMIs)
|
|
23
23
|
* that are owned by your Amazon Web Services accountthat would be supported for use on a Snow
|
|
24
|
-
* device. Currently, supported AMIs are based on the
|
|
25
|
-
*
|
|
26
|
-
* Amazon Web Services Marketplace.</p>
|
|
24
|
+
* device. Currently, supported AMIs are based on the Amazon Linux-2, Ubuntu 20.04 LTS - Focal, or Ubuntu 22.04 LTS - Jammy images, available on the
|
|
25
|
+
* Amazon Web Services Marketplace. Ubuntu 16.04 LTS - Xenial (HVM) images are no longer supported in the Market, but still supported for use on devices through Amazon EC2 VM Import/Export and running locally in AMIs.</p>
|
|
27
26
|
* @example
|
|
28
27
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
28
|
* ```javascript
|
|
@@ -45,7 +44,7 @@ export interface ListCompatibleImagesCommandOutput extends ListCompatibleImagesR
|
|
|
45
44
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
46
45
|
*
|
|
47
46
|
* @throws {@link Ec2RequestFailedException} (client fault)
|
|
48
|
-
* <p>Your
|
|
47
|
+
* <p>Your user lacks the necessary Amazon EC2 permissions to perform the attempted
|
|
49
48
|
* action.</p>
|
|
50
49
|
*
|
|
51
50
|
* @throws {@link InvalidNextTokenException} (client fault)
|
|
@@ -79,6 +79,12 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResult, __Metad
|
|
|
79
79
|
* KubernetesVersion: "STRING_VALUE",
|
|
80
80
|
* EKSAnywhereVersion: "STRING_VALUE",
|
|
81
81
|
* },
|
|
82
|
+
* S3OnDeviceService: { // S3OnDeviceServiceConfiguration
|
|
83
|
+
* StorageLimit: Number("double"),
|
|
84
|
+
* StorageUnit: "TB",
|
|
85
|
+
* ServiceSize: Number("int"),
|
|
86
|
+
* FaultTolerance: Number("int"),
|
|
87
|
+
* },
|
|
82
88
|
* },
|
|
83
89
|
* AddressId: "STRING_VALUE",
|
|
84
90
|
* ShippingOption: "SECOND_DAY" || "NEXT_DAY" || "EXPRESS" || "STANDARD",
|
|
@@ -102,7 +108,7 @@ export interface UpdateClusterCommandOutput extends UpdateClusterResult, __Metad
|
|
|
102
108
|
* @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape.
|
|
103
109
|
*
|
|
104
110
|
* @throws {@link Ec2RequestFailedException} (client fault)
|
|
105
|
-
* <p>Your
|
|
111
|
+
* <p>Your user lacks the necessary Amazon EC2 permissions to perform the attempted
|
|
106
112
|
* action.</p>
|
|
107
113
|
*
|
|
108
114
|
* @throws {@link InvalidInputCombinationException} (client fault)
|