@aws-sdk/client-s3-control 3.451.0 → 3.454.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/README.md +64 -0
- package/dist-cjs/S3Control.js +16 -0
- package/dist-cjs/commands/CreateStorageLensGroupCommand.js +56 -0
- package/dist-cjs/commands/DeleteStorageLensGroupCommand.js +56 -0
- package/dist-cjs/commands/GetStorageLensGroupCommand.js +56 -0
- package/dist-cjs/commands/ListStorageLensGroupsCommand.js +56 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +56 -0
- package/dist-cjs/commands/TagResourceCommand.js +56 -0
- package/dist-cjs/commands/UntagResourceCommand.js +56 -0
- package/dist-cjs/commands/UpdateStorageLensGroupCommand.js +56 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/pagination/ListStorageLensGroupsPaginator.js +28 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restXml.js +968 -3
- package/dist-es/S3Control.js +16 -0
- package/dist-es/commands/CreateStorageLensGroupCommand.js +52 -0
- package/dist-es/commands/DeleteStorageLensGroupCommand.js +52 -0
- package/dist-es/commands/GetStorageLensGroupCommand.js +52 -0
- package/dist-es/commands/ListStorageLensGroupsCommand.js +52 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +52 -0
- package/dist-es/commands/TagResourceCommand.js +52 -0
- package/dist-es/commands/UntagResourceCommand.js +52 -0
- package/dist-es/commands/UpdateStorageLensGroupCommand.js +52 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/pagination/ListStorageLensGroupsPaginator.js +24 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restXml.js +949 -0
- package/dist-types/S3Control.d.ts +56 -0
- package/dist-types/S3ControlClient.d.ts +10 -2
- package/dist-types/commands/CreateStorageLensGroupCommand.d.ts +159 -0
- package/dist-types/commands/DeleteBucketLifecycleConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/DeleteStorageLensGroupCommand.d.ts +78 -0
- package/dist-types/commands/GetStorageLensConfigurationCommand.d.ts +10 -0
- package/dist-types/commands/GetStorageLensGroupCommand.d.ts +149 -0
- package/dist-types/commands/ListStorageLensGroupsCommand.d.ts +88 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
- package/dist-types/commands/PutStorageLensConfigurationCommand.d.ts +10 -0
- package/dist-types/commands/TagResourceCommand.d.ts +86 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +84 -0
- package/dist-types/commands/UpdateStorageLensGroupCommand.d.ts +148 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +555 -7
- package/dist-types/pagination/ListStorageLensGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restXml.d.ts +72 -0
- package/dist-types/ts3.4/S3Control.d.ts +136 -0
- package/dist-types/ts3.4/S3ControlClient.d.ts +50 -2
- package/dist-types/ts3.4/commands/CreateStorageLensGroupCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteStorageLensGroupCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetStorageLensGroupCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListStorageLensGroupsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateStorageLensGroupCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +101 -0
- package/dist-types/ts3.4/pagination/ListStorageLensGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +96 -0
- package/package.json +2 -2
|
@@ -254,35 +254,79 @@ export interface BucketLevel {
|
|
|
254
254
|
}
|
|
255
255
|
/**
|
|
256
256
|
* @public
|
|
257
|
-
* <p>
|
|
257
|
+
* <p> Indicates which Storage Lens group ARNs to include or exclude in the Storage Lens group
|
|
258
|
+
* aggregation. You can only attach Storage Lens groups to your Storage Lens dashboard if
|
|
259
|
+
* they're included in your Storage Lens group aggregation. If this value is left null, then
|
|
260
|
+
* all Storage Lens groups are selected. </p>
|
|
261
|
+
*/
|
|
262
|
+
export interface StorageLensGroupLevelSelectionCriteria {
|
|
263
|
+
/**
|
|
264
|
+
* @public
|
|
265
|
+
* <p>
|
|
266
|
+
* Indicates which Storage Lens group ARNs to include in the Storage Lens group aggregation.
|
|
267
|
+
* </p>
|
|
268
|
+
*/
|
|
269
|
+
Include?: string[];
|
|
270
|
+
/**
|
|
271
|
+
* @public
|
|
272
|
+
* <p> Indicates which Storage Lens group ARNs to exclude from the Storage Lens group
|
|
273
|
+
* aggregation. </p>
|
|
274
|
+
*/
|
|
275
|
+
Exclude?: string[];
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* @public
|
|
279
|
+
* <p>
|
|
280
|
+
* Specifies the Storage Lens groups to include in the Storage Lens group aggregation.
|
|
281
|
+
* </p>
|
|
282
|
+
*/
|
|
283
|
+
export interface StorageLensGroupLevel {
|
|
284
|
+
/**
|
|
285
|
+
* @public
|
|
286
|
+
* <p>
|
|
287
|
+
* Indicates which Storage Lens group ARNs to include or exclude in the Storage Lens group aggregation. If this value is left null, then all Storage Lens groups are selected.
|
|
288
|
+
* </p>
|
|
289
|
+
*/
|
|
290
|
+
SelectionCriteria?: StorageLensGroupLevelSelectionCriteria;
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* @public
|
|
294
|
+
* <p>A container element for the account-level Amazon S3 Storage Lens configuration.</p>
|
|
258
295
|
* <p>For more information about S3 Storage Lens, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens.html">Assessing your storage activity and usage with S3 Storage Lens</a> in the <i>Amazon S3 User Guide</i>. For a complete list of S3 Storage Lens metrics, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_metrics_glossary.html">S3 Storage Lens metrics glossary</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
259
296
|
*/
|
|
260
297
|
export interface AccountLevel {
|
|
261
298
|
/**
|
|
262
299
|
* @public
|
|
263
|
-
* <p>A container for S3 Storage Lens activity metrics.</p>
|
|
300
|
+
* <p>A container element for S3 Storage Lens activity metrics.</p>
|
|
264
301
|
*/
|
|
265
302
|
ActivityMetrics?: ActivityMetrics;
|
|
266
303
|
/**
|
|
267
304
|
* @public
|
|
268
|
-
* <p>A container for the S3 Storage Lens bucket-level configuration.</p>
|
|
305
|
+
* <p>A container element for the S3 Storage Lens bucket-level configuration.</p>
|
|
269
306
|
*/
|
|
270
307
|
BucketLevel: BucketLevel | undefined;
|
|
271
308
|
/**
|
|
272
309
|
* @public
|
|
273
|
-
* <p>A container for S3 Storage Lens advanced cost-optimization metrics.</p>
|
|
310
|
+
* <p>A container element for S3 Storage Lens advanced cost-optimization metrics.</p>
|
|
274
311
|
*/
|
|
275
312
|
AdvancedCostOptimizationMetrics?: AdvancedCostOptimizationMetrics;
|
|
276
313
|
/**
|
|
277
314
|
* @public
|
|
278
|
-
* <p>A container for S3 Storage Lens advanced data-protection metrics.</p>
|
|
315
|
+
* <p>A container element for S3 Storage Lens advanced data-protection metrics.</p>
|
|
279
316
|
*/
|
|
280
317
|
AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics;
|
|
281
318
|
/**
|
|
282
319
|
* @public
|
|
283
|
-
* <p>A container for detailed status code metrics. </p>
|
|
320
|
+
* <p>A container element for detailed status code metrics. </p>
|
|
284
321
|
*/
|
|
285
322
|
DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics;
|
|
323
|
+
/**
|
|
324
|
+
* @public
|
|
325
|
+
* <p>
|
|
326
|
+
* A container element for S3 Storage Lens groups metrics.
|
|
327
|
+
* </p>
|
|
328
|
+
*/
|
|
329
|
+
StorageLensGroupLevel?: StorageLensGroupLevel;
|
|
286
330
|
}
|
|
287
331
|
/**
|
|
288
332
|
* @public
|
|
@@ -1768,7 +1812,7 @@ export interface S3CopyObjectOperation {
|
|
|
1768
1812
|
* that
|
|
1769
1813
|
* you want Amazon S3 to use to create the checksum. For more
|
|
1770
1814
|
* information,
|
|
1771
|
-
* see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/
|
|
1815
|
+
* see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html"> Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1772
1816
|
*/
|
|
1773
1817
|
ChecksumAlgorithm?: S3ChecksumAlgorithm;
|
|
1774
1818
|
}
|
|
@@ -2167,6 +2211,272 @@ export interface CreateMultiRegionAccessPointResult {
|
|
|
2167
2211
|
*/
|
|
2168
2212
|
RequestTokenARN?: string;
|
|
2169
2213
|
}
|
|
2214
|
+
/**
|
|
2215
|
+
* @public
|
|
2216
|
+
* <p>
|
|
2217
|
+
* A filter condition that specifies the object age range of included objects in days. Only integers are supported.
|
|
2218
|
+
* </p>
|
|
2219
|
+
*/
|
|
2220
|
+
export interface MatchObjectAge {
|
|
2221
|
+
/**
|
|
2222
|
+
* @public
|
|
2223
|
+
* <p>
|
|
2224
|
+
* Specifies the maximum object age in days. Must be a positive whole number, greater than the minimum object age and less than or equal to 2,147,483,647.
|
|
2225
|
+
* </p>
|
|
2226
|
+
*/
|
|
2227
|
+
DaysGreaterThan?: number;
|
|
2228
|
+
/**
|
|
2229
|
+
* @public
|
|
2230
|
+
* <p>
|
|
2231
|
+
* Specifies the minimum object age in days. The value must be a positive whole number, greater than 0 and less than or equal to 2,147,483,647.
|
|
2232
|
+
* </p>
|
|
2233
|
+
*/
|
|
2234
|
+
DaysLessThan?: number;
|
|
2235
|
+
}
|
|
2236
|
+
/**
|
|
2237
|
+
* @public
|
|
2238
|
+
* <p>
|
|
2239
|
+
* A filter condition that specifies the object size range of included objects in bytes. Only integers are supported.
|
|
2240
|
+
* </p>
|
|
2241
|
+
*/
|
|
2242
|
+
export interface MatchObjectSize {
|
|
2243
|
+
/**
|
|
2244
|
+
* @public
|
|
2245
|
+
* <p>
|
|
2246
|
+
* Specifies the minimum object size in Bytes. The value must be a positive number, greater than 0 and less than 5 TB.
|
|
2247
|
+
* </p>
|
|
2248
|
+
*/
|
|
2249
|
+
BytesGreaterThan?: number;
|
|
2250
|
+
/**
|
|
2251
|
+
* @public
|
|
2252
|
+
* <p>
|
|
2253
|
+
* Specifies the maximum object size in Bytes. The value must be a positive number, greater than the minimum object size and less than 5 TB.
|
|
2254
|
+
* </p>
|
|
2255
|
+
*/
|
|
2256
|
+
BytesLessThan?: number;
|
|
2257
|
+
}
|
|
2258
|
+
/**
|
|
2259
|
+
* @public
|
|
2260
|
+
* <p>
|
|
2261
|
+
* A logical operator that allows multiple filter conditions to be joined for more complex comparisons of Storage Lens group data.
|
|
2262
|
+
* </p>
|
|
2263
|
+
*/
|
|
2264
|
+
export interface StorageLensGroupAndOperator {
|
|
2265
|
+
/**
|
|
2266
|
+
* @public
|
|
2267
|
+
* <p>
|
|
2268
|
+
* Contains a list of prefixes. At least one prefix must be specified. Up to 10 prefixes are allowed.
|
|
2269
|
+
* </p>
|
|
2270
|
+
*/
|
|
2271
|
+
MatchAnyPrefix?: string[];
|
|
2272
|
+
/**
|
|
2273
|
+
* @public
|
|
2274
|
+
* <p>
|
|
2275
|
+
* Contains a list of suffixes. At least one suffix must be specified. Up to 10 suffixes are allowed.
|
|
2276
|
+
* </p>
|
|
2277
|
+
*/
|
|
2278
|
+
MatchAnySuffix?: string[];
|
|
2279
|
+
/**
|
|
2280
|
+
* @public
|
|
2281
|
+
* <p>
|
|
2282
|
+
* Contains the list of object tags. At least one object tag must be specified. Up to 10 object tags are allowed.
|
|
2283
|
+
* </p>
|
|
2284
|
+
*/
|
|
2285
|
+
MatchAnyTag?: S3Tag[];
|
|
2286
|
+
/**
|
|
2287
|
+
* @public
|
|
2288
|
+
* <p>
|
|
2289
|
+
* Contains <code>DaysGreaterThan</code> and <code>DaysLessThan</code> to define the object age range (minimum and maximum number of days).
|
|
2290
|
+
* </p>
|
|
2291
|
+
*/
|
|
2292
|
+
MatchObjectAge?: MatchObjectAge;
|
|
2293
|
+
/**
|
|
2294
|
+
* @public
|
|
2295
|
+
* <p>
|
|
2296
|
+
* Contains <code>BytesGreaterThan</code> and <code>BytesLessThan</code> to define the object size range (minimum and maximum number of Bytes).
|
|
2297
|
+
* </p>
|
|
2298
|
+
*/
|
|
2299
|
+
MatchObjectSize?: MatchObjectSize;
|
|
2300
|
+
}
|
|
2301
|
+
/**
|
|
2302
|
+
* @public
|
|
2303
|
+
* <p>A container element for specifying <code>Or</code> rule conditions. The rule conditions
|
|
2304
|
+
* determine the subset of objects to which the <code>Or</code> rule applies. Objects can
|
|
2305
|
+
* match any of the listed filter conditions, which are joined by the <code>Or</code> logical operator.
|
|
2306
|
+
* Only one of each filter condition is allowed.</p>
|
|
2307
|
+
*/
|
|
2308
|
+
export interface StorageLensGroupOrOperator {
|
|
2309
|
+
/**
|
|
2310
|
+
* @public
|
|
2311
|
+
* <p> Filters objects that match any of the specified prefixes. </p>
|
|
2312
|
+
*/
|
|
2313
|
+
MatchAnyPrefix?: string[];
|
|
2314
|
+
/**
|
|
2315
|
+
* @public
|
|
2316
|
+
* <p>
|
|
2317
|
+
* Filters objects that match any of the specified suffixes.
|
|
2318
|
+
* </p>
|
|
2319
|
+
*/
|
|
2320
|
+
MatchAnySuffix?: string[];
|
|
2321
|
+
/**
|
|
2322
|
+
* @public
|
|
2323
|
+
* <p>
|
|
2324
|
+
* Filters objects that match any of the specified S3 object tags.
|
|
2325
|
+
* </p>
|
|
2326
|
+
*/
|
|
2327
|
+
MatchAnyTag?: S3Tag[];
|
|
2328
|
+
/**
|
|
2329
|
+
* @public
|
|
2330
|
+
* <p>
|
|
2331
|
+
* Filters objects that match the specified object age range.
|
|
2332
|
+
* </p>
|
|
2333
|
+
*/
|
|
2334
|
+
MatchObjectAge?: MatchObjectAge;
|
|
2335
|
+
/**
|
|
2336
|
+
* @public
|
|
2337
|
+
* <p>
|
|
2338
|
+
* Filters objects that match the specified object size range.
|
|
2339
|
+
* </p>
|
|
2340
|
+
*/
|
|
2341
|
+
MatchObjectSize?: MatchObjectSize;
|
|
2342
|
+
}
|
|
2343
|
+
/**
|
|
2344
|
+
* @public
|
|
2345
|
+
* <p>The filter element sets the criteria for the Storage Lens group data that is displayed. For multiple filter conditions, the <code>AND</code> or <code>OR</code>
|
|
2346
|
+
* logical operator is used.</p>
|
|
2347
|
+
*/
|
|
2348
|
+
export interface StorageLensGroupFilter {
|
|
2349
|
+
/**
|
|
2350
|
+
* @public
|
|
2351
|
+
* <p>
|
|
2352
|
+
* Contains a list of prefixes. At least one prefix must be specified. Up to 10 prefixes are allowed.
|
|
2353
|
+
* </p>
|
|
2354
|
+
*/
|
|
2355
|
+
MatchAnyPrefix?: string[];
|
|
2356
|
+
/**
|
|
2357
|
+
* @public
|
|
2358
|
+
* <p>
|
|
2359
|
+
* Contains a list of suffixes. At least one suffix must be specified. Up to 10 suffixes are allowed.
|
|
2360
|
+
* </p>
|
|
2361
|
+
*/
|
|
2362
|
+
MatchAnySuffix?: string[];
|
|
2363
|
+
/**
|
|
2364
|
+
* @public
|
|
2365
|
+
* <p>
|
|
2366
|
+
* Contains the list of S3 object tags. At least one object tag must be specified. Up to 10 object tags are allowed.
|
|
2367
|
+
* </p>
|
|
2368
|
+
*/
|
|
2369
|
+
MatchAnyTag?: S3Tag[];
|
|
2370
|
+
/**
|
|
2371
|
+
* @public
|
|
2372
|
+
* <p>
|
|
2373
|
+
* Contains <code>DaysGreaterThan</code> and <code>DaysLessThan</code> to define the object age range (minimum and maximum number of days).
|
|
2374
|
+
* </p>
|
|
2375
|
+
*/
|
|
2376
|
+
MatchObjectAge?: MatchObjectAge;
|
|
2377
|
+
/**
|
|
2378
|
+
* @public
|
|
2379
|
+
* <p>
|
|
2380
|
+
* Contains <code>BytesGreaterThan</code> and <code>BytesLessThan</code> to define the object size range (minimum and maximum number of Bytes).
|
|
2381
|
+
* </p>
|
|
2382
|
+
*/
|
|
2383
|
+
MatchObjectSize?: MatchObjectSize;
|
|
2384
|
+
/**
|
|
2385
|
+
* @public
|
|
2386
|
+
* <p>A logical operator that allows multiple filter conditions to be joined for more complex
|
|
2387
|
+
* comparisons of Storage Lens group data. Objects must match all of the listed filter
|
|
2388
|
+
* conditions that are joined by the <code>And</code> logical operator. Only one of each filter condition
|
|
2389
|
+
* is allowed.</p>
|
|
2390
|
+
*/
|
|
2391
|
+
And?: StorageLensGroupAndOperator;
|
|
2392
|
+
/**
|
|
2393
|
+
* @public
|
|
2394
|
+
* <p>A single logical operator that allows multiple filter conditions to be joined. Objects
|
|
2395
|
+
* can match any of the listed filter conditions, which are joined by the <code>Or</code> logical operator.
|
|
2396
|
+
* Only one of each filter condition is allowed. </p>
|
|
2397
|
+
*/
|
|
2398
|
+
Or?: StorageLensGroupOrOperator;
|
|
2399
|
+
}
|
|
2400
|
+
/**
|
|
2401
|
+
* @public
|
|
2402
|
+
* <p>A custom grouping of objects that include filters for prefixes, suffixes, object tags,
|
|
2403
|
+
* object size, or object age. You can create an S3 Storage Lens group that includes a single
|
|
2404
|
+
* filter or multiple filter conditions. To specify multiple filter conditions, you use
|
|
2405
|
+
* <code>AND</code> or <code>OR</code> logical operators. </p>
|
|
2406
|
+
*/
|
|
2407
|
+
export interface StorageLensGroup {
|
|
2408
|
+
/**
|
|
2409
|
+
* @public
|
|
2410
|
+
* <p>
|
|
2411
|
+
* Contains the name of the Storage Lens group.
|
|
2412
|
+
* </p>
|
|
2413
|
+
*/
|
|
2414
|
+
Name: string | undefined;
|
|
2415
|
+
/**
|
|
2416
|
+
* @public
|
|
2417
|
+
* <p>Sets the criteria for the Storage Lens group data that is displayed. For multiple filter conditions, the <code>AND</code> or <code>OR</code>
|
|
2418
|
+
* logical operator is used.</p>
|
|
2419
|
+
*/
|
|
2420
|
+
Filter: StorageLensGroupFilter | undefined;
|
|
2421
|
+
/**
|
|
2422
|
+
* @public
|
|
2423
|
+
* <p>
|
|
2424
|
+
* Contains the Amazon Resource Name (ARN) of the Storage Lens group. This property is read-only.
|
|
2425
|
+
* </p>
|
|
2426
|
+
*/
|
|
2427
|
+
StorageLensGroupArn?: string;
|
|
2428
|
+
}
|
|
2429
|
+
/**
|
|
2430
|
+
* @public
|
|
2431
|
+
* <p>
|
|
2432
|
+
* An Amazon Web Services resource tag that's associated with your S3 resource. You can add tags to new objects when you upload them, or you can add object tags to existing objects.
|
|
2433
|
+
* </p>
|
|
2434
|
+
* <note>
|
|
2435
|
+
* <p>This data type is only supported for <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-lens-groups.html">S3 Storage Lens groups</a>.</p>
|
|
2436
|
+
* </note>
|
|
2437
|
+
*/
|
|
2438
|
+
export interface Tag {
|
|
2439
|
+
/**
|
|
2440
|
+
* @public
|
|
2441
|
+
* <p> The tag key for your Amazon Web Services resource. A tag key can be up to 128 Unicode characters in
|
|
2442
|
+
* length and is case-sensitive. System created tags that begin with <code>aws:</code> aren’t supported.
|
|
2443
|
+
* </p>
|
|
2444
|
+
*/
|
|
2445
|
+
Key: string | undefined;
|
|
2446
|
+
/**
|
|
2447
|
+
* @public
|
|
2448
|
+
* <p>
|
|
2449
|
+
* The tag value for your Amazon Web Services resource. A tag value can be up to 256 Unicode characters in length and is case-sensitive.
|
|
2450
|
+
* </p>
|
|
2451
|
+
*/
|
|
2452
|
+
Value: string | undefined;
|
|
2453
|
+
}
|
|
2454
|
+
/**
|
|
2455
|
+
* @public
|
|
2456
|
+
*/
|
|
2457
|
+
export interface CreateStorageLensGroupRequest {
|
|
2458
|
+
/**
|
|
2459
|
+
* @public
|
|
2460
|
+
* <p>
|
|
2461
|
+
* The Amazon Web Services account ID that the Storage Lens group is created from and associated with.
|
|
2462
|
+
* </p>
|
|
2463
|
+
*/
|
|
2464
|
+
AccountId?: string;
|
|
2465
|
+
/**
|
|
2466
|
+
* @public
|
|
2467
|
+
* <p>
|
|
2468
|
+
* The Storage Lens group configuration.
|
|
2469
|
+
* </p>
|
|
2470
|
+
*/
|
|
2471
|
+
StorageLensGroup: StorageLensGroup | undefined;
|
|
2472
|
+
/**
|
|
2473
|
+
* @public
|
|
2474
|
+
* <p>
|
|
2475
|
+
* The Amazon Web Services resource tags that you're adding to your Storage Lens group. This parameter is optional.
|
|
2476
|
+
* </p>
|
|
2477
|
+
*/
|
|
2478
|
+
Tags?: Tag[];
|
|
2479
|
+
}
|
|
2170
2480
|
/**
|
|
2171
2481
|
* @public
|
|
2172
2482
|
*/
|
|
@@ -2428,6 +2738,25 @@ export interface DeleteStorageLensConfigurationTaggingRequest {
|
|
|
2428
2738
|
*/
|
|
2429
2739
|
export interface DeleteStorageLensConfigurationTaggingResult {
|
|
2430
2740
|
}
|
|
2741
|
+
/**
|
|
2742
|
+
* @public
|
|
2743
|
+
*/
|
|
2744
|
+
export interface DeleteStorageLensGroupRequest {
|
|
2745
|
+
/**
|
|
2746
|
+
* @public
|
|
2747
|
+
* <p>
|
|
2748
|
+
* The name of the Storage Lens group that you're trying to delete.
|
|
2749
|
+
* </p>
|
|
2750
|
+
*/
|
|
2751
|
+
Name: string | undefined;
|
|
2752
|
+
/**
|
|
2753
|
+
* @public
|
|
2754
|
+
* <p>
|
|
2755
|
+
* The Amazon Web Services account ID used to create the Storage Lens group that you're trying to delete.
|
|
2756
|
+
* </p>
|
|
2757
|
+
*/
|
|
2758
|
+
AccountId?: string;
|
|
2759
|
+
}
|
|
2431
2760
|
/**
|
|
2432
2761
|
* @public
|
|
2433
2762
|
*/
|
|
@@ -4585,6 +4914,37 @@ export interface GetStorageLensConfigurationTaggingResult {
|
|
|
4585
4914
|
*/
|
|
4586
4915
|
Tags?: StorageLensTag[];
|
|
4587
4916
|
}
|
|
4917
|
+
/**
|
|
4918
|
+
* @public
|
|
4919
|
+
*/
|
|
4920
|
+
export interface GetStorageLensGroupRequest {
|
|
4921
|
+
/**
|
|
4922
|
+
* @public
|
|
4923
|
+
* <p>
|
|
4924
|
+
* The name of the Storage Lens group that you're trying to retrieve the configuration details for.
|
|
4925
|
+
* </p>
|
|
4926
|
+
*/
|
|
4927
|
+
Name: string | undefined;
|
|
4928
|
+
/**
|
|
4929
|
+
* @public
|
|
4930
|
+
* <p>
|
|
4931
|
+
* The Amazon Web Services account ID associated with the Storage Lens group that you're trying to retrieve the details for.
|
|
4932
|
+
* </p>
|
|
4933
|
+
*/
|
|
4934
|
+
AccountId?: string;
|
|
4935
|
+
}
|
|
4936
|
+
/**
|
|
4937
|
+
* @public
|
|
4938
|
+
*/
|
|
4939
|
+
export interface GetStorageLensGroupResult {
|
|
4940
|
+
/**
|
|
4941
|
+
* @public
|
|
4942
|
+
* <p>
|
|
4943
|
+
* The name of the Storage Lens group that you're trying to retrieve the configuration details for.
|
|
4944
|
+
* </p>
|
|
4945
|
+
*/
|
|
4946
|
+
StorageLensGroup?: StorageLensGroup;
|
|
4947
|
+
}
|
|
4588
4948
|
/**
|
|
4589
4949
|
* @public
|
|
4590
4950
|
*/
|
|
@@ -5020,6 +5380,106 @@ export interface ListStorageLensConfigurationsResult {
|
|
|
5020
5380
|
*/
|
|
5021
5381
|
StorageLensConfigurationList?: ListStorageLensConfigurationEntry[];
|
|
5022
5382
|
}
|
|
5383
|
+
/**
|
|
5384
|
+
* @public
|
|
5385
|
+
*/
|
|
5386
|
+
export interface ListStorageLensGroupsRequest {
|
|
5387
|
+
/**
|
|
5388
|
+
* @public
|
|
5389
|
+
* <p>
|
|
5390
|
+
* The Amazon Web Services account ID that owns the Storage Lens groups.
|
|
5391
|
+
* </p>
|
|
5392
|
+
*/
|
|
5393
|
+
AccountId?: string;
|
|
5394
|
+
/**
|
|
5395
|
+
* @public
|
|
5396
|
+
* <p>The token for the next set of results, or <code>null</code> if there are no more results.
|
|
5397
|
+
* </p>
|
|
5398
|
+
*/
|
|
5399
|
+
NextToken?: string;
|
|
5400
|
+
}
|
|
5401
|
+
/**
|
|
5402
|
+
* @public
|
|
5403
|
+
* <p>
|
|
5404
|
+
* Each entry contains a Storage Lens group that exists in the specified home Region.
|
|
5405
|
+
* </p>
|
|
5406
|
+
*/
|
|
5407
|
+
export interface ListStorageLensGroupEntry {
|
|
5408
|
+
/**
|
|
5409
|
+
* @public
|
|
5410
|
+
* <p>
|
|
5411
|
+
* Contains the name of the Storage Lens group that exists in the specified home Region.
|
|
5412
|
+
* </p>
|
|
5413
|
+
*/
|
|
5414
|
+
Name: string | undefined;
|
|
5415
|
+
/**
|
|
5416
|
+
* @public
|
|
5417
|
+
* <p>
|
|
5418
|
+
* Contains the Amazon Resource Name (ARN) of the Storage Lens group. This property is read-only.
|
|
5419
|
+
* </p>
|
|
5420
|
+
*/
|
|
5421
|
+
StorageLensGroupArn: string | undefined;
|
|
5422
|
+
/**
|
|
5423
|
+
* @public
|
|
5424
|
+
* <p>
|
|
5425
|
+
* Contains the Amazon Web Services Region where the Storage Lens group was created.
|
|
5426
|
+
* </p>
|
|
5427
|
+
*/
|
|
5428
|
+
HomeRegion: string | undefined;
|
|
5429
|
+
}
|
|
5430
|
+
/**
|
|
5431
|
+
* @public
|
|
5432
|
+
*/
|
|
5433
|
+
export interface ListStorageLensGroupsResult {
|
|
5434
|
+
/**
|
|
5435
|
+
* @public
|
|
5436
|
+
* <p>
|
|
5437
|
+
* If <code>NextToken</code> is returned, there are more Storage Lens groups results available. The value of <code>NextToken</code> is a
|
|
5438
|
+
* unique pagination token for each page. Make the call again using the returned token to
|
|
5439
|
+
* retrieve the next page. Keep all other arguments unchanged. Each pagination token expires
|
|
5440
|
+
* after 24 hours.
|
|
5441
|
+
* </p>
|
|
5442
|
+
*/
|
|
5443
|
+
NextToken?: string;
|
|
5444
|
+
/**
|
|
5445
|
+
* @public
|
|
5446
|
+
* <p>
|
|
5447
|
+
* The list of Storage Lens groups that exist in the specified home Region.
|
|
5448
|
+
* </p>
|
|
5449
|
+
*/
|
|
5450
|
+
StorageLensGroupList?: ListStorageLensGroupEntry[];
|
|
5451
|
+
}
|
|
5452
|
+
/**
|
|
5453
|
+
* @public
|
|
5454
|
+
*/
|
|
5455
|
+
export interface ListTagsForResourceRequest {
|
|
5456
|
+
/**
|
|
5457
|
+
* @public
|
|
5458
|
+
* <p>
|
|
5459
|
+
* The Amazon Web Services account ID of the resource owner.
|
|
5460
|
+
* </p>
|
|
5461
|
+
*/
|
|
5462
|
+
AccountId?: string;
|
|
5463
|
+
/**
|
|
5464
|
+
* @public
|
|
5465
|
+
* <p>
|
|
5466
|
+
* The Amazon Resource Name (ARN) of the S3 resource that you want to list the tags for.
|
|
5467
|
+
* </p>
|
|
5468
|
+
*/
|
|
5469
|
+
ResourceArn: string | undefined;
|
|
5470
|
+
}
|
|
5471
|
+
/**
|
|
5472
|
+
* @public
|
|
5473
|
+
*/
|
|
5474
|
+
export interface ListTagsForResourceResult {
|
|
5475
|
+
/**
|
|
5476
|
+
* @public
|
|
5477
|
+
* <p>
|
|
5478
|
+
* The Amazon Web Services resource tags that are associated with the resource.
|
|
5479
|
+
* </p>
|
|
5480
|
+
*/
|
|
5481
|
+
Tags?: Tag[];
|
|
5482
|
+
}
|
|
5023
5483
|
/**
|
|
5024
5484
|
* @public
|
|
5025
5485
|
*/
|
|
@@ -5426,6 +5886,68 @@ export interface SubmitMultiRegionAccessPointRoutesRequest {
|
|
|
5426
5886
|
*/
|
|
5427
5887
|
export interface SubmitMultiRegionAccessPointRoutesResult {
|
|
5428
5888
|
}
|
|
5889
|
+
/**
|
|
5890
|
+
* @public
|
|
5891
|
+
*/
|
|
5892
|
+
export interface TagResourceRequest {
|
|
5893
|
+
/**
|
|
5894
|
+
* @public
|
|
5895
|
+
* <p>
|
|
5896
|
+
* The Amazon Web Services account ID that created the S3 resource that you're trying to add tags to.
|
|
5897
|
+
* </p>
|
|
5898
|
+
*/
|
|
5899
|
+
AccountId?: string;
|
|
5900
|
+
/**
|
|
5901
|
+
* @public
|
|
5902
|
+
* <p>
|
|
5903
|
+
* The Amazon Resource Name (ARN) of the S3 resource that you're trying to add tags to.
|
|
5904
|
+
* </p>
|
|
5905
|
+
*/
|
|
5906
|
+
ResourceArn: string | undefined;
|
|
5907
|
+
/**
|
|
5908
|
+
* @public
|
|
5909
|
+
* <p>
|
|
5910
|
+
* The Amazon Web Services resource tags that you want to add to the specified S3 resource.
|
|
5911
|
+
* </p>
|
|
5912
|
+
*/
|
|
5913
|
+
Tags: Tag[] | undefined;
|
|
5914
|
+
}
|
|
5915
|
+
/**
|
|
5916
|
+
* @public
|
|
5917
|
+
*/
|
|
5918
|
+
export interface TagResourceResult {
|
|
5919
|
+
}
|
|
5920
|
+
/**
|
|
5921
|
+
* @public
|
|
5922
|
+
*/
|
|
5923
|
+
export interface UntagResourceRequest {
|
|
5924
|
+
/**
|
|
5925
|
+
* @public
|
|
5926
|
+
* <p>
|
|
5927
|
+
* The Amazon Web Services account ID that owns the resource that you're trying to remove the tags from.
|
|
5928
|
+
* </p>
|
|
5929
|
+
*/
|
|
5930
|
+
AccountId?: string;
|
|
5931
|
+
/**
|
|
5932
|
+
* @public
|
|
5933
|
+
* <p>
|
|
5934
|
+
* The Amazon Resource Name (ARN) of the S3 resource that you want to remove the resource tags from.
|
|
5935
|
+
* </p>
|
|
5936
|
+
*/
|
|
5937
|
+
ResourceArn: string | undefined;
|
|
5938
|
+
/**
|
|
5939
|
+
* @public
|
|
5940
|
+
* <p>
|
|
5941
|
+
* The tag key pair of the S3 resource tag that you're trying to remove.
|
|
5942
|
+
* </p>
|
|
5943
|
+
*/
|
|
5944
|
+
TagKeys: string[] | undefined;
|
|
5945
|
+
}
|
|
5946
|
+
/**
|
|
5947
|
+
* @public
|
|
5948
|
+
*/
|
|
5949
|
+
export interface UntagResourceResult {
|
|
5950
|
+
}
|
|
5429
5951
|
/**
|
|
5430
5952
|
* @public
|
|
5431
5953
|
*/
|
|
@@ -5532,3 +6054,29 @@ export interface UpdateJobStatusResult {
|
|
|
5532
6054
|
*/
|
|
5533
6055
|
StatusUpdateReason?: string;
|
|
5534
6056
|
}
|
|
6057
|
+
/**
|
|
6058
|
+
* @public
|
|
6059
|
+
*/
|
|
6060
|
+
export interface UpdateStorageLensGroupRequest {
|
|
6061
|
+
/**
|
|
6062
|
+
* @public
|
|
6063
|
+
* <p>
|
|
6064
|
+
* The name of the Storage Lens group that you want to update.
|
|
6065
|
+
* </p>
|
|
6066
|
+
*/
|
|
6067
|
+
Name: string | undefined;
|
|
6068
|
+
/**
|
|
6069
|
+
* @public
|
|
6070
|
+
* <p>
|
|
6071
|
+
* The Amazon Web Services account ID of the Storage Lens group owner.
|
|
6072
|
+
* </p>
|
|
6073
|
+
*/
|
|
6074
|
+
AccountId?: string;
|
|
6075
|
+
/**
|
|
6076
|
+
* @public
|
|
6077
|
+
* <p>
|
|
6078
|
+
* The JSON file that contains the Storage Lens group configuration.
|
|
6079
|
+
* </p>
|
|
6080
|
+
*/
|
|
6081
|
+
StorageLensGroup: StorageLensGroup | undefined;
|
|
6082
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListStorageLensGroupsCommandInput, ListStorageLensGroupsCommandOutput } from "../commands/ListStorageLensGroupsCommand";
|
|
3
|
+
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListStorageLensGroups(config: S3ControlPaginationConfiguration, input: ListStorageLensGroupsCommandInput, ...additionalArguments: any): Paginator<ListStorageLensGroupsCommandOutput>;
|