@aws-sdk/client-s3-control 3.687.0 → 3.691.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.
|
@@ -10,7 +10,7 @@ export interface AbortIncompleteMultipartUpload {
|
|
|
10
10
|
* the Outposts bucket.</p>
|
|
11
11
|
* @public
|
|
12
12
|
*/
|
|
13
|
-
DaysAfterInitiation?: number;
|
|
13
|
+
DaysAfterInitiation?: number | undefined;
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* @public
|
|
@@ -46,34 +46,34 @@ export interface ListAccessGrantsInstanceEntry {
|
|
|
46
46
|
* <p>The ID of the S3 Access Grants instance. The ID is <code>default</code>. You can have one S3 Access Grants instance per Region per account. </p>
|
|
47
47
|
* @public
|
|
48
48
|
*/
|
|
49
|
-
AccessGrantsInstanceId?: string;
|
|
49
|
+
AccessGrantsInstanceId?: string | undefined;
|
|
50
50
|
/**
|
|
51
51
|
* <p>The Amazon Resource Name (ARN) of the S3 Access Grants instance. </p>
|
|
52
52
|
* @public
|
|
53
53
|
*/
|
|
54
|
-
AccessGrantsInstanceArn?: string;
|
|
54
|
+
AccessGrantsInstanceArn?: string | undefined;
|
|
55
55
|
/**
|
|
56
56
|
* <p>The date and time when you created the S3 Access Grants instance. </p>
|
|
57
57
|
* @public
|
|
58
58
|
*/
|
|
59
|
-
CreatedAt?: Date;
|
|
59
|
+
CreatedAt?: Date | undefined;
|
|
60
60
|
/**
|
|
61
61
|
* @deprecated
|
|
62
62
|
*
|
|
63
63
|
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
64
64
|
* @public
|
|
65
65
|
*/
|
|
66
|
-
IdentityCenterArn?: string;
|
|
66
|
+
IdentityCenterArn?: string | undefined;
|
|
67
67
|
/**
|
|
68
68
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the <a href="https://docs.aws.amazon.com/singlesignon/latest/APIReference/API_ListInstances.html">ListInstances</a> API operation to retrieve a list of your Identity Center instances and their ARNs.</p>
|
|
69
69
|
* @public
|
|
70
70
|
*/
|
|
71
|
-
IdentityCenterInstanceArn?: string;
|
|
71
|
+
IdentityCenterInstanceArn?: string | undefined;
|
|
72
72
|
/**
|
|
73
73
|
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
74
74
|
* @public
|
|
75
75
|
*/
|
|
76
|
-
IdentityCenterApplicationArn?: string;
|
|
76
|
+
IdentityCenterApplicationArn?: string | undefined;
|
|
77
77
|
}
|
|
78
78
|
/**
|
|
79
79
|
* <p>The configuration options of the S3 Access Grants location. It contains the <code>S3SubPrefix</code> field. The grant scope, the data to which you are granting access, is the result of appending the <code>Subprefix</code> field to the scope of the registered location.</p>
|
|
@@ -85,7 +85,7 @@ export interface AccessGrantsLocationConfiguration {
|
|
|
85
85
|
* <p>If the <code>S3SubPrefix</code> includes a prefix, append the wildcard character <code>*</code> after the prefix to indicate that you want to include all object key names in the bucket that start with that prefix. </p>
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
|
-
S3SubPrefix?: string;
|
|
88
|
+
S3SubPrefix?: string | undefined;
|
|
89
89
|
}
|
|
90
90
|
/**
|
|
91
91
|
* @public
|
|
@@ -123,12 +123,12 @@ export interface Grantee {
|
|
|
123
123
|
* </ul>
|
|
124
124
|
* @public
|
|
125
125
|
*/
|
|
126
|
-
GranteeType?: GranteeType;
|
|
126
|
+
GranteeType?: GranteeType | undefined;
|
|
127
127
|
/**
|
|
128
128
|
* <p>The unique identifier of the <code>Grantee</code>. If the grantee type is <code>IAM</code>, the identifier is the IAM Amazon Resource Name (ARN) of the user or role. If the grantee type is a directory user or group, the identifier is 128-bit universally unique identifier (UUID) in the format <code>a1b2c3d4-5678-90ab-cdef-EXAMPLE11111</code>. You can obtain this UUID from your Amazon Web Services IAM Identity Center instance.</p>
|
|
129
129
|
* @public
|
|
130
130
|
*/
|
|
131
|
-
GranteeIdentifier?: string;
|
|
131
|
+
GranteeIdentifier?: string | undefined;
|
|
132
132
|
}
|
|
133
133
|
/**
|
|
134
134
|
* @public
|
|
@@ -152,22 +152,22 @@ export interface ListAccessGrantEntry {
|
|
|
152
152
|
* <p>The date and time when you created the S3 Access Grants instance. </p>
|
|
153
153
|
* @public
|
|
154
154
|
*/
|
|
155
|
-
CreatedAt?: Date;
|
|
155
|
+
CreatedAt?: Date | undefined;
|
|
156
156
|
/**
|
|
157
157
|
* <p>The ID of the access grant. S3 Access Grants auto-generates this ID when you create the access grant.</p>
|
|
158
158
|
* @public
|
|
159
159
|
*/
|
|
160
|
-
AccessGrantId?: string;
|
|
160
|
+
AccessGrantId?: string | undefined;
|
|
161
161
|
/**
|
|
162
162
|
* <p>The Amazon Resource Name (ARN) of the access grant. </p>
|
|
163
163
|
* @public
|
|
164
164
|
*/
|
|
165
|
-
AccessGrantArn?: string;
|
|
165
|
+
AccessGrantArn?: string | undefined;
|
|
166
166
|
/**
|
|
167
167
|
* <p>The user, group, or role to which you are granting access. You can grant access to an IAM user or role. If you have added your corporate directory to Amazon Web Services IAM Identity Center and associated your Identity Center instance with your S3 Access Grants instance, the grantee can also be a corporate directory user or group.</p>
|
|
168
168
|
* @public
|
|
169
169
|
*/
|
|
170
|
-
Grantee?: Grantee;
|
|
170
|
+
Grantee?: Grantee | undefined;
|
|
171
171
|
/**
|
|
172
172
|
* <p>The type of access granted to your S3 data, which can be set to one of the following values:</p>
|
|
173
173
|
* <ul>
|
|
@@ -186,27 +186,27 @@ export interface ListAccessGrantEntry {
|
|
|
186
186
|
* </ul>
|
|
187
187
|
* @public
|
|
188
188
|
*/
|
|
189
|
-
Permission?: Permission;
|
|
189
|
+
Permission?: Permission | undefined;
|
|
190
190
|
/**
|
|
191
191
|
* <p>The ID of the registered location to which you are granting access. S3 Access Grants assigns this ID when you register the location. S3 Access Grants assigns the ID <code>default</code> to the default location <code>s3://</code> and assigns an auto-generated ID to other locations that you register. </p>
|
|
192
192
|
* @public
|
|
193
193
|
*/
|
|
194
|
-
AccessGrantsLocationId?: string;
|
|
194
|
+
AccessGrantsLocationId?: string | undefined;
|
|
195
195
|
/**
|
|
196
196
|
* <p>The configuration options of the grant location. The grant location is the S3 path to the data to which you are granting access. </p>
|
|
197
197
|
* @public
|
|
198
198
|
*/
|
|
199
|
-
AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
|
|
199
|
+
AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration | undefined;
|
|
200
200
|
/**
|
|
201
201
|
* <p>The S3 path of the data to which you are granting access. It is the result of appending the <code>Subprefix</code> to the location scope.</p>
|
|
202
202
|
* @public
|
|
203
203
|
*/
|
|
204
|
-
GrantScope?: string;
|
|
204
|
+
GrantScope?: string | undefined;
|
|
205
205
|
/**
|
|
206
206
|
* <p>The Amazon Resource Name (ARN) of an Amazon Web Services IAM Identity Center application associated with your Identity Center instance. If the grant includes an application ARN, the grantee can only access the S3 data through this application. </p>
|
|
207
207
|
* @public
|
|
208
208
|
*/
|
|
209
|
-
ApplicationArn?: string;
|
|
209
|
+
ApplicationArn?: string | undefined;
|
|
210
210
|
}
|
|
211
211
|
/**
|
|
212
212
|
* <p>A container for information about the registered location.</p>
|
|
@@ -217,27 +217,27 @@ export interface ListAccessGrantsLocationsEntry {
|
|
|
217
217
|
* <p>The date and time when you registered the location. </p>
|
|
218
218
|
* @public
|
|
219
219
|
*/
|
|
220
|
-
CreatedAt?: Date;
|
|
220
|
+
CreatedAt?: Date | undefined;
|
|
221
221
|
/**
|
|
222
222
|
* <p>The ID of the registered location to which you are granting access. S3 Access Grants assigns this ID when you register the location. S3 Access Grants assigns the ID <code>default</code> to the default location <code>s3://</code> and assigns an auto-generated ID to other locations that you register. </p>
|
|
223
223
|
* @public
|
|
224
224
|
*/
|
|
225
|
-
AccessGrantsLocationId?: string;
|
|
225
|
+
AccessGrantsLocationId?: string | undefined;
|
|
226
226
|
/**
|
|
227
227
|
* <p>The Amazon Resource Name (ARN) of the registered location. </p>
|
|
228
228
|
* @public
|
|
229
229
|
*/
|
|
230
|
-
AccessGrantsLocationArn?: string;
|
|
230
|
+
AccessGrantsLocationArn?: string | undefined;
|
|
231
231
|
/**
|
|
232
232
|
* <p>The S3 path to the location that you are registering. The location scope can be the default S3 location <code>s3://</code>, the S3 path to a bucket <code>s3://<bucket></code>, or the S3 path to a bucket and prefix <code>s3://<bucket>/<prefix></code>. A prefix in S3 is a string of characters at the beginning of an object key name used to organize the objects that you store in your S3 buckets. For example, object key names that start with the <code>engineering/</code> prefix or object key names that start with the <code>marketing/campaigns/</code> prefix.</p>
|
|
233
233
|
* @public
|
|
234
234
|
*/
|
|
235
|
-
LocationScope?: string;
|
|
235
|
+
LocationScope?: string | undefined;
|
|
236
236
|
/**
|
|
237
237
|
* <p>The Amazon Resource Name (ARN) of the IAM role for the registered location. S3 Access Grants assumes this role to manage access to the registered location. </p>
|
|
238
238
|
* @public
|
|
239
239
|
*/
|
|
240
|
-
IAMRoleArn?: string;
|
|
240
|
+
IAMRoleArn?: string | undefined;
|
|
241
241
|
}
|
|
242
242
|
/**
|
|
243
243
|
* @public
|
|
@@ -291,7 +291,7 @@ export interface AccessPoint {
|
|
|
291
291
|
* </note>
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
VpcConfiguration?: VpcConfiguration;
|
|
294
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
295
295
|
/**
|
|
296
296
|
* <p>The name of the bucket associated with this access point.</p>
|
|
297
297
|
* @public
|
|
@@ -301,17 +301,17 @@ export interface AccessPoint {
|
|
|
301
301
|
* <p>The ARN for the access point.</p>
|
|
302
302
|
* @public
|
|
303
303
|
*/
|
|
304
|
-
AccessPointArn?: string;
|
|
304
|
+
AccessPointArn?: string | undefined;
|
|
305
305
|
/**
|
|
306
306
|
* <p>The name or alias of the access point.</p>
|
|
307
307
|
* @public
|
|
308
308
|
*/
|
|
309
|
-
Alias?: string;
|
|
309
|
+
Alias?: string | undefined;
|
|
310
310
|
/**
|
|
311
311
|
* <p>The Amazon Web Services account ID associated with the S3 bucket associated with this access point.</p>
|
|
312
312
|
* @public
|
|
313
313
|
*/
|
|
314
|
-
BucketAccountId?: string;
|
|
314
|
+
BucketAccountId?: string | undefined;
|
|
315
315
|
}
|
|
316
316
|
/**
|
|
317
317
|
* <p>The container element for Amazon S3 Storage Lens activity metrics. Activity metrics show details
|
|
@@ -325,7 +325,7 @@ export interface ActivityMetrics {
|
|
|
325
325
|
* <p>A container that indicates whether activity metrics are enabled.</p>
|
|
326
326
|
* @public
|
|
327
327
|
*/
|
|
328
|
-
IsEnabled?: boolean;
|
|
328
|
+
IsEnabled?: boolean | undefined;
|
|
329
329
|
}
|
|
330
330
|
/**
|
|
331
331
|
* <p>The container element for Amazon S3 Storage Lens advanced cost-optimization metrics. Advanced
|
|
@@ -341,7 +341,7 @@ export interface AdvancedCostOptimizationMetrics {
|
|
|
341
341
|
* enabled.</p>
|
|
342
342
|
* @public
|
|
343
343
|
*/
|
|
344
|
-
IsEnabled?: boolean;
|
|
344
|
+
IsEnabled?: boolean | undefined;
|
|
345
345
|
}
|
|
346
346
|
/**
|
|
347
347
|
* <p>The container element for Amazon S3 Storage Lens advanced data-protection metrics. Advanced
|
|
@@ -355,7 +355,7 @@ export interface AdvancedDataProtectionMetrics {
|
|
|
355
355
|
* <p>A container that indicates whether advanced data-protection metrics are enabled.</p>
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
IsEnabled?: boolean;
|
|
358
|
+
IsEnabled?: boolean | undefined;
|
|
359
359
|
}
|
|
360
360
|
/**
|
|
361
361
|
* <p>The container element for Amazon S3 Storage Lens detailed status code metrics. Detailed status
|
|
@@ -369,7 +369,7 @@ export interface DetailedStatusCodesMetrics {
|
|
|
369
369
|
* <p>A container that indicates whether detailed status code metrics are enabled.</p>
|
|
370
370
|
* @public
|
|
371
371
|
*/
|
|
372
|
-
IsEnabled?: boolean;
|
|
372
|
+
IsEnabled?: boolean | undefined;
|
|
373
373
|
}
|
|
374
374
|
/**
|
|
375
375
|
* <p></p>
|
|
@@ -380,12 +380,12 @@ export interface SelectionCriteria {
|
|
|
380
380
|
* <p>A container for the delimiter of the selection criteria being used.</p>
|
|
381
381
|
* @public
|
|
382
382
|
*/
|
|
383
|
-
Delimiter?: string;
|
|
383
|
+
Delimiter?: string | undefined;
|
|
384
384
|
/**
|
|
385
385
|
* <p>The max depth of the selection criteria</p>
|
|
386
386
|
* @public
|
|
387
387
|
*/
|
|
388
|
-
MaxDepth?: number;
|
|
388
|
+
MaxDepth?: number | undefined;
|
|
389
389
|
/**
|
|
390
390
|
* <p>The minimum number of storage bytes percentage whose metrics will be selected.</p>
|
|
391
391
|
* <note>
|
|
@@ -393,7 +393,7 @@ export interface SelectionCriteria {
|
|
|
393
393
|
* </note>
|
|
394
394
|
* @public
|
|
395
395
|
*/
|
|
396
|
-
MinStorageBytesPercentage?: number;
|
|
396
|
+
MinStorageBytesPercentage?: number | undefined;
|
|
397
397
|
}
|
|
398
398
|
/**
|
|
399
399
|
* <p>A container for the prefix-level storage metrics for S3 Storage Lens.</p>
|
|
@@ -404,12 +404,12 @@ export interface PrefixLevelStorageMetrics {
|
|
|
404
404
|
* <p>A container for whether prefix-level storage metrics are enabled.</p>
|
|
405
405
|
* @public
|
|
406
406
|
*/
|
|
407
|
-
IsEnabled?: boolean;
|
|
407
|
+
IsEnabled?: boolean | undefined;
|
|
408
408
|
/**
|
|
409
409
|
* <p></p>
|
|
410
410
|
* @public
|
|
411
411
|
*/
|
|
412
|
-
SelectionCriteria?: SelectionCriteria;
|
|
412
|
+
SelectionCriteria?: SelectionCriteria | undefined;
|
|
413
413
|
}
|
|
414
414
|
/**
|
|
415
415
|
* <p>A container for the prefix-level configuration.</p>
|
|
@@ -432,27 +432,27 @@ export interface BucketLevel {
|
|
|
432
432
|
* <p>A container for the bucket-level activity metrics for S3 Storage Lens.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
ActivityMetrics?: ActivityMetrics;
|
|
435
|
+
ActivityMetrics?: ActivityMetrics | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* <p>A container for the prefix-level metrics for S3 Storage Lens. </p>
|
|
438
438
|
* @public
|
|
439
439
|
*/
|
|
440
|
-
PrefixLevel?: PrefixLevel;
|
|
440
|
+
PrefixLevel?: PrefixLevel | undefined;
|
|
441
441
|
/**
|
|
442
442
|
* <p>A container for bucket-level advanced cost-optimization metrics for S3 Storage Lens.</p>
|
|
443
443
|
* @public
|
|
444
444
|
*/
|
|
445
|
-
AdvancedCostOptimizationMetrics?: AdvancedCostOptimizationMetrics;
|
|
445
|
+
AdvancedCostOptimizationMetrics?: AdvancedCostOptimizationMetrics | undefined;
|
|
446
446
|
/**
|
|
447
447
|
* <p>A container for bucket-level advanced data-protection metrics for S3 Storage Lens.</p>
|
|
448
448
|
* @public
|
|
449
449
|
*/
|
|
450
|
-
AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics;
|
|
450
|
+
AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics | undefined;
|
|
451
451
|
/**
|
|
452
452
|
* <p>A container for bucket-level detailed status code metrics for S3 Storage Lens.</p>
|
|
453
453
|
* @public
|
|
454
454
|
*/
|
|
455
|
-
DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics;
|
|
455
|
+
DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics | undefined;
|
|
456
456
|
}
|
|
457
457
|
/**
|
|
458
458
|
* <p> Indicates which Storage Lens group ARNs to include or exclude in the Storage Lens group
|
|
@@ -467,13 +467,13 @@ export interface StorageLensGroupLevelSelectionCriteria {
|
|
|
467
467
|
* aggregation. </p>
|
|
468
468
|
* @public
|
|
469
469
|
*/
|
|
470
|
-
Include?: string[];
|
|
470
|
+
Include?: string[] | undefined;
|
|
471
471
|
/**
|
|
472
472
|
* <p> Indicates which Storage Lens group ARNs to exclude from the Storage Lens group
|
|
473
473
|
* aggregation. </p>
|
|
474
474
|
* @public
|
|
475
475
|
*/
|
|
476
|
-
Exclude?: string[];
|
|
476
|
+
Exclude?: string[] | undefined;
|
|
477
477
|
}
|
|
478
478
|
/**
|
|
479
479
|
* <p> Specifies the Storage Lens groups to include in the Storage Lens group aggregation.
|
|
@@ -486,7 +486,7 @@ export interface StorageLensGroupLevel {
|
|
|
486
486
|
* aggregation. If this value is left null, then all Storage Lens groups are selected. </p>
|
|
487
487
|
* @public
|
|
488
488
|
*/
|
|
489
|
-
SelectionCriteria?: StorageLensGroupLevelSelectionCriteria;
|
|
489
|
+
SelectionCriteria?: StorageLensGroupLevelSelectionCriteria | undefined;
|
|
490
490
|
}
|
|
491
491
|
/**
|
|
492
492
|
* <p>A container element for the account-level Amazon S3 Storage Lens configuration.</p>
|
|
@@ -498,7 +498,7 @@ export interface AccountLevel {
|
|
|
498
498
|
* <p>A container element for S3 Storage Lens activity metrics.</p>
|
|
499
499
|
* @public
|
|
500
500
|
*/
|
|
501
|
-
ActivityMetrics?: ActivityMetrics;
|
|
501
|
+
ActivityMetrics?: ActivityMetrics | undefined;
|
|
502
502
|
/**
|
|
503
503
|
* <p>A container element for the S3 Storage Lens bucket-level configuration.</p>
|
|
504
504
|
* @public
|
|
@@ -508,24 +508,24 @@ export interface AccountLevel {
|
|
|
508
508
|
* <p>A container element for S3 Storage Lens advanced cost-optimization metrics.</p>
|
|
509
509
|
* @public
|
|
510
510
|
*/
|
|
511
|
-
AdvancedCostOptimizationMetrics?: AdvancedCostOptimizationMetrics;
|
|
511
|
+
AdvancedCostOptimizationMetrics?: AdvancedCostOptimizationMetrics | undefined;
|
|
512
512
|
/**
|
|
513
513
|
* <p>A container element for S3 Storage Lens advanced data-protection metrics.</p>
|
|
514
514
|
* @public
|
|
515
515
|
*/
|
|
516
|
-
AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics;
|
|
516
|
+
AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics | undefined;
|
|
517
517
|
/**
|
|
518
518
|
* <p>A container element for detailed status code metrics. </p>
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
|
-
DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics;
|
|
521
|
+
DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics | undefined;
|
|
522
522
|
/**
|
|
523
523
|
* <p>
|
|
524
524
|
* A container element for S3 Storage Lens groups metrics.
|
|
525
525
|
* </p>
|
|
526
526
|
* @public
|
|
527
527
|
*/
|
|
528
|
-
StorageLensGroupLevel?: StorageLensGroupLevel;
|
|
528
|
+
StorageLensGroupLevel?: StorageLensGroupLevel | undefined;
|
|
529
529
|
}
|
|
530
530
|
/**
|
|
531
531
|
* @public
|
|
@@ -535,7 +535,7 @@ export interface AssociateAccessGrantsIdentityCenterRequest {
|
|
|
535
535
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
536
536
|
* @public
|
|
537
537
|
*/
|
|
538
|
-
AccountId?: string;
|
|
538
|
+
AccountId?: string | undefined;
|
|
539
539
|
/**
|
|
540
540
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the <a href="https://docs.aws.amazon.com/singlesignon/latest/APIReference/API_ListInstances.html">ListInstances</a> API operation to retrieve a list of your Identity Center instances and their ARNs.</p>
|
|
541
541
|
* @public
|
|
@@ -551,22 +551,22 @@ export interface AsyncErrorDetails {
|
|
|
551
551
|
* <p>A string that uniquely identifies the error condition.</p>
|
|
552
552
|
* @public
|
|
553
553
|
*/
|
|
554
|
-
Code?: string;
|
|
554
|
+
Code?: string | undefined;
|
|
555
555
|
/**
|
|
556
556
|
* <p>A generic description of the error condition in English.</p>
|
|
557
557
|
* @public
|
|
558
558
|
*/
|
|
559
|
-
Message?: string;
|
|
559
|
+
Message?: string | undefined;
|
|
560
560
|
/**
|
|
561
561
|
* <p>The identifier of the resource associated with the error.</p>
|
|
562
562
|
* @public
|
|
563
563
|
*/
|
|
564
|
-
Resource?: string;
|
|
564
|
+
Resource?: string | undefined;
|
|
565
565
|
/**
|
|
566
566
|
* <p>The ID of the request associated with the error.</p>
|
|
567
567
|
* @public
|
|
568
568
|
*/
|
|
569
|
-
RequestId?: string;
|
|
569
|
+
RequestId?: string | undefined;
|
|
570
570
|
}
|
|
571
571
|
/**
|
|
572
572
|
* @public
|
|
@@ -610,7 +610,7 @@ export interface PublicAccessBlockConfiguration {
|
|
|
610
610
|
* <p>This property is not supported for Amazon S3 on Outposts.</p>
|
|
611
611
|
* @public
|
|
612
612
|
*/
|
|
613
|
-
BlockPublicAcls?: boolean;
|
|
613
|
+
BlockPublicAcls?: boolean | undefined;
|
|
614
614
|
/**
|
|
615
615
|
* <p>Specifies whether Amazon S3 should ignore public ACLs for buckets in this account. Setting
|
|
616
616
|
* this element to <code>TRUE</code> causes Amazon S3 to ignore all public ACLs on buckets in this
|
|
@@ -620,7 +620,7 @@ export interface PublicAccessBlockConfiguration {
|
|
|
620
620
|
* <p>This property is not supported for Amazon S3 on Outposts.</p>
|
|
621
621
|
* @public
|
|
622
622
|
*/
|
|
623
|
-
IgnorePublicAcls?: boolean;
|
|
623
|
+
IgnorePublicAcls?: boolean | undefined;
|
|
624
624
|
/**
|
|
625
625
|
* <p>Specifies whether Amazon S3 should block public bucket policies for buckets in this account.
|
|
626
626
|
* Setting this element to <code>TRUE</code> causes Amazon S3 to reject calls to PUT Bucket policy
|
|
@@ -629,7 +629,7 @@ export interface PublicAccessBlockConfiguration {
|
|
|
629
629
|
* <p>This property is not supported for Amazon S3 on Outposts.</p>
|
|
630
630
|
* @public
|
|
631
631
|
*/
|
|
632
|
-
BlockPublicPolicy?: boolean;
|
|
632
|
+
BlockPublicPolicy?: boolean | undefined;
|
|
633
633
|
/**
|
|
634
634
|
* <p>Specifies whether Amazon S3 should restrict public bucket policies for buckets in this
|
|
635
635
|
* account. Setting this element to <code>TRUE</code> restricts access to buckets with public
|
|
@@ -641,7 +641,7 @@ export interface PublicAccessBlockConfiguration {
|
|
|
641
641
|
* <p>This property is not supported for Amazon S3 on Outposts.</p>
|
|
642
642
|
* @public
|
|
643
643
|
*/
|
|
644
|
-
RestrictPublicBuckets?: boolean;
|
|
644
|
+
RestrictPublicBuckets?: boolean | undefined;
|
|
645
645
|
}
|
|
646
646
|
/**
|
|
647
647
|
* <p>A Region that supports a Multi-Region Access Point as well as the associated bucket for the Region.</p>
|
|
@@ -658,7 +658,7 @@ export interface Region {
|
|
|
658
658
|
* Multi-Region Access Point.</p>
|
|
659
659
|
* @public
|
|
660
660
|
*/
|
|
661
|
-
BucketAccountId?: string;
|
|
661
|
+
BucketAccountId?: string | undefined;
|
|
662
662
|
}
|
|
663
663
|
/**
|
|
664
664
|
* <p>A container for the information associated with a <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateMultiRegionAccessPoint.html">CreateMultiRegionAccessPoint</a> request. </p>
|
|
@@ -677,7 +677,7 @@ export interface CreateMultiRegionAccessPointInput {
|
|
|
677
677
|
* <p>This data type is not supported for Amazon S3 on Outposts.</p>
|
|
678
678
|
* @public
|
|
679
679
|
*/
|
|
680
|
-
PublicAccessBlock?: PublicAccessBlockConfiguration;
|
|
680
|
+
PublicAccessBlock?: PublicAccessBlockConfiguration | undefined;
|
|
681
681
|
/**
|
|
682
682
|
* <p>The buckets in different Regions that are associated with the Multi-Region Access Point.</p>
|
|
683
683
|
* @public
|
|
@@ -720,17 +720,17 @@ export interface AsyncRequestParameters {
|
|
|
720
720
|
* <p>A container of the parameters for a <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateMultiRegionAccessPoint.html">CreateMultiRegionAccessPoint</a> request.</p>
|
|
721
721
|
* @public
|
|
722
722
|
*/
|
|
723
|
-
CreateMultiRegionAccessPointRequest?: CreateMultiRegionAccessPointInput;
|
|
723
|
+
CreateMultiRegionAccessPointRequest?: CreateMultiRegionAccessPointInput | undefined;
|
|
724
724
|
/**
|
|
725
725
|
* <p>A container of the parameters for a <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteMultiRegionAccessPoint.html">DeleteMultiRegionAccessPoint</a> request.</p>
|
|
726
726
|
* @public
|
|
727
727
|
*/
|
|
728
|
-
DeleteMultiRegionAccessPointRequest?: DeleteMultiRegionAccessPointInput;
|
|
728
|
+
DeleteMultiRegionAccessPointRequest?: DeleteMultiRegionAccessPointInput | undefined;
|
|
729
729
|
/**
|
|
730
730
|
* <p>A container of the parameters for a <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutMultiRegionAccessPoint.html">PutMultiRegionAccessPoint</a> request.</p>
|
|
731
731
|
* @public
|
|
732
732
|
*/
|
|
733
|
-
PutMultiRegionAccessPointPolicyRequest?: PutMultiRegionAccessPointPolicyInput;
|
|
733
|
+
PutMultiRegionAccessPointPolicyRequest?: PutMultiRegionAccessPointPolicyInput | undefined;
|
|
734
734
|
}
|
|
735
735
|
/**
|
|
736
736
|
* <p>Status information for a single Multi-Region Access Point Region.</p>
|
|
@@ -741,12 +741,12 @@ export interface MultiRegionAccessPointRegionalResponse {
|
|
|
741
741
|
* <p>The name of the Region in the Multi-Region Access Point.</p>
|
|
742
742
|
* @public
|
|
743
743
|
*/
|
|
744
|
-
Name?: string;
|
|
744
|
+
Name?: string | undefined;
|
|
745
745
|
/**
|
|
746
746
|
* <p>The current status of the Multi-Region Access Point in this Region.</p>
|
|
747
747
|
* @public
|
|
748
748
|
*/
|
|
749
|
-
RequestStatus?: string;
|
|
749
|
+
RequestStatus?: string | undefined;
|
|
750
750
|
}
|
|
751
751
|
/**
|
|
752
752
|
* <p>The Multi-Region Access Point details that are returned when querying about an asynchronous request.</p>
|
|
@@ -758,7 +758,7 @@ export interface MultiRegionAccessPointsAsyncResponse {
|
|
|
758
758
|
* supports.</p>
|
|
759
759
|
* @public
|
|
760
760
|
*/
|
|
761
|
-
Regions?: MultiRegionAccessPointRegionalResponse[];
|
|
761
|
+
Regions?: MultiRegionAccessPointRegionalResponse[] | undefined;
|
|
762
762
|
}
|
|
763
763
|
/**
|
|
764
764
|
* <p>A container for the response details that are returned when querying about an
|
|
@@ -770,12 +770,12 @@ export interface AsyncResponseDetails {
|
|
|
770
770
|
* <p>The details for the Multi-Region Access Point.</p>
|
|
771
771
|
* @public
|
|
772
772
|
*/
|
|
773
|
-
MultiRegionAccessPointDetails?: MultiRegionAccessPointsAsyncResponse;
|
|
773
|
+
MultiRegionAccessPointDetails?: MultiRegionAccessPointsAsyncResponse | undefined;
|
|
774
774
|
/**
|
|
775
775
|
* <p>Error details for an asynchronous request.</p>
|
|
776
776
|
* @public
|
|
777
777
|
*/
|
|
778
|
-
ErrorDetails?: AsyncErrorDetails;
|
|
778
|
+
ErrorDetails?: AsyncErrorDetails | undefined;
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
* <p>A container for the information about an asynchronous operation.</p>
|
|
@@ -786,32 +786,32 @@ export interface AsyncOperation {
|
|
|
786
786
|
* <p>The time that the request was sent to the service.</p>
|
|
787
787
|
* @public
|
|
788
788
|
*/
|
|
789
|
-
CreationTime?: Date;
|
|
789
|
+
CreationTime?: Date | undefined;
|
|
790
790
|
/**
|
|
791
791
|
* <p>The specific operation for the asynchronous request.</p>
|
|
792
792
|
* @public
|
|
793
793
|
*/
|
|
794
|
-
Operation?: AsyncOperationName;
|
|
794
|
+
Operation?: AsyncOperationName | undefined;
|
|
795
795
|
/**
|
|
796
796
|
* <p>The request token associated with the request.</p>
|
|
797
797
|
* @public
|
|
798
798
|
*/
|
|
799
|
-
RequestTokenARN?: string;
|
|
799
|
+
RequestTokenARN?: string | undefined;
|
|
800
800
|
/**
|
|
801
801
|
* <p>The parameters associated with the request.</p>
|
|
802
802
|
* @public
|
|
803
803
|
*/
|
|
804
|
-
RequestParameters?: AsyncRequestParameters;
|
|
804
|
+
RequestParameters?: AsyncRequestParameters | undefined;
|
|
805
805
|
/**
|
|
806
806
|
* <p>The current status of the request.</p>
|
|
807
807
|
* @public
|
|
808
808
|
*/
|
|
809
|
-
RequestStatus?: string;
|
|
809
|
+
RequestStatus?: string | undefined;
|
|
810
810
|
/**
|
|
811
811
|
* <p>The details of the response.</p>
|
|
812
812
|
* @public
|
|
813
813
|
*/
|
|
814
|
-
ResponseDetails?: AsyncResponseDetails;
|
|
814
|
+
ResponseDetails?: AsyncResponseDetails | undefined;
|
|
815
815
|
}
|
|
816
816
|
/**
|
|
817
817
|
* <p>Lambda function used to transform objects through an Object Lambda Access Point.</p>
|
|
@@ -828,7 +828,7 @@ export interface AwsLambdaTransformation {
|
|
|
828
828
|
* objects.</p>
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
FunctionPayload?: string;
|
|
831
|
+
FunctionPayload?: string | undefined;
|
|
832
832
|
}
|
|
833
833
|
/**
|
|
834
834
|
* @public
|
|
@@ -873,7 +873,7 @@ export interface CreateAccessGrantRequest {
|
|
|
873
873
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
874
874
|
* @public
|
|
875
875
|
*/
|
|
876
|
-
AccountId?: string;
|
|
876
|
+
AccountId?: string | undefined;
|
|
877
877
|
/**
|
|
878
878
|
* <p>The ID of the registered location to which you are granting access. S3 Access Grants assigns this ID when you register the location. S3 Access Grants assigns the ID <code>default</code> to the default location <code>s3://</code> and assigns an auto-generated ID to other locations that you register. </p>
|
|
879
879
|
* <p>If you are passing the <code>default</code> location, you cannot create an access grant for the entire default location. You must also specify a bucket or a bucket and prefix in the <code>Subprefix</code> field. </p>
|
|
@@ -884,7 +884,7 @@ export interface CreateAccessGrantRequest {
|
|
|
884
884
|
* <p>The configuration options of the grant location. The grant location is the S3 path to the data to which you are granting access. It contains the <code>S3SubPrefix</code> field. The grant scope is the result of appending the subprefix to the location scope of the registered location.</p>
|
|
885
885
|
* @public
|
|
886
886
|
*/
|
|
887
|
-
AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
|
|
887
|
+
AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration | undefined;
|
|
888
888
|
/**
|
|
889
889
|
* <p>The user, group, or role to which you are granting access. You can grant access to an IAM user or role. If you have added your corporate directory to Amazon Web Services IAM Identity Center and associated your Identity Center instance with your S3 Access Grants instance, the grantee can also be a corporate directory user or group.</p>
|
|
890
890
|
* @public
|
|
@@ -913,17 +913,17 @@ export interface CreateAccessGrantRequest {
|
|
|
913
913
|
* <p>The Amazon Resource Name (ARN) of an Amazon Web Services IAM Identity Center application associated with your Identity Center instance. If an application ARN is included in the request to create an access grant, the grantee can only access the S3 data through this application. </p>
|
|
914
914
|
* @public
|
|
915
915
|
*/
|
|
916
|
-
ApplicationArn?: string;
|
|
916
|
+
ApplicationArn?: string | undefined;
|
|
917
917
|
/**
|
|
918
918
|
* <p>The type of <code>S3SubPrefix</code>. The only possible value is <code>Object</code>. Pass this value if the access grant scope is an object. Do not pass this value if the access grant scope is a bucket or a bucket and a prefix. </p>
|
|
919
919
|
* @public
|
|
920
920
|
*/
|
|
921
|
-
S3PrefixType?: S3PrefixType;
|
|
921
|
+
S3PrefixType?: S3PrefixType | undefined;
|
|
922
922
|
/**
|
|
923
923
|
* <p>The Amazon Web Services resource tags that you are adding to the access grant. Each tag is a label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter resources. </p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
Tags?: Tag[];
|
|
926
|
+
Tags?: Tag[] | undefined;
|
|
927
927
|
}
|
|
928
928
|
/**
|
|
929
929
|
* @public
|
|
@@ -933,32 +933,32 @@ export interface CreateAccessGrantResult {
|
|
|
933
933
|
* <p>The date and time when you created the access grant. </p>
|
|
934
934
|
* @public
|
|
935
935
|
*/
|
|
936
|
-
CreatedAt?: Date;
|
|
936
|
+
CreatedAt?: Date | undefined;
|
|
937
937
|
/**
|
|
938
938
|
* <p>The ID of the access grant. S3 Access Grants auto-generates this ID when you create the access grant.</p>
|
|
939
939
|
* @public
|
|
940
940
|
*/
|
|
941
|
-
AccessGrantId?: string;
|
|
941
|
+
AccessGrantId?: string | undefined;
|
|
942
942
|
/**
|
|
943
943
|
* <p>The Amazon Resource Name (ARN) of the access grant. </p>
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
AccessGrantArn?: string;
|
|
946
|
+
AccessGrantArn?: string | undefined;
|
|
947
947
|
/**
|
|
948
948
|
* <p>The user, group, or role to which you are granting access. You can grant access to an IAM user or role. If you have added your corporate directory to Amazon Web Services IAM Identity Center and associated your Identity Center instance with your S3 Access Grants instance, the grantee can also be a corporate directory user or group.</p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
|
-
Grantee?: Grantee;
|
|
951
|
+
Grantee?: Grantee | undefined;
|
|
952
952
|
/**
|
|
953
953
|
* <p>The ID of the registered location to which you are granting access. S3 Access Grants assigns this ID when you register the location. S3 Access Grants assigns the ID <code>default</code> to the default location <code>s3://</code> and assigns an auto-generated ID to other locations that you register. </p>
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
AccessGrantsLocationId?: string;
|
|
956
|
+
AccessGrantsLocationId?: string | undefined;
|
|
957
957
|
/**
|
|
958
958
|
* <p>The configuration options of the grant location. The grant location is the S3 path to the data to which you are granting access. </p>
|
|
959
959
|
* @public
|
|
960
960
|
*/
|
|
961
|
-
AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
|
|
961
|
+
AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration | undefined;
|
|
962
962
|
/**
|
|
963
963
|
* <p>The type of access that you are granting to your S3 data, which can be set to one of the following values:</p>
|
|
964
964
|
* <ul>
|
|
@@ -977,17 +977,17 @@ export interface CreateAccessGrantResult {
|
|
|
977
977
|
* </ul>
|
|
978
978
|
* @public
|
|
979
979
|
*/
|
|
980
|
-
Permission?: Permission;
|
|
980
|
+
Permission?: Permission | undefined;
|
|
981
981
|
/**
|
|
982
982
|
* <p>The Amazon Resource Name (ARN) of an Amazon Web Services IAM Identity Center application associated with your Identity Center instance. If the grant includes an application ARN, the grantee can only access the S3 data through this application. </p>
|
|
983
983
|
* @public
|
|
984
984
|
*/
|
|
985
|
-
ApplicationArn?: string;
|
|
985
|
+
ApplicationArn?: string | undefined;
|
|
986
986
|
/**
|
|
987
987
|
* <p>The S3 path of the data to which you are granting access. It is the result of appending the <code>Subprefix</code> to the location scope. </p>
|
|
988
988
|
* @public
|
|
989
989
|
*/
|
|
990
|
-
GrantScope?: string;
|
|
990
|
+
GrantScope?: string | undefined;
|
|
991
991
|
}
|
|
992
992
|
/**
|
|
993
993
|
* @public
|
|
@@ -997,17 +997,17 @@ export interface CreateAccessGrantsInstanceRequest {
|
|
|
997
997
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
998
998
|
* @public
|
|
999
999
|
*/
|
|
1000
|
-
AccountId?: string;
|
|
1000
|
+
AccountId?: string | undefined;
|
|
1001
1001
|
/**
|
|
1002
1002
|
* <p>If you would like to associate your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, use this field to pass the Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the <a href="https://docs.aws.amazon.com/singlesignon/latest/APIReference/API_ListInstances.html">ListInstances</a> API operation to retrieve a list of your Identity Center instances and their ARNs. </p>
|
|
1003
1003
|
* @public
|
|
1004
1004
|
*/
|
|
1005
|
-
IdentityCenterArn?: string;
|
|
1005
|
+
IdentityCenterArn?: string | undefined;
|
|
1006
1006
|
/**
|
|
1007
1007
|
* <p>The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter resources. </p>
|
|
1008
1008
|
* @public
|
|
1009
1009
|
*/
|
|
1010
|
-
Tags?: Tag[];
|
|
1010
|
+
Tags?: Tag[] | undefined;
|
|
1011
1011
|
}
|
|
1012
1012
|
/**
|
|
1013
1013
|
* @public
|
|
@@ -1017,34 +1017,34 @@ export interface CreateAccessGrantsInstanceResult {
|
|
|
1017
1017
|
* <p>The date and time when you created the S3 Access Grants instance. </p>
|
|
1018
1018
|
* @public
|
|
1019
1019
|
*/
|
|
1020
|
-
CreatedAt?: Date;
|
|
1020
|
+
CreatedAt?: Date | undefined;
|
|
1021
1021
|
/**
|
|
1022
1022
|
* <p>The ID of the S3 Access Grants instance. The ID is <code>default</code>. You can have one S3 Access Grants instance per Region per account. </p>
|
|
1023
1023
|
* @public
|
|
1024
1024
|
*/
|
|
1025
|
-
AccessGrantsInstanceId?: string;
|
|
1025
|
+
AccessGrantsInstanceId?: string | undefined;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the <a href="https://docs.aws.amazon.com/singlesignon/latest/APIReference/API_ListInstances.html">ListInstances</a> API operation to retrieve a list of your Identity Center instances and their ARNs.</p>
|
|
1028
1028
|
* @public
|
|
1029
1029
|
*/
|
|
1030
|
-
AccessGrantsInstanceArn?: string;
|
|
1030
|
+
AccessGrantsInstanceArn?: string | undefined;
|
|
1031
1031
|
/**
|
|
1032
1032
|
* @deprecated
|
|
1033
1033
|
*
|
|
1034
1034
|
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
1035
1035
|
* @public
|
|
1036
1036
|
*/
|
|
1037
|
-
IdentityCenterArn?: string;
|
|
1037
|
+
IdentityCenterArn?: string | undefined;
|
|
1038
1038
|
/**
|
|
1039
1039
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the <a href="https://docs.aws.amazon.com/singlesignon/latest/APIReference/API_ListInstances.html">ListInstances</a> API operation to retrieve a list of your Identity Center instances and their ARNs.</p>
|
|
1040
1040
|
* @public
|
|
1041
1041
|
*/
|
|
1042
|
-
IdentityCenterInstanceArn?: string;
|
|
1042
|
+
IdentityCenterInstanceArn?: string | undefined;
|
|
1043
1043
|
/**
|
|
1044
1044
|
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
1045
1045
|
* @public
|
|
1046
1046
|
*/
|
|
1047
|
-
IdentityCenterApplicationArn?: string;
|
|
1047
|
+
IdentityCenterApplicationArn?: string | undefined;
|
|
1048
1048
|
}
|
|
1049
1049
|
/**
|
|
1050
1050
|
* @public
|
|
@@ -1054,7 +1054,7 @@ export interface CreateAccessGrantsLocationRequest {
|
|
|
1054
1054
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
1055
1055
|
* @public
|
|
1056
1056
|
*/
|
|
1057
|
-
AccountId?: string;
|
|
1057
|
+
AccountId?: string | undefined;
|
|
1058
1058
|
/**
|
|
1059
1059
|
* <p>The S3 path to the location that you are registering. The location scope can be the default S3 location <code>s3://</code>, the S3 path to a bucket <code>s3://<bucket></code>, or the S3 path to a bucket and prefix <code>s3://<bucket>/<prefix></code>. A prefix in S3 is a string of characters at the beginning of an object key name used to organize the objects that you store in your S3 buckets. For example, object key names that start with the <code>engineering/</code> prefix or object key names that start with the <code>marketing/campaigns/</code> prefix.</p>
|
|
1060
1060
|
* @public
|
|
@@ -1069,7 +1069,7 @@ export interface CreateAccessGrantsLocationRequest {
|
|
|
1069
1069
|
* <p>The Amazon Web Services resource tags that you are adding to the S3 Access Grants location. Each tag is a label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter resources.</p>
|
|
1070
1070
|
* @public
|
|
1071
1071
|
*/
|
|
1072
|
-
Tags?: Tag[];
|
|
1072
|
+
Tags?: Tag[] | undefined;
|
|
1073
1073
|
}
|
|
1074
1074
|
/**
|
|
1075
1075
|
* @public
|
|
@@ -1079,27 +1079,27 @@ export interface CreateAccessGrantsLocationResult {
|
|
|
1079
1079
|
* <p>The date and time when you registered the location. </p>
|
|
1080
1080
|
* @public
|
|
1081
1081
|
*/
|
|
1082
|
-
CreatedAt?: Date;
|
|
1082
|
+
CreatedAt?: Date | undefined;
|
|
1083
1083
|
/**
|
|
1084
1084
|
* <p>The ID of the registered location to which you are granting access. S3 Access Grants assigns this ID when you register the location. S3 Access Grants assigns the ID <code>default</code> to the default location <code>s3://</code> and assigns an auto-generated ID to other locations that you register. </p>
|
|
1085
1085
|
* @public
|
|
1086
1086
|
*/
|
|
1087
|
-
AccessGrantsLocationId?: string;
|
|
1087
|
+
AccessGrantsLocationId?: string | undefined;
|
|
1088
1088
|
/**
|
|
1089
1089
|
* <p>The Amazon Resource Name (ARN) of the location you are registering.</p>
|
|
1090
1090
|
* @public
|
|
1091
1091
|
*/
|
|
1092
|
-
AccessGrantsLocationArn?: string;
|
|
1092
|
+
AccessGrantsLocationArn?: string | undefined;
|
|
1093
1093
|
/**
|
|
1094
1094
|
* <p>The S3 URI path to the location that you are registering. The location scope can be the default S3 location <code>s3://</code>, the S3 path to a bucket, or the S3 path to a bucket and prefix. A prefix in S3 is a string of characters at the beginning of an object key name used to organize the objects that you store in your S3 buckets. For example, object key names that start with the <code>engineering/</code> prefix or object key names that start with the <code>marketing/campaigns/</code> prefix.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
LocationScope?: string;
|
|
1097
|
+
LocationScope?: string | undefined;
|
|
1098
1098
|
/**
|
|
1099
1099
|
* <p>The Amazon Resource Name (ARN) of the IAM role for the registered location. S3 Access Grants assumes this role to manage access to the registered location. </p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
IAMRoleArn?: string;
|
|
1102
|
+
IAMRoleArn?: string | undefined;
|
|
1103
1103
|
}
|
|
1104
1104
|
/**
|
|
1105
1105
|
* @public
|
|
@@ -1109,7 +1109,7 @@ export interface CreateAccessPointRequest {
|
|
|
1109
1109
|
* <p>The Amazon Web Services account ID for the account that owns the specified access point.</p>
|
|
1110
1110
|
* @public
|
|
1111
1111
|
*/
|
|
1112
|
-
AccountId?: string;
|
|
1112
|
+
AccountId?: string | undefined;
|
|
1113
1113
|
/**
|
|
1114
1114
|
* <p>The name you want to assign to this access point.</p>
|
|
1115
1115
|
* @public
|
|
@@ -1130,13 +1130,13 @@ export interface CreateAccessPointRequest {
|
|
|
1130
1130
|
* </note>
|
|
1131
1131
|
* @public
|
|
1132
1132
|
*/
|
|
1133
|
-
VpcConfiguration?: VpcConfiguration;
|
|
1133
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
1134
1134
|
/**
|
|
1135
1135
|
* <p> The <code>PublicAccessBlock</code> configuration that you want to apply to the access point.
|
|
1136
1136
|
* </p>
|
|
1137
1137
|
* @public
|
|
1138
1138
|
*/
|
|
1139
|
-
PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
|
|
1139
|
+
PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration | undefined;
|
|
1140
1140
|
/**
|
|
1141
1141
|
* <p>The Amazon Web Services account ID associated with the S3 bucket associated with this access point.</p>
|
|
1142
1142
|
* <p>For same account access point when your bucket and access point belong to the same account owner, the <code>BucketAccountId</code> is not required.
|
|
@@ -1144,7 +1144,7 @@ export interface CreateAccessPointRequest {
|
|
|
1144
1144
|
* </p>
|
|
1145
1145
|
* @public
|
|
1146
1146
|
*/
|
|
1147
|
-
BucketAccountId?: string;
|
|
1147
|
+
BucketAccountId?: string | undefined;
|
|
1148
1148
|
}
|
|
1149
1149
|
/**
|
|
1150
1150
|
* @public
|
|
@@ -1157,12 +1157,12 @@ export interface CreateAccessPointResult {
|
|
|
1157
1157
|
* </note>
|
|
1158
1158
|
* @public
|
|
1159
1159
|
*/
|
|
1160
|
-
AccessPointArn?: string;
|
|
1160
|
+
AccessPointArn?: string | undefined;
|
|
1161
1161
|
/**
|
|
1162
1162
|
* <p>The name or alias of the access point.</p>
|
|
1163
1163
|
* @public
|
|
1164
1164
|
*/
|
|
1165
|
-
Alias?: string;
|
|
1165
|
+
Alias?: string | undefined;
|
|
1166
1166
|
}
|
|
1167
1167
|
/**
|
|
1168
1168
|
* @public
|
|
@@ -1254,14 +1254,14 @@ export interface ObjectLambdaConfiguration {
|
|
|
1254
1254
|
* <p>A container for whether the CloudWatch metrics configuration is enabled.</p>
|
|
1255
1255
|
* @public
|
|
1256
1256
|
*/
|
|
1257
|
-
CloudWatchMetricsEnabled?: boolean;
|
|
1257
|
+
CloudWatchMetricsEnabled?: boolean | undefined;
|
|
1258
1258
|
/**
|
|
1259
1259
|
* <p>A container for allowed features. Valid inputs are <code>GetObject-Range</code>,
|
|
1260
1260
|
* <code>GetObject-PartNumber</code>, <code>HeadObject-Range</code>, and
|
|
1261
1261
|
* <code>HeadObject-PartNumber</code>.</p>
|
|
1262
1262
|
* @public
|
|
1263
1263
|
*/
|
|
1264
|
-
AllowedFeatures?: ObjectLambdaAllowedFeature[];
|
|
1264
|
+
AllowedFeatures?: ObjectLambdaAllowedFeature[] | undefined;
|
|
1265
1265
|
/**
|
|
1266
1266
|
* <p>A container for transformation configurations for an Object Lambda Access Point.</p>
|
|
1267
1267
|
* @public
|
|
@@ -1276,7 +1276,7 @@ export interface CreateAccessPointForObjectLambdaRequest {
|
|
|
1276
1276
|
* <p>The Amazon Web Services account ID for owner of the specified Object Lambda Access Point.</p>
|
|
1277
1277
|
* @public
|
|
1278
1278
|
*/
|
|
1279
|
-
AccountId?: string;
|
|
1279
|
+
AccountId?: string | undefined;
|
|
1280
1280
|
/**
|
|
1281
1281
|
* <p>The name you want to assign to this Object Lambda Access Point.</p>
|
|
1282
1282
|
* @public
|
|
@@ -1310,7 +1310,7 @@ export interface ObjectLambdaAccessPointAlias {
|
|
|
1310
1310
|
* <p>The alias value of the Object Lambda Access Point.</p>
|
|
1311
1311
|
* @public
|
|
1312
1312
|
*/
|
|
1313
|
-
Value?: string;
|
|
1313
|
+
Value?: string | undefined;
|
|
1314
1314
|
/**
|
|
1315
1315
|
* <p>The status of the Object Lambda Access Point alias. If the status is <code>PROVISIONING</code>, the Object Lambda Access Point
|
|
1316
1316
|
* is provisioning the alias and the alias is not ready for use yet. If the status is
|
|
@@ -1318,7 +1318,7 @@ export interface ObjectLambdaAccessPointAlias {
|
|
|
1318
1318
|
* use.</p>
|
|
1319
1319
|
* @public
|
|
1320
1320
|
*/
|
|
1321
|
-
Status?: ObjectLambdaAccessPointAliasStatus;
|
|
1321
|
+
Status?: ObjectLambdaAccessPointAliasStatus | undefined;
|
|
1322
1322
|
}
|
|
1323
1323
|
/**
|
|
1324
1324
|
* @public
|
|
@@ -1328,12 +1328,12 @@ export interface CreateAccessPointForObjectLambdaResult {
|
|
|
1328
1328
|
* <p>Specifies the ARN for the Object Lambda Access Point.</p>
|
|
1329
1329
|
* @public
|
|
1330
1330
|
*/
|
|
1331
|
-
ObjectLambdaAccessPointArn?: string;
|
|
1331
|
+
ObjectLambdaAccessPointArn?: string | undefined;
|
|
1332
1332
|
/**
|
|
1333
1333
|
* <p>The alias of the Object Lambda Access Point.</p>
|
|
1334
1334
|
* @public
|
|
1335
1335
|
*/
|
|
1336
|
-
Alias?: ObjectLambdaAccessPointAlias;
|
|
1336
|
+
Alias?: ObjectLambdaAccessPointAlias | undefined;
|
|
1337
1337
|
}
|
|
1338
1338
|
/**
|
|
1339
1339
|
* <p>The requested Outposts bucket name is not available. The bucket namespace is shared by
|
|
@@ -1412,7 +1412,7 @@ export interface CreateBucketConfiguration {
|
|
|
1412
1412
|
* </note>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
LocationConstraint?: BucketLocationConstraint;
|
|
1415
|
+
LocationConstraint?: BucketLocationConstraint | undefined;
|
|
1416
1416
|
}
|
|
1417
1417
|
/**
|
|
1418
1418
|
* @public
|
|
@@ -1425,7 +1425,7 @@ export interface CreateBucketRequest {
|
|
|
1425
1425
|
* </note>
|
|
1426
1426
|
* @public
|
|
1427
1427
|
*/
|
|
1428
|
-
ACL?: BucketCannedACL;
|
|
1428
|
+
ACL?: BucketCannedACL | undefined;
|
|
1429
1429
|
/**
|
|
1430
1430
|
* <p>The name of the bucket.</p>
|
|
1431
1431
|
* @public
|
|
@@ -1438,7 +1438,7 @@ export interface CreateBucketRequest {
|
|
|
1438
1438
|
* </note>
|
|
1439
1439
|
* @public
|
|
1440
1440
|
*/
|
|
1441
|
-
CreateBucketConfiguration?: CreateBucketConfiguration;
|
|
1441
|
+
CreateBucketConfiguration?: CreateBucketConfiguration | undefined;
|
|
1442
1442
|
/**
|
|
1443
1443
|
* <p>Allows grantee the read, write, read ACP, and write ACP permissions on the
|
|
1444
1444
|
* bucket.</p>
|
|
@@ -1447,7 +1447,7 @@ export interface CreateBucketRequest {
|
|
|
1447
1447
|
* </note>
|
|
1448
1448
|
* @public
|
|
1449
1449
|
*/
|
|
1450
|
-
GrantFullControl?: string;
|
|
1450
|
+
GrantFullControl?: string | undefined;
|
|
1451
1451
|
/**
|
|
1452
1452
|
* <p>Allows grantee to list the objects in the bucket.</p>
|
|
1453
1453
|
* <note>
|
|
@@ -1455,7 +1455,7 @@ export interface CreateBucketRequest {
|
|
|
1455
1455
|
* </note>
|
|
1456
1456
|
* @public
|
|
1457
1457
|
*/
|
|
1458
|
-
GrantRead?: string;
|
|
1458
|
+
GrantRead?: string | undefined;
|
|
1459
1459
|
/**
|
|
1460
1460
|
* <p>Allows grantee to read the bucket ACL.</p>
|
|
1461
1461
|
* <note>
|
|
@@ -1463,7 +1463,7 @@ export interface CreateBucketRequest {
|
|
|
1463
1463
|
* </note>
|
|
1464
1464
|
* @public
|
|
1465
1465
|
*/
|
|
1466
|
-
GrantReadACP?: string;
|
|
1466
|
+
GrantReadACP?: string | undefined;
|
|
1467
1467
|
/**
|
|
1468
1468
|
* <p>Allows grantee to create, overwrite, and delete any object in the bucket.</p>
|
|
1469
1469
|
* <note>
|
|
@@ -1471,7 +1471,7 @@ export interface CreateBucketRequest {
|
|
|
1471
1471
|
* </note>
|
|
1472
1472
|
* @public
|
|
1473
1473
|
*/
|
|
1474
|
-
GrantWrite?: string;
|
|
1474
|
+
GrantWrite?: string | undefined;
|
|
1475
1475
|
/**
|
|
1476
1476
|
* <p>Allows grantee to write the ACL for the applicable bucket.</p>
|
|
1477
1477
|
* <note>
|
|
@@ -1479,7 +1479,7 @@ export interface CreateBucketRequest {
|
|
|
1479
1479
|
* </note>
|
|
1480
1480
|
* @public
|
|
1481
1481
|
*/
|
|
1482
|
-
GrantWriteACP?: string;
|
|
1482
|
+
GrantWriteACP?: string | undefined;
|
|
1483
1483
|
/**
|
|
1484
1484
|
* <p>Specifies whether you want S3 Object Lock to be enabled for the new bucket.</p>
|
|
1485
1485
|
* <note>
|
|
@@ -1487,7 +1487,7 @@ export interface CreateBucketRequest {
|
|
|
1487
1487
|
* </note>
|
|
1488
1488
|
* @public
|
|
1489
1489
|
*/
|
|
1490
|
-
ObjectLockEnabledForBucket?: boolean;
|
|
1490
|
+
ObjectLockEnabledForBucket?: boolean | undefined;
|
|
1491
1491
|
/**
|
|
1492
1492
|
* <p>The ID of the Outposts where the bucket is being created.</p>
|
|
1493
1493
|
* <note>
|
|
@@ -1495,7 +1495,7 @@ export interface CreateBucketRequest {
|
|
|
1495
1495
|
* </note>
|
|
1496
1496
|
* @public
|
|
1497
1497
|
*/
|
|
1498
|
-
OutpostId?: string;
|
|
1498
|
+
OutpostId?: string | undefined;
|
|
1499
1499
|
}
|
|
1500
1500
|
/**
|
|
1501
1501
|
* @public
|
|
@@ -1505,14 +1505,14 @@ export interface CreateBucketResult {
|
|
|
1505
1505
|
* <p>The location of the bucket.</p>
|
|
1506
1506
|
* @public
|
|
1507
1507
|
*/
|
|
1508
|
-
Location?: string;
|
|
1508
|
+
Location?: string | undefined;
|
|
1509
1509
|
/**
|
|
1510
1510
|
* <p>The Amazon Resource Name (ARN) of the bucket.</p>
|
|
1511
1511
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
1512
1512
|
* <p>For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format <code>arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name></code>. For example, to access the bucket <code>reports</code> through Outpost <code>my-outpost</code> owned by account <code>123456789012</code> in Region <code>us-west-2</code>, use the URL encoding of <code>arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports</code>. The value must be URL encoded. </p>
|
|
1513
1513
|
* @public
|
|
1514
1514
|
*/
|
|
1515
|
-
BucketArn?: string;
|
|
1515
|
+
BucketArn?: string | undefined;
|
|
1516
1516
|
}
|
|
1517
1517
|
/**
|
|
1518
1518
|
* <p></p>
|
|
@@ -1521,7 +1521,7 @@ export interface CreateBucketResult {
|
|
|
1521
1521
|
export declare class BadRequestException extends __BaseException {
|
|
1522
1522
|
readonly name: "BadRequestException";
|
|
1523
1523
|
readonly $fault: "client";
|
|
1524
|
-
Message?: string;
|
|
1524
|
+
Message?: string | undefined;
|
|
1525
1525
|
/**
|
|
1526
1526
|
* @internal
|
|
1527
1527
|
*/
|
|
@@ -1549,7 +1549,7 @@ export interface JobManifestLocation {
|
|
|
1549
1549
|
* <p>The optional version ID to identify a specific version of the manifest object.</p>
|
|
1550
1550
|
* @public
|
|
1551
1551
|
*/
|
|
1552
|
-
ObjectVersionId?: string;
|
|
1552
|
+
ObjectVersionId?: string | undefined;
|
|
1553
1553
|
/**
|
|
1554
1554
|
* <p>The ETag for the specified manifest object.</p>
|
|
1555
1555
|
* @public
|
|
@@ -1598,7 +1598,7 @@ export interface JobManifestSpec {
|
|
|
1598
1598
|
* format, this element describes which columns contain the required data.</p>
|
|
1599
1599
|
* @public
|
|
1600
1600
|
*/
|
|
1601
|
-
Fields?: JobManifestFieldName[];
|
|
1601
|
+
Fields?: JobManifestFieldName[] | undefined;
|
|
1602
1602
|
}
|
|
1603
1603
|
/**
|
|
1604
1604
|
* <p>Contains the configuration information for a job's manifest.</p>
|
|
@@ -1630,19 +1630,19 @@ export interface KeyNameConstraint {
|
|
|
1630
1630
|
* at the start of the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.</p>
|
|
1631
1631
|
* @public
|
|
1632
1632
|
*/
|
|
1633
|
-
MatchAnyPrefix?: string[];
|
|
1633
|
+
MatchAnyPrefix?: string[] | undefined;
|
|
1634
1634
|
/**
|
|
1635
1635
|
* <p>If provided, the generated manifest includes objects where the specified string appears
|
|
1636
1636
|
* at the end of the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.</p>
|
|
1637
1637
|
* @public
|
|
1638
1638
|
*/
|
|
1639
|
-
MatchAnySuffix?: string[];
|
|
1639
|
+
MatchAnySuffix?: string[] | undefined;
|
|
1640
1640
|
/**
|
|
1641
1641
|
* <p>If provided, the generated manifest includes objects where the specified string appears
|
|
1642
1642
|
* anywhere within the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.</p>
|
|
1643
1643
|
* @public
|
|
1644
1644
|
*/
|
|
1645
|
-
MatchAnySubstring?: string[];
|
|
1645
|
+
MatchAnySubstring?: string[] | undefined;
|
|
1646
1646
|
}
|
|
1647
1647
|
/**
|
|
1648
1648
|
* @public
|
|
@@ -1685,50 +1685,50 @@ export interface JobManifestGeneratorFilter {
|
|
|
1685
1685
|
* according to the Replication configuration on the source bucket.</p>
|
|
1686
1686
|
* @public
|
|
1687
1687
|
*/
|
|
1688
|
-
EligibleForReplication?: boolean;
|
|
1688
|
+
EligibleForReplication?: boolean | undefined;
|
|
1689
1689
|
/**
|
|
1690
1690
|
* <p>If provided, the generated manifest includes only source bucket objects that were
|
|
1691
1691
|
* created after this time.</p>
|
|
1692
1692
|
* @public
|
|
1693
1693
|
*/
|
|
1694
|
-
CreatedAfter?: Date;
|
|
1694
|
+
CreatedAfter?: Date | undefined;
|
|
1695
1695
|
/**
|
|
1696
1696
|
* <p>If provided, the generated manifest includes only source bucket objects that were
|
|
1697
1697
|
* created before this time.</p>
|
|
1698
1698
|
* @public
|
|
1699
1699
|
*/
|
|
1700
|
-
CreatedBefore?: Date;
|
|
1700
|
+
CreatedBefore?: Date | undefined;
|
|
1701
1701
|
/**
|
|
1702
1702
|
* <p>If provided, the generated manifest includes only source bucket objects that have one of
|
|
1703
1703
|
* the specified Replication statuses.</p>
|
|
1704
1704
|
* @public
|
|
1705
1705
|
*/
|
|
1706
|
-
ObjectReplicationStatuses?: ReplicationStatus[];
|
|
1706
|
+
ObjectReplicationStatuses?: ReplicationStatus[] | undefined;
|
|
1707
1707
|
/**
|
|
1708
1708
|
* <p>If provided, the generated manifest includes only source bucket objects whose object
|
|
1709
1709
|
* keys match the string constraints specified for <code>MatchAnyPrefix</code>,
|
|
1710
1710
|
* <code>MatchAnySuffix</code>, and <code>MatchAnySubstring</code>.</p>
|
|
1711
1711
|
* @public
|
|
1712
1712
|
*/
|
|
1713
|
-
KeyNameConstraint?: KeyNameConstraint;
|
|
1713
|
+
KeyNameConstraint?: KeyNameConstraint | undefined;
|
|
1714
1714
|
/**
|
|
1715
1715
|
* <p>If provided, the generated manifest includes only source bucket objects whose file size
|
|
1716
1716
|
* is greater than the specified number of bytes.</p>
|
|
1717
1717
|
* @public
|
|
1718
1718
|
*/
|
|
1719
|
-
ObjectSizeGreaterThanBytes?: number;
|
|
1719
|
+
ObjectSizeGreaterThanBytes?: number | undefined;
|
|
1720
1720
|
/**
|
|
1721
1721
|
* <p>If provided, the generated manifest includes only source bucket objects whose file size
|
|
1722
1722
|
* is less than the specified number of bytes.</p>
|
|
1723
1723
|
* @public
|
|
1724
1724
|
*/
|
|
1725
|
-
ObjectSizeLessThanBytes?: number;
|
|
1725
|
+
ObjectSizeLessThanBytes?: number | undefined;
|
|
1726
1726
|
/**
|
|
1727
1727
|
* <p>If provided, the generated manifest includes only source bucket objects that are stored
|
|
1728
1728
|
* with the specified storage class.</p>
|
|
1729
1729
|
* @public
|
|
1730
1730
|
*/
|
|
1731
|
-
MatchAnyStorageClass?: S3StorageClass[];
|
|
1731
|
+
MatchAnyStorageClass?: S3StorageClass[] | undefined;
|
|
1732
1732
|
}
|
|
1733
1733
|
/**
|
|
1734
1734
|
* <p>Configuration for the use of SSE-KMS to encrypt generated manifest objects.</p>
|
|
@@ -1757,13 +1757,13 @@ export interface GeneratedManifestEncryption {
|
|
|
1757
1757
|
* <p>Specifies the use of SSE-S3 to encrypt generated manifest objects.</p>
|
|
1758
1758
|
* @public
|
|
1759
1759
|
*/
|
|
1760
|
-
SSES3?: SSES3Encryption;
|
|
1760
|
+
SSES3?: SSES3Encryption | undefined;
|
|
1761
1761
|
/**
|
|
1762
1762
|
* <p>Configuration details on how SSE-KMS is used to encrypt generated manifest
|
|
1763
1763
|
* objects.</p>
|
|
1764
1764
|
* @public
|
|
1765
1765
|
*/
|
|
1766
|
-
SSEKMS?: SSEKMSEncryption;
|
|
1766
|
+
SSEKMS?: SSEKMSEncryption | undefined;
|
|
1767
1767
|
}
|
|
1768
1768
|
/**
|
|
1769
1769
|
* @public
|
|
@@ -1785,7 +1785,7 @@ export interface S3ManifestOutputLocation {
|
|
|
1785
1785
|
* <p>The Account ID that owns the bucket the generated manifest is written to.</p>
|
|
1786
1786
|
* @public
|
|
1787
1787
|
*/
|
|
1788
|
-
ExpectedManifestBucketOwner?: string;
|
|
1788
|
+
ExpectedManifestBucketOwner?: string | undefined;
|
|
1789
1789
|
/**
|
|
1790
1790
|
* <p>The bucket ARN the generated manifest should be written to.</p>
|
|
1791
1791
|
* <note>
|
|
@@ -1800,13 +1800,13 @@ export interface S3ManifestOutputLocation {
|
|
|
1800
1800
|
* <p>Prefix identifying one or more objects to which the manifest applies.</p>
|
|
1801
1801
|
* @public
|
|
1802
1802
|
*/
|
|
1803
|
-
ManifestPrefix?: string;
|
|
1803
|
+
ManifestPrefix?: string | undefined;
|
|
1804
1804
|
/**
|
|
1805
1805
|
* <p>Specifies what encryption should be used when the generated manifest objects are
|
|
1806
1806
|
* written.</p>
|
|
1807
1807
|
* @public
|
|
1808
1808
|
*/
|
|
1809
|
-
ManifestEncryption?: GeneratedManifestEncryption;
|
|
1809
|
+
ManifestEncryption?: GeneratedManifestEncryption | undefined;
|
|
1810
1810
|
/**
|
|
1811
1811
|
* <p>The format of the generated manifest.</p>
|
|
1812
1812
|
* @public
|
|
@@ -1824,7 +1824,7 @@ export interface S3JobManifestGenerator {
|
|
|
1824
1824
|
* the job fails.</p>
|
|
1825
1825
|
* @public
|
|
1826
1826
|
*/
|
|
1827
|
-
ExpectedBucketOwner?: string;
|
|
1827
|
+
ExpectedBucketOwner?: string | undefined;
|
|
1828
1828
|
/**
|
|
1829
1829
|
* <p>The ARN of the source bucket used by the ManifestGenerator.</p>
|
|
1830
1830
|
* <note>
|
|
@@ -1841,13 +1841,13 @@ export interface S3JobManifestGenerator {
|
|
|
1841
1841
|
* buckets</a>.</p>
|
|
1842
1842
|
* @public
|
|
1843
1843
|
*/
|
|
1844
|
-
ManifestOutputLocation?: S3ManifestOutputLocation;
|
|
1844
|
+
ManifestOutputLocation?: S3ManifestOutputLocation | undefined;
|
|
1845
1845
|
/**
|
|
1846
1846
|
* <p>Specifies rules the S3JobManifestGenerator should use to decide whether an object
|
|
1847
1847
|
* in the source bucket should or should not be included in the generated job manifest.</p>
|
|
1848
1848
|
* @public
|
|
1849
1849
|
*/
|
|
1850
|
-
Filter?: JobManifestGeneratorFilter;
|
|
1850
|
+
Filter?: JobManifestGeneratorFilter | undefined;
|
|
1851
1851
|
/**
|
|
1852
1852
|
* <p>Determines whether or not to write the job's generated manifest to a bucket.</p>
|
|
1853
1853
|
* @public
|
|
@@ -1894,7 +1894,7 @@ export interface LambdaInvokeOperation {
|
|
|
1894
1894
|
* invoke on every object in the manifest.</p>
|
|
1895
1895
|
* @public
|
|
1896
1896
|
*/
|
|
1897
|
-
FunctionArn?: string;
|
|
1897
|
+
FunctionArn?: string | undefined;
|
|
1898
1898
|
/**
|
|
1899
1899
|
* <p>Specifies the schema version for the payload that Batch Operations sends when invoking
|
|
1900
1900
|
* an Lambda function. Version <code>1.0</code> is the default. Version
|
|
@@ -1914,7 +1914,7 @@ export interface LambdaInvokeOperation {
|
|
|
1914
1914
|
* </note>
|
|
1915
1915
|
* @public
|
|
1916
1916
|
*/
|
|
1917
|
-
InvocationSchemaVersion?: string;
|
|
1917
|
+
InvocationSchemaVersion?: string | undefined;
|
|
1918
1918
|
/**
|
|
1919
1919
|
* <p>Key-value pairs that are passed in the payload that Batch Operations sends when invoking
|
|
1920
1920
|
* an Lambda function. You must specify <code>InvocationSchemaVersion</code>
|
|
@@ -1923,7 +1923,7 @@ export interface LambdaInvokeOperation {
|
|
|
1923
1923
|
* Lambda</a> in the <i>Amazon Web Services Storage Blog</i>.</p>
|
|
1924
1924
|
* @public
|
|
1925
1925
|
*/
|
|
1926
|
-
UserArguments?: Record<string, string
|
|
1926
|
+
UserArguments?: Record<string, string> | undefined;
|
|
1927
1927
|
}
|
|
1928
1928
|
/**
|
|
1929
1929
|
* <p>Contains no configuration parameters because the DELETE Object tagging
|
|
@@ -1977,13 +1977,13 @@ export interface S3InitiateRestoreObjectOperation {
|
|
|
1977
1977
|
* you <i>must</i> create separate Batch Operations jobs. </p>
|
|
1978
1978
|
* @public
|
|
1979
1979
|
*/
|
|
1980
|
-
ExpirationInDays?: number;
|
|
1980
|
+
ExpirationInDays?: number | undefined;
|
|
1981
1981
|
/**
|
|
1982
1982
|
* <p>S3 Batch Operations supports <code>STANDARD</code> and <code>BULK</code> retrieval tiers, but
|
|
1983
1983
|
* not the <code>EXPEDITED</code> retrieval tier.</p>
|
|
1984
1984
|
* @public
|
|
1985
1985
|
*/
|
|
1986
|
-
GlacierJobTier?: S3GlacierJobTier;
|
|
1986
|
+
GlacierJobTier?: S3GlacierJobTier | undefined;
|
|
1987
1987
|
}
|
|
1988
1988
|
/**
|
|
1989
1989
|
* @public
|
|
@@ -2007,17 +2007,17 @@ export interface S3Grantee {
|
|
|
2007
2007
|
* <p></p>
|
|
2008
2008
|
* @public
|
|
2009
2009
|
*/
|
|
2010
|
-
TypeIdentifier?: S3GranteeTypeIdentifier;
|
|
2010
|
+
TypeIdentifier?: S3GranteeTypeIdentifier | undefined;
|
|
2011
2011
|
/**
|
|
2012
2012
|
* <p></p>
|
|
2013
2013
|
* @public
|
|
2014
2014
|
*/
|
|
2015
|
-
Identifier?: string;
|
|
2015
|
+
Identifier?: string | undefined;
|
|
2016
2016
|
/**
|
|
2017
2017
|
* <p></p>
|
|
2018
2018
|
* @public
|
|
2019
2019
|
*/
|
|
2020
|
-
DisplayName?: string;
|
|
2020
|
+
DisplayName?: string | undefined;
|
|
2021
2021
|
}
|
|
2022
2022
|
/**
|
|
2023
2023
|
* @public
|
|
@@ -2043,12 +2043,12 @@ export interface S3Grant {
|
|
|
2043
2043
|
* <p></p>
|
|
2044
2044
|
* @public
|
|
2045
2045
|
*/
|
|
2046
|
-
Grantee?: S3Grantee;
|
|
2046
|
+
Grantee?: S3Grantee | undefined;
|
|
2047
2047
|
/**
|
|
2048
2048
|
* <p></p>
|
|
2049
2049
|
* @public
|
|
2050
2050
|
*/
|
|
2051
|
-
Permission?: S3Permission;
|
|
2051
|
+
Permission?: S3Permission | undefined;
|
|
2052
2052
|
}
|
|
2053
2053
|
/**
|
|
2054
2054
|
* <p></p>
|
|
@@ -2059,12 +2059,12 @@ export interface S3ObjectOwner {
|
|
|
2059
2059
|
* <p></p>
|
|
2060
2060
|
* @public
|
|
2061
2061
|
*/
|
|
2062
|
-
ID?: string;
|
|
2062
|
+
ID?: string | undefined;
|
|
2063
2063
|
/**
|
|
2064
2064
|
* <p></p>
|
|
2065
2065
|
* @public
|
|
2066
2066
|
*/
|
|
2067
|
-
DisplayName?: string;
|
|
2067
|
+
DisplayName?: string | undefined;
|
|
2068
2068
|
}
|
|
2069
2069
|
/**
|
|
2070
2070
|
* <p></p>
|
|
@@ -2080,7 +2080,7 @@ export interface S3AccessControlList {
|
|
|
2080
2080
|
* <p></p>
|
|
2081
2081
|
* @public
|
|
2082
2082
|
*/
|
|
2083
|
-
Grants?: S3Grant[];
|
|
2083
|
+
Grants?: S3Grant[] | undefined;
|
|
2084
2084
|
}
|
|
2085
2085
|
/**
|
|
2086
2086
|
* @public
|
|
@@ -2108,12 +2108,12 @@ export interface S3AccessControlPolicy {
|
|
|
2108
2108
|
* <p></p>
|
|
2109
2109
|
* @public
|
|
2110
2110
|
*/
|
|
2111
|
-
AccessControlList?: S3AccessControlList;
|
|
2111
|
+
AccessControlList?: S3AccessControlList | undefined;
|
|
2112
2112
|
/**
|
|
2113
2113
|
* <p></p>
|
|
2114
2114
|
* @public
|
|
2115
2115
|
*/
|
|
2116
|
-
CannedAccessControlList?: S3CannedAccessControlList;
|
|
2116
|
+
CannedAccessControlList?: S3CannedAccessControlList | undefined;
|
|
2117
2117
|
}
|
|
2118
2118
|
/**
|
|
2119
2119
|
* <p>Contains the configuration parameters for a
|
|
@@ -2130,7 +2130,7 @@ export interface S3SetObjectAclOperation {
|
|
|
2130
2130
|
* <p></p>
|
|
2131
2131
|
* @public
|
|
2132
2132
|
*/
|
|
2133
|
-
AccessControlPolicy?: S3AccessControlPolicy;
|
|
2133
|
+
AccessControlPolicy?: S3AccessControlPolicy | undefined;
|
|
2134
2134
|
}
|
|
2135
2135
|
/**
|
|
2136
2136
|
* @public
|
|
@@ -2179,27 +2179,27 @@ export interface S3ObjectMetadata {
|
|
|
2179
2179
|
* <p></p>
|
|
2180
2180
|
* @public
|
|
2181
2181
|
*/
|
|
2182
|
-
CacheControl?: string;
|
|
2182
|
+
CacheControl?: string | undefined;
|
|
2183
2183
|
/**
|
|
2184
2184
|
* <p></p>
|
|
2185
2185
|
* @public
|
|
2186
2186
|
*/
|
|
2187
|
-
ContentDisposition?: string;
|
|
2187
|
+
ContentDisposition?: string | undefined;
|
|
2188
2188
|
/**
|
|
2189
2189
|
* <p></p>
|
|
2190
2190
|
* @public
|
|
2191
2191
|
*/
|
|
2192
|
-
ContentEncoding?: string;
|
|
2192
|
+
ContentEncoding?: string | undefined;
|
|
2193
2193
|
/**
|
|
2194
2194
|
* <p></p>
|
|
2195
2195
|
* @public
|
|
2196
2196
|
*/
|
|
2197
|
-
ContentLanguage?: string;
|
|
2197
|
+
ContentLanguage?: string | undefined;
|
|
2198
2198
|
/**
|
|
2199
2199
|
* <p></p>
|
|
2200
2200
|
* @public
|
|
2201
2201
|
*/
|
|
2202
|
-
UserMetadata?: Record<string, string
|
|
2202
|
+
UserMetadata?: Record<string, string> | undefined;
|
|
2203
2203
|
/**
|
|
2204
2204
|
* <p>
|
|
2205
2205
|
* <i>This member has been deprecated.</i>
|
|
@@ -2207,7 +2207,7 @@ export interface S3ObjectMetadata {
|
|
|
2207
2207
|
* <p></p>
|
|
2208
2208
|
* @public
|
|
2209
2209
|
*/
|
|
2210
|
-
ContentLength?: number;
|
|
2210
|
+
ContentLength?: number | undefined;
|
|
2211
2211
|
/**
|
|
2212
2212
|
* <p>
|
|
2213
2213
|
* <i>This member has been deprecated.</i>
|
|
@@ -2215,17 +2215,17 @@ export interface S3ObjectMetadata {
|
|
|
2215
2215
|
* <p></p>
|
|
2216
2216
|
* @public
|
|
2217
2217
|
*/
|
|
2218
|
-
ContentMD5?: string;
|
|
2218
|
+
ContentMD5?: string | undefined;
|
|
2219
2219
|
/**
|
|
2220
2220
|
* <p></p>
|
|
2221
2221
|
* @public
|
|
2222
2222
|
*/
|
|
2223
|
-
ContentType?: string;
|
|
2223
|
+
ContentType?: string | undefined;
|
|
2224
2224
|
/**
|
|
2225
2225
|
* <p></p>
|
|
2226
2226
|
* @public
|
|
2227
2227
|
*/
|
|
2228
|
-
HttpExpiresDate?: Date;
|
|
2228
|
+
HttpExpiresDate?: Date | undefined;
|
|
2229
2229
|
/**
|
|
2230
2230
|
* <p>
|
|
2231
2231
|
* <i>This member has been deprecated.</i>
|
|
@@ -2233,7 +2233,7 @@ export interface S3ObjectMetadata {
|
|
|
2233
2233
|
* <p></p>
|
|
2234
2234
|
* @public
|
|
2235
2235
|
*/
|
|
2236
|
-
RequesterCharged?: boolean;
|
|
2236
|
+
RequesterCharged?: boolean | undefined;
|
|
2237
2237
|
/**
|
|
2238
2238
|
* <p></p>
|
|
2239
2239
|
* <note>
|
|
@@ -2241,7 +2241,7 @@ export interface S3ObjectMetadata {
|
|
|
2241
2241
|
* </note>
|
|
2242
2242
|
* @public
|
|
2243
2243
|
*/
|
|
2244
|
-
SSEAlgorithm?: S3SSEAlgorithm;
|
|
2244
|
+
SSEAlgorithm?: S3SSEAlgorithm | undefined;
|
|
2245
2245
|
}
|
|
2246
2246
|
/**
|
|
2247
2247
|
* <p>A container for a key-value name pair.</p>
|
|
@@ -2315,7 +2315,7 @@ export interface S3CopyObjectOperation {
|
|
|
2315
2315
|
* </ul>
|
|
2316
2316
|
* @public
|
|
2317
2317
|
*/
|
|
2318
|
-
TargetResource?: string;
|
|
2318
|
+
TargetResource?: string | undefined;
|
|
2319
2319
|
/**
|
|
2320
2320
|
* <p></p>
|
|
2321
2321
|
* <note>
|
|
@@ -2323,7 +2323,7 @@ export interface S3CopyObjectOperation {
|
|
|
2323
2323
|
* </note>
|
|
2324
2324
|
* @public
|
|
2325
2325
|
*/
|
|
2326
|
-
CannedAccessControlList?: S3CannedAccessControlList;
|
|
2326
|
+
CannedAccessControlList?: S3CannedAccessControlList | undefined;
|
|
2327
2327
|
/**
|
|
2328
2328
|
* <p></p>
|
|
2329
2329
|
* <note>
|
|
@@ -2331,24 +2331,24 @@ export interface S3CopyObjectOperation {
|
|
|
2331
2331
|
* </note>
|
|
2332
2332
|
* @public
|
|
2333
2333
|
*/
|
|
2334
|
-
AccessControlGrants?: S3Grant[];
|
|
2334
|
+
AccessControlGrants?: S3Grant[] | undefined;
|
|
2335
2335
|
/**
|
|
2336
2336
|
* <p></p>
|
|
2337
2337
|
* @public
|
|
2338
2338
|
*/
|
|
2339
|
-
MetadataDirective?: S3MetadataDirective;
|
|
2339
|
+
MetadataDirective?: S3MetadataDirective | undefined;
|
|
2340
2340
|
/**
|
|
2341
2341
|
* <p></p>
|
|
2342
2342
|
* @public
|
|
2343
2343
|
*/
|
|
2344
|
-
ModifiedSinceConstraint?: Date;
|
|
2344
|
+
ModifiedSinceConstraint?: Date | undefined;
|
|
2345
2345
|
/**
|
|
2346
2346
|
* <p>If you don't provide this parameter, Amazon S3 copies all the metadata from the original
|
|
2347
2347
|
* objects. If you specify an empty set, the new objects will have no tags. Otherwise, Amazon S3
|
|
2348
2348
|
* assigns the supplied tags to the new objects.</p>
|
|
2349
2349
|
* @public
|
|
2350
2350
|
*/
|
|
2351
|
-
NewObjectMetadata?: S3ObjectMetadata;
|
|
2351
|
+
NewObjectMetadata?: S3ObjectMetadata | undefined;
|
|
2352
2352
|
/**
|
|
2353
2353
|
* <p>Specifies a list of tags to add to the destination objects after they are copied.
|
|
2354
2354
|
* If <code>NewObjectTagging</code> is not specified, the tags of the source objects are copied to destination objects by default.</p>
|
|
@@ -2360,7 +2360,7 @@ export interface S3CopyObjectOperation {
|
|
|
2360
2360
|
* </note>
|
|
2361
2361
|
* @public
|
|
2362
2362
|
*/
|
|
2363
|
-
NewObjectTagging?: S3Tag[];
|
|
2363
|
+
NewObjectTagging?: S3Tag[] | undefined;
|
|
2364
2364
|
/**
|
|
2365
2365
|
* <p>If the destination bucket is configured as a website, specifies an optional metadata property for website redirects,
|
|
2366
2366
|
* <code>x-amz-website-redirect-location</code>. Allows webpage redirects if the object copy is
|
|
@@ -2370,7 +2370,7 @@ export interface S3CopyObjectOperation {
|
|
|
2370
2370
|
* </note>
|
|
2371
2371
|
* @public
|
|
2372
2372
|
*/
|
|
2373
|
-
RedirectLocation?: string;
|
|
2373
|
+
RedirectLocation?: string | undefined;
|
|
2374
2374
|
/**
|
|
2375
2375
|
* <p></p>
|
|
2376
2376
|
* <note>
|
|
@@ -2378,7 +2378,7 @@ export interface S3CopyObjectOperation {
|
|
|
2378
2378
|
* </note>
|
|
2379
2379
|
* @public
|
|
2380
2380
|
*/
|
|
2381
|
-
RequesterPays?: boolean;
|
|
2381
|
+
RequesterPays?: boolean | undefined;
|
|
2382
2382
|
/**
|
|
2383
2383
|
* <p>Specify the storage class for the destination objects in a <code>Copy</code> operation.</p>
|
|
2384
2384
|
* <note>
|
|
@@ -2387,12 +2387,12 @@ export interface S3CopyObjectOperation {
|
|
|
2387
2387
|
* </note>
|
|
2388
2388
|
* @public
|
|
2389
2389
|
*/
|
|
2390
|
-
StorageClass?: S3StorageClass;
|
|
2390
|
+
StorageClass?: S3StorageClass | undefined;
|
|
2391
2391
|
/**
|
|
2392
2392
|
* <p></p>
|
|
2393
2393
|
* @public
|
|
2394
2394
|
*/
|
|
2395
|
-
UnModifiedSinceConstraint?: Date;
|
|
2395
|
+
UnModifiedSinceConstraint?: Date | undefined;
|
|
2396
2396
|
/**
|
|
2397
2397
|
* <p></p>
|
|
2398
2398
|
* <note>
|
|
@@ -2400,7 +2400,7 @@ export interface S3CopyObjectOperation {
|
|
|
2400
2400
|
* </note>
|
|
2401
2401
|
* @public
|
|
2402
2402
|
*/
|
|
2403
|
-
SSEAwsKmsKeyId?: string;
|
|
2403
|
+
SSEAwsKmsKeyId?: string | undefined;
|
|
2404
2404
|
/**
|
|
2405
2405
|
* <p>Specifies the folder prefix
|
|
2406
2406
|
* that
|
|
@@ -2415,7 +2415,7 @@ export interface S3CopyObjectOperation {
|
|
|
2415
2415
|
* to <code>Folder1</code>.</p>
|
|
2416
2416
|
* @public
|
|
2417
2417
|
*/
|
|
2418
|
-
TargetKeyPrefix?: string;
|
|
2418
|
+
TargetKeyPrefix?: string | undefined;
|
|
2419
2419
|
/**
|
|
2420
2420
|
* <p>The legal hold status to be applied to all objects in the Batch Operations job.</p>
|
|
2421
2421
|
* <note>
|
|
@@ -2423,7 +2423,7 @@ export interface S3CopyObjectOperation {
|
|
|
2423
2423
|
* </note>
|
|
2424
2424
|
* @public
|
|
2425
2425
|
*/
|
|
2426
|
-
ObjectLockLegalHoldStatus?: S3ObjectLockLegalHoldStatus;
|
|
2426
|
+
ObjectLockLegalHoldStatus?: S3ObjectLockLegalHoldStatus | undefined;
|
|
2427
2427
|
/**
|
|
2428
2428
|
* <p>The retention mode to be applied to all objects in the Batch Operations job.</p>
|
|
2429
2429
|
* <note>
|
|
@@ -2431,7 +2431,7 @@ export interface S3CopyObjectOperation {
|
|
|
2431
2431
|
* </note>
|
|
2432
2432
|
* @public
|
|
2433
2433
|
*/
|
|
2434
|
-
ObjectLockMode?: S3ObjectLockMode;
|
|
2434
|
+
ObjectLockMode?: S3ObjectLockMode | undefined;
|
|
2435
2435
|
/**
|
|
2436
2436
|
* <p>The date when the applied object retention configuration expires on all objects in the
|
|
2437
2437
|
* Batch Operations job.</p>
|
|
@@ -2440,7 +2440,7 @@ export interface S3CopyObjectOperation {
|
|
|
2440
2440
|
* </note>
|
|
2441
2441
|
* @public
|
|
2442
2442
|
*/
|
|
2443
|
-
ObjectLockRetainUntilDate?: Date;
|
|
2443
|
+
ObjectLockRetainUntilDate?: Date | undefined;
|
|
2444
2444
|
/**
|
|
2445
2445
|
* <p>Specifies whether Amazon S3 should use an S3 Bucket Key for object encryption with
|
|
2446
2446
|
* server-side encryption using Amazon Web Services KMS (SSE-KMS). Setting this header to <code>true</code>
|
|
@@ -2452,7 +2452,7 @@ export interface S3CopyObjectOperation {
|
|
|
2452
2452
|
* </note>
|
|
2453
2453
|
* @public
|
|
2454
2454
|
*/
|
|
2455
|
-
BucketKeyEnabled?: boolean;
|
|
2455
|
+
BucketKeyEnabled?: boolean | undefined;
|
|
2456
2456
|
/**
|
|
2457
2457
|
* <p>Indicates the algorithm
|
|
2458
2458
|
* that
|
|
@@ -2462,7 +2462,7 @@ export interface S3CopyObjectOperation {
|
|
|
2462
2462
|
* integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
2463
2463
|
* @public
|
|
2464
2464
|
*/
|
|
2465
|
-
ChecksumAlgorithm?: S3ChecksumAlgorithm;
|
|
2465
|
+
ChecksumAlgorithm?: S3ChecksumAlgorithm | undefined;
|
|
2466
2466
|
}
|
|
2467
2467
|
/**
|
|
2468
2468
|
* <p>Whether S3 Object Lock legal hold will be applied to objects in an S3 Batch Operations
|
|
@@ -2525,13 +2525,13 @@ export interface S3Retention {
|
|
|
2525
2525
|
* Batch Operations job.</p>
|
|
2526
2526
|
* @public
|
|
2527
2527
|
*/
|
|
2528
|
-
RetainUntilDate?: Date;
|
|
2528
|
+
RetainUntilDate?: Date | undefined;
|
|
2529
2529
|
/**
|
|
2530
2530
|
* <p>The Object Lock retention mode to be applied to all objects in the Batch Operations
|
|
2531
2531
|
* job.</p>
|
|
2532
2532
|
* @public
|
|
2533
2533
|
*/
|
|
2534
|
-
Mode?: S3ObjectLockRetentionMode;
|
|
2534
|
+
Mode?: S3ObjectLockRetentionMode | undefined;
|
|
2535
2535
|
}
|
|
2536
2536
|
/**
|
|
2537
2537
|
* <p>Contains the configuration parameters for the Object Lock retention action for an
|
|
@@ -2551,7 +2551,7 @@ export interface S3SetObjectRetentionOperation {
|
|
|
2551
2551
|
* have Object Lock <code> GOVERNANCE</code> type in place.</p>
|
|
2552
2552
|
* @public
|
|
2553
2553
|
*/
|
|
2554
|
-
BypassGovernanceRetention?: boolean;
|
|
2554
|
+
BypassGovernanceRetention?: boolean | undefined;
|
|
2555
2555
|
/**
|
|
2556
2556
|
* <p>Contains the Object Lock retention mode to be applied to all objects in the Batch Operations
|
|
2557
2557
|
* job. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-retention-date.html">Using S3 Object Lock retention
|
|
@@ -2575,7 +2575,7 @@ export interface S3SetObjectTaggingOperation {
|
|
|
2575
2575
|
* <p></p>
|
|
2576
2576
|
* @public
|
|
2577
2577
|
*/
|
|
2578
|
-
TagSet?: S3Tag[];
|
|
2578
|
+
TagSet?: S3Tag[] | undefined;
|
|
2579
2579
|
}
|
|
2580
2580
|
/**
|
|
2581
2581
|
* <p>Directs the specified job to invoke <code>ReplicateObject</code> on every object in the
|
|
@@ -2596,13 +2596,13 @@ export interface JobOperation {
|
|
|
2596
2596
|
* manifest.</p>
|
|
2597
2597
|
* @public
|
|
2598
2598
|
*/
|
|
2599
|
-
LambdaInvoke?: LambdaInvokeOperation;
|
|
2599
|
+
LambdaInvoke?: LambdaInvokeOperation | undefined;
|
|
2600
2600
|
/**
|
|
2601
2601
|
* <p>Directs the specified job to run a PUT Copy object call on every object in the
|
|
2602
2602
|
* manifest.</p>
|
|
2603
2603
|
* @public
|
|
2604
2604
|
*/
|
|
2605
|
-
S3PutObjectCopy?: S3CopyObjectOperation;
|
|
2605
|
+
S3PutObjectCopy?: S3CopyObjectOperation | undefined;
|
|
2606
2606
|
/**
|
|
2607
2607
|
* <p>Directs the specified job to run a <code>PutObjectAcl</code> call on every object in the
|
|
2608
2608
|
* manifest.</p>
|
|
@@ -2611,7 +2611,7 @@ export interface JobOperation {
|
|
|
2611
2611
|
* </note>
|
|
2612
2612
|
* @public
|
|
2613
2613
|
*/
|
|
2614
|
-
S3PutObjectAcl?: S3SetObjectAclOperation;
|
|
2614
|
+
S3PutObjectAcl?: S3SetObjectAclOperation | undefined;
|
|
2615
2615
|
/**
|
|
2616
2616
|
* <p>Directs the specified job to run a PUT Object tagging call on every object in the
|
|
2617
2617
|
* manifest.</p>
|
|
@@ -2620,7 +2620,7 @@ export interface JobOperation {
|
|
|
2620
2620
|
* </note>
|
|
2621
2621
|
* @public
|
|
2622
2622
|
*/
|
|
2623
|
-
S3PutObjectTagging?: S3SetObjectTaggingOperation;
|
|
2623
|
+
S3PutObjectTagging?: S3SetObjectTaggingOperation | undefined;
|
|
2624
2624
|
/**
|
|
2625
2625
|
* <p>Directs the specified job to execute a DELETE Object tagging call on every object in the
|
|
2626
2626
|
* manifest.</p>
|
|
@@ -2629,7 +2629,7 @@ export interface JobOperation {
|
|
|
2629
2629
|
* </note>
|
|
2630
2630
|
* @public
|
|
2631
2631
|
*/
|
|
2632
|
-
S3DeleteObjectTagging?: S3DeleteObjectTaggingOperation;
|
|
2632
|
+
S3DeleteObjectTagging?: S3DeleteObjectTaggingOperation | undefined;
|
|
2633
2633
|
/**
|
|
2634
2634
|
* <p>Directs the specified job to initiate restore requests for every archived object in the
|
|
2635
2635
|
* manifest.</p>
|
|
@@ -2638,7 +2638,7 @@ export interface JobOperation {
|
|
|
2638
2638
|
* </note>
|
|
2639
2639
|
* @public
|
|
2640
2640
|
*/
|
|
2641
|
-
S3InitiateRestoreObject?: S3InitiateRestoreObjectOperation;
|
|
2641
|
+
S3InitiateRestoreObject?: S3InitiateRestoreObjectOperation | undefined;
|
|
2642
2642
|
/**
|
|
2643
2643
|
* <p>Contains the configuration for an S3 Object Lock legal hold operation that an
|
|
2644
2644
|
* S3 Batch Operations job passes
|
|
@@ -2653,7 +2653,7 @@ export interface JobOperation {
|
|
|
2653
2653
|
* </note>
|
|
2654
2654
|
* @public
|
|
2655
2655
|
*/
|
|
2656
|
-
S3PutObjectLegalHold?: S3SetObjectLegalHoldOperation;
|
|
2656
|
+
S3PutObjectLegalHold?: S3SetObjectLegalHoldOperation | undefined;
|
|
2657
2657
|
/**
|
|
2658
2658
|
* <p>Contains the configuration parameters for the Object Lock retention action for an
|
|
2659
2659
|
* S3 Batch Operations job. Batch Operations passes every object to the underlying
|
|
@@ -2666,7 +2666,7 @@ export interface JobOperation {
|
|
|
2666
2666
|
* </note>
|
|
2667
2667
|
* @public
|
|
2668
2668
|
*/
|
|
2669
|
-
S3PutObjectRetention?: S3SetObjectRetentionOperation;
|
|
2669
|
+
S3PutObjectRetention?: S3SetObjectRetentionOperation | undefined;
|
|
2670
2670
|
/**
|
|
2671
2671
|
* <p>Directs the specified job to invoke <code>ReplicateObject</code> on every object in the
|
|
2672
2672
|
* job's manifest.</p>
|
|
@@ -2675,7 +2675,7 @@ export interface JobOperation {
|
|
|
2675
2675
|
* </note>
|
|
2676
2676
|
* @public
|
|
2677
2677
|
*/
|
|
2678
|
-
S3ReplicateObject?: S3ReplicateObjectOperation;
|
|
2678
|
+
S3ReplicateObject?: S3ReplicateObjectOperation | undefined;
|
|
2679
2679
|
}
|
|
2680
2680
|
/**
|
|
2681
2681
|
* @public
|
|
@@ -2715,12 +2715,12 @@ export interface JobReport {
|
|
|
2715
2715
|
* </note>
|
|
2716
2716
|
* @public
|
|
2717
2717
|
*/
|
|
2718
|
-
Bucket?: string;
|
|
2718
|
+
Bucket?: string | undefined;
|
|
2719
2719
|
/**
|
|
2720
2720
|
* <p>The format of the specified job-completion report.</p>
|
|
2721
2721
|
* @public
|
|
2722
2722
|
*/
|
|
2723
|
-
Format?: JobReportFormat;
|
|
2723
|
+
Format?: JobReportFormat | undefined;
|
|
2724
2724
|
/**
|
|
2725
2725
|
* <p>Indicates whether the specified job will generate a job-completion report.</p>
|
|
2726
2726
|
* @public
|
|
@@ -2732,13 +2732,13 @@ export interface JobReport {
|
|
|
2732
2732
|
* <code><prefix>/job-<job-id>/report.json</code>.</p>
|
|
2733
2733
|
* @public
|
|
2734
2734
|
*/
|
|
2735
|
-
Prefix?: string;
|
|
2735
|
+
Prefix?: string | undefined;
|
|
2736
2736
|
/**
|
|
2737
2737
|
* <p>Indicates whether the job-completion report will include details of all tasks or only
|
|
2738
2738
|
* failed tasks.</p>
|
|
2739
2739
|
* @public
|
|
2740
2740
|
*/
|
|
2741
|
-
ReportScope?: JobReportScope;
|
|
2741
|
+
ReportScope?: JobReportScope | undefined;
|
|
2742
2742
|
}
|
|
2743
2743
|
/**
|
|
2744
2744
|
* @public
|
|
@@ -2748,13 +2748,13 @@ export interface CreateJobRequest {
|
|
|
2748
2748
|
* <p>The Amazon Web Services account ID that creates the job.</p>
|
|
2749
2749
|
* @public
|
|
2750
2750
|
*/
|
|
2751
|
-
AccountId?: string;
|
|
2751
|
+
AccountId?: string | undefined;
|
|
2752
2752
|
/**
|
|
2753
2753
|
* <p>Indicates whether confirmation is required before Amazon S3 runs the job. Confirmation is
|
|
2754
2754
|
* only required for jobs created through the Amazon S3 console.</p>
|
|
2755
2755
|
* @public
|
|
2756
2756
|
*/
|
|
2757
|
-
ConfirmationRequired?: boolean;
|
|
2757
|
+
ConfirmationRequired?: boolean | undefined;
|
|
2758
2758
|
/**
|
|
2759
2759
|
* <p>The action that you want this job to perform on every object listed in the manifest. For
|
|
2760
2760
|
* more information about the available actions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-actions.html">Operations</a> in the
|
|
@@ -2772,18 +2772,18 @@ export interface CreateJobRequest {
|
|
|
2772
2772
|
* twice. You can use any string up to the maximum length.</p>
|
|
2773
2773
|
* @public
|
|
2774
2774
|
*/
|
|
2775
|
-
ClientRequestToken?: string;
|
|
2775
|
+
ClientRequestToken?: string | undefined;
|
|
2776
2776
|
/**
|
|
2777
2777
|
* <p>Configuration parameters for the manifest.</p>
|
|
2778
2778
|
* @public
|
|
2779
2779
|
*/
|
|
2780
|
-
Manifest?: JobManifest;
|
|
2780
|
+
Manifest?: JobManifest | undefined;
|
|
2781
2781
|
/**
|
|
2782
2782
|
* <p>A description for this job. You can use any string within the permitted length.
|
|
2783
2783
|
* Descriptions don't need to be unique and can be used for multiple jobs.</p>
|
|
2784
2784
|
* @public
|
|
2785
2785
|
*/
|
|
2786
|
-
Description?: string;
|
|
2786
|
+
Description?: string | undefined;
|
|
2787
2787
|
/**
|
|
2788
2788
|
* <p>The numerical priority for this job. Higher numbers indicate higher priority.</p>
|
|
2789
2789
|
* @public
|
|
@@ -2800,13 +2800,13 @@ export interface CreateJobRequest {
|
|
|
2800
2800
|
* </p>
|
|
2801
2801
|
* @public
|
|
2802
2802
|
*/
|
|
2803
|
-
Tags?: S3Tag[];
|
|
2803
|
+
Tags?: S3Tag[] | undefined;
|
|
2804
2804
|
/**
|
|
2805
2805
|
* <p>The attribute container for the ManifestGenerator details. Jobs must be created with
|
|
2806
2806
|
* either a manifest file or a ManifestGenerator, but not both.</p>
|
|
2807
2807
|
* @public
|
|
2808
2808
|
*/
|
|
2809
|
-
ManifestGenerator?: JobManifestGenerator;
|
|
2809
|
+
ManifestGenerator?: JobManifestGenerator | undefined;
|
|
2810
2810
|
}
|
|
2811
2811
|
/**
|
|
2812
2812
|
* @public
|
|
@@ -2817,7 +2817,7 @@ export interface CreateJobResult {
|
|
|
2817
2817
|
* successful <code>Create Job</code> request.</p>
|
|
2818
2818
|
* @public
|
|
2819
2819
|
*/
|
|
2820
|
-
JobId?: string;
|
|
2820
|
+
JobId?: string | undefined;
|
|
2821
2821
|
}
|
|
2822
2822
|
/**
|
|
2823
2823
|
* <p></p>
|
|
@@ -2826,7 +2826,7 @@ export interface CreateJobResult {
|
|
|
2826
2826
|
export declare class IdempotencyException extends __BaseException {
|
|
2827
2827
|
readonly name: "IdempotencyException";
|
|
2828
2828
|
readonly $fault: "client";
|
|
2829
|
-
Message?: string;
|
|
2829
|
+
Message?: string | undefined;
|
|
2830
2830
|
/**
|
|
2831
2831
|
* @internal
|
|
2832
2832
|
*/
|
|
@@ -2839,7 +2839,7 @@ export declare class IdempotencyException extends __BaseException {
|
|
|
2839
2839
|
export declare class InternalServiceException extends __BaseException {
|
|
2840
2840
|
readonly name: "InternalServiceException";
|
|
2841
2841
|
readonly $fault: "server";
|
|
2842
|
-
Message?: string;
|
|
2842
|
+
Message?: string | undefined;
|
|
2843
2843
|
/**
|
|
2844
2844
|
* @internal
|
|
2845
2845
|
*/
|
|
@@ -2852,7 +2852,7 @@ export declare class InternalServiceException extends __BaseException {
|
|
|
2852
2852
|
export declare class TooManyRequestsException extends __BaseException {
|
|
2853
2853
|
readonly name: "TooManyRequestsException";
|
|
2854
2854
|
readonly $fault: "client";
|
|
2855
|
-
Message?: string;
|
|
2855
|
+
Message?: string | undefined;
|
|
2856
2856
|
/**
|
|
2857
2857
|
* @internal
|
|
2858
2858
|
*/
|
|
@@ -2867,13 +2867,13 @@ export interface CreateMultiRegionAccessPointRequest {
|
|
|
2867
2867
|
* the underlying buckets.</p>
|
|
2868
2868
|
* @public
|
|
2869
2869
|
*/
|
|
2870
|
-
AccountId?: string;
|
|
2870
|
+
AccountId?: string | undefined;
|
|
2871
2871
|
/**
|
|
2872
2872
|
* <p>An idempotency token used to identify the request and guarantee that requests are
|
|
2873
2873
|
* unique.</p>
|
|
2874
2874
|
* @public
|
|
2875
2875
|
*/
|
|
2876
|
-
ClientToken?: string;
|
|
2876
|
+
ClientToken?: string | undefined;
|
|
2877
2877
|
/**
|
|
2878
2878
|
* <p>A container element containing details about the Multi-Region Access Point.</p>
|
|
2879
2879
|
* @public
|
|
@@ -2889,7 +2889,7 @@ export interface CreateMultiRegionAccessPointResult {
|
|
|
2889
2889
|
* requests.</p>
|
|
2890
2890
|
* @public
|
|
2891
2891
|
*/
|
|
2892
|
-
RequestTokenARN?: string;
|
|
2892
|
+
RequestTokenARN?: string | undefined;
|
|
2893
2893
|
}
|
|
2894
2894
|
/**
|
|
2895
2895
|
* <p>
|
|
@@ -2904,14 +2904,14 @@ export interface MatchObjectAge {
|
|
|
2904
2904
|
* </p>
|
|
2905
2905
|
* @public
|
|
2906
2906
|
*/
|
|
2907
|
-
DaysGreaterThan?: number;
|
|
2907
|
+
DaysGreaterThan?: number | undefined;
|
|
2908
2908
|
/**
|
|
2909
2909
|
* <p>
|
|
2910
2910
|
* 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.
|
|
2911
2911
|
* </p>
|
|
2912
2912
|
* @public
|
|
2913
2913
|
*/
|
|
2914
|
-
DaysLessThan?: number;
|
|
2914
|
+
DaysLessThan?: number | undefined;
|
|
2915
2915
|
}
|
|
2916
2916
|
/**
|
|
2917
2917
|
* <p>
|
|
@@ -2926,14 +2926,14 @@ export interface MatchObjectSize {
|
|
|
2926
2926
|
* </p>
|
|
2927
2927
|
* @public
|
|
2928
2928
|
*/
|
|
2929
|
-
BytesGreaterThan?: number;
|
|
2929
|
+
BytesGreaterThan?: number | undefined;
|
|
2930
2930
|
/**
|
|
2931
2931
|
* <p>
|
|
2932
2932
|
* 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.
|
|
2933
2933
|
* </p>
|
|
2934
2934
|
* @public
|
|
2935
2935
|
*/
|
|
2936
|
-
BytesLessThan?: number;
|
|
2936
|
+
BytesLessThan?: number | undefined;
|
|
2937
2937
|
}
|
|
2938
2938
|
/**
|
|
2939
2939
|
* <p> A logical operator that allows multiple filter conditions to be joined for more complex
|
|
@@ -2946,31 +2946,31 @@ export interface StorageLensGroupAndOperator {
|
|
|
2946
2946
|
* are allowed. </p>
|
|
2947
2947
|
* @public
|
|
2948
2948
|
*/
|
|
2949
|
-
MatchAnyPrefix?: string[];
|
|
2949
|
+
MatchAnyPrefix?: string[] | undefined;
|
|
2950
2950
|
/**
|
|
2951
2951
|
* <p> Contains a list of suffixes. At least one suffix must be specified. Up to 10 suffixes
|
|
2952
2952
|
* are allowed. </p>
|
|
2953
2953
|
* @public
|
|
2954
2954
|
*/
|
|
2955
|
-
MatchAnySuffix?: string[];
|
|
2955
|
+
MatchAnySuffix?: string[] | undefined;
|
|
2956
2956
|
/**
|
|
2957
2957
|
* <p> Contains the list of object tags. At least one object tag must be specified. Up to 10
|
|
2958
2958
|
* object tags are allowed. </p>
|
|
2959
2959
|
* @public
|
|
2960
2960
|
*/
|
|
2961
|
-
MatchAnyTag?: S3Tag[];
|
|
2961
|
+
MatchAnyTag?: S3Tag[] | undefined;
|
|
2962
2962
|
/**
|
|
2963
2963
|
* <p> Contains <code>DaysGreaterThan</code> and <code>DaysLessThan</code> to define the
|
|
2964
2964
|
* object age range (minimum and maximum number of days). </p>
|
|
2965
2965
|
* @public
|
|
2966
2966
|
*/
|
|
2967
|
-
MatchObjectAge?: MatchObjectAge;
|
|
2967
|
+
MatchObjectAge?: MatchObjectAge | undefined;
|
|
2968
2968
|
/**
|
|
2969
2969
|
* <p> Contains <code>BytesGreaterThan</code> and <code>BytesLessThan</code> to define the
|
|
2970
2970
|
* object size range (minimum and maximum number of Bytes). </p>
|
|
2971
2971
|
* @public
|
|
2972
2972
|
*/
|
|
2973
|
-
MatchObjectSize?: MatchObjectSize;
|
|
2973
|
+
MatchObjectSize?: MatchObjectSize | undefined;
|
|
2974
2974
|
}
|
|
2975
2975
|
/**
|
|
2976
2976
|
* <p>A container element for specifying <code>Or</code> rule conditions. The rule conditions
|
|
@@ -2984,35 +2984,35 @@ export interface StorageLensGroupOrOperator {
|
|
|
2984
2984
|
* <p> Filters objects that match any of the specified prefixes. </p>
|
|
2985
2985
|
* @public
|
|
2986
2986
|
*/
|
|
2987
|
-
MatchAnyPrefix?: string[];
|
|
2987
|
+
MatchAnyPrefix?: string[] | undefined;
|
|
2988
2988
|
/**
|
|
2989
2989
|
* <p>
|
|
2990
2990
|
* Filters objects that match any of the specified suffixes.
|
|
2991
2991
|
* </p>
|
|
2992
2992
|
* @public
|
|
2993
2993
|
*/
|
|
2994
|
-
MatchAnySuffix?: string[];
|
|
2994
|
+
MatchAnySuffix?: string[] | undefined;
|
|
2995
2995
|
/**
|
|
2996
2996
|
* <p>
|
|
2997
2997
|
* Filters objects that match any of the specified S3 object tags.
|
|
2998
2998
|
* </p>
|
|
2999
2999
|
* @public
|
|
3000
3000
|
*/
|
|
3001
|
-
MatchAnyTag?: S3Tag[];
|
|
3001
|
+
MatchAnyTag?: S3Tag[] | undefined;
|
|
3002
3002
|
/**
|
|
3003
3003
|
* <p>
|
|
3004
3004
|
* Filters objects that match the specified object age range.
|
|
3005
3005
|
* </p>
|
|
3006
3006
|
* @public
|
|
3007
3007
|
*/
|
|
3008
|
-
MatchObjectAge?: MatchObjectAge;
|
|
3008
|
+
MatchObjectAge?: MatchObjectAge | undefined;
|
|
3009
3009
|
/**
|
|
3010
3010
|
* <p>
|
|
3011
3011
|
* Filters objects that match the specified object size range.
|
|
3012
3012
|
* </p>
|
|
3013
3013
|
* @public
|
|
3014
3014
|
*/
|
|
3015
|
-
MatchObjectSize?: MatchObjectSize;
|
|
3015
|
+
MatchObjectSize?: MatchObjectSize | undefined;
|
|
3016
3016
|
}
|
|
3017
3017
|
/**
|
|
3018
3018
|
* <p>The filter element sets the criteria for the Storage Lens group data that is displayed.
|
|
@@ -3026,31 +3026,31 @@ export interface StorageLensGroupFilter {
|
|
|
3026
3026
|
* are allowed. </p>
|
|
3027
3027
|
* @public
|
|
3028
3028
|
*/
|
|
3029
|
-
MatchAnyPrefix?: string[];
|
|
3029
|
+
MatchAnyPrefix?: string[] | undefined;
|
|
3030
3030
|
/**
|
|
3031
3031
|
* <p> Contains a list of suffixes. At least one suffix must be specified. Up to 10 suffixes
|
|
3032
3032
|
* are allowed. </p>
|
|
3033
3033
|
* @public
|
|
3034
3034
|
*/
|
|
3035
|
-
MatchAnySuffix?: string[];
|
|
3035
|
+
MatchAnySuffix?: string[] | undefined;
|
|
3036
3036
|
/**
|
|
3037
3037
|
* <p> Contains the list of S3 object tags. At least one object tag must be specified. Up to
|
|
3038
3038
|
* 10 object tags are allowed. </p>
|
|
3039
3039
|
* @public
|
|
3040
3040
|
*/
|
|
3041
|
-
MatchAnyTag?: S3Tag[];
|
|
3041
|
+
MatchAnyTag?: S3Tag[] | undefined;
|
|
3042
3042
|
/**
|
|
3043
3043
|
* <p> Contains <code>DaysGreaterThan</code> and <code>DaysLessThan</code> to define the
|
|
3044
3044
|
* object age range (minimum and maximum number of days). </p>
|
|
3045
3045
|
* @public
|
|
3046
3046
|
*/
|
|
3047
|
-
MatchObjectAge?: MatchObjectAge;
|
|
3047
|
+
MatchObjectAge?: MatchObjectAge | undefined;
|
|
3048
3048
|
/**
|
|
3049
3049
|
* <p> Contains <code>BytesGreaterThan</code> and <code>BytesLessThan</code> to define the
|
|
3050
3050
|
* object size range (minimum and maximum number of Bytes). </p>
|
|
3051
3051
|
* @public
|
|
3052
3052
|
*/
|
|
3053
|
-
MatchObjectSize?: MatchObjectSize;
|
|
3053
|
+
MatchObjectSize?: MatchObjectSize | undefined;
|
|
3054
3054
|
/**
|
|
3055
3055
|
* <p>A logical operator that allows multiple filter conditions to be joined for more complex
|
|
3056
3056
|
* comparisons of Storage Lens group data. Objects must match all of the listed filter
|
|
@@ -3058,14 +3058,14 @@ export interface StorageLensGroupFilter {
|
|
|
3058
3058
|
* filter condition is allowed.</p>
|
|
3059
3059
|
* @public
|
|
3060
3060
|
*/
|
|
3061
|
-
And?: StorageLensGroupAndOperator;
|
|
3061
|
+
And?: StorageLensGroupAndOperator | undefined;
|
|
3062
3062
|
/**
|
|
3063
3063
|
* <p>A single logical operator that allows multiple filter conditions to be joined. Objects
|
|
3064
3064
|
* can match any of the listed filter conditions, which are joined by the <code>Or</code>
|
|
3065
3065
|
* logical operator. Only one of each filter condition is allowed. </p>
|
|
3066
3066
|
* @public
|
|
3067
3067
|
*/
|
|
3068
|
-
Or?: StorageLensGroupOrOperator;
|
|
3068
|
+
Or?: StorageLensGroupOrOperator | undefined;
|
|
3069
3069
|
}
|
|
3070
3070
|
/**
|
|
3071
3071
|
* <p>A custom grouping of objects that include filters for prefixes, suffixes, object tags,
|
|
@@ -3091,7 +3091,7 @@ export interface StorageLensGroup {
|
|
|
3091
3091
|
* read-only. </p>
|
|
3092
3092
|
* @public
|
|
3093
3093
|
*/
|
|
3094
|
-
StorageLensGroupArn?: string;
|
|
3094
|
+
StorageLensGroupArn?: string | undefined;
|
|
3095
3095
|
}
|
|
3096
3096
|
/**
|
|
3097
3097
|
* @public
|
|
@@ -3103,7 +3103,7 @@ export interface CreateStorageLensGroupRequest {
|
|
|
3103
3103
|
* </p>
|
|
3104
3104
|
* @public
|
|
3105
3105
|
*/
|
|
3106
|
-
AccountId?: string;
|
|
3106
|
+
AccountId?: string | undefined;
|
|
3107
3107
|
/**
|
|
3108
3108
|
* <p>
|
|
3109
3109
|
* The Storage Lens group configuration.
|
|
@@ -3117,7 +3117,7 @@ export interface CreateStorageLensGroupRequest {
|
|
|
3117
3117
|
* </p>
|
|
3118
3118
|
* @public
|
|
3119
3119
|
*/
|
|
3120
|
-
Tags?: Tag[];
|
|
3120
|
+
Tags?: Tag[] | undefined;
|
|
3121
3121
|
}
|
|
3122
3122
|
/**
|
|
3123
3123
|
* @public
|
|
@@ -3127,7 +3127,7 @@ export interface DeleteAccessGrantRequest {
|
|
|
3127
3127
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3128
3128
|
* @public
|
|
3129
3129
|
*/
|
|
3130
|
-
AccountId?: string;
|
|
3130
|
+
AccountId?: string | undefined;
|
|
3131
3131
|
/**
|
|
3132
3132
|
* <p>The ID of the access grant. S3 Access Grants auto-generates this ID when you create the access grant.</p>
|
|
3133
3133
|
* @public
|
|
@@ -3142,7 +3142,7 @@ export interface DeleteAccessGrantsInstanceRequest {
|
|
|
3142
3142
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3143
3143
|
* @public
|
|
3144
3144
|
*/
|
|
3145
|
-
AccountId?: string;
|
|
3145
|
+
AccountId?: string | undefined;
|
|
3146
3146
|
}
|
|
3147
3147
|
/**
|
|
3148
3148
|
* @public
|
|
@@ -3152,7 +3152,7 @@ export interface DeleteAccessGrantsInstanceResourcePolicyRequest {
|
|
|
3152
3152
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3153
3153
|
* @public
|
|
3154
3154
|
*/
|
|
3155
|
-
AccountId?: string;
|
|
3155
|
+
AccountId?: string | undefined;
|
|
3156
3156
|
}
|
|
3157
3157
|
/**
|
|
3158
3158
|
* @public
|
|
@@ -3162,7 +3162,7 @@ export interface DeleteAccessGrantsLocationRequest {
|
|
|
3162
3162
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3163
3163
|
* @public
|
|
3164
3164
|
*/
|
|
3165
|
-
AccountId?: string;
|
|
3165
|
+
AccountId?: string | undefined;
|
|
3166
3166
|
/**
|
|
3167
3167
|
* <p>The ID of the registered location that you are deregistering from your S3 Access Grants instance. S3 Access Grants assigned this ID when you registered the location. S3 Access Grants assigns the ID <code>default</code> to the default location <code>s3://</code> and assigns an auto-generated ID to other locations that you register. </p>
|
|
3168
3168
|
* @public
|
|
@@ -3177,7 +3177,7 @@ export interface DeleteAccessPointRequest {
|
|
|
3177
3177
|
* <p>The Amazon Web Services account ID for the account that owns the specified access point.</p>
|
|
3178
3178
|
* @public
|
|
3179
3179
|
*/
|
|
3180
|
-
AccountId?: string;
|
|
3180
|
+
AccountId?: string | undefined;
|
|
3181
3181
|
/**
|
|
3182
3182
|
* <p>The name of the access point you want to delete.</p>
|
|
3183
3183
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -3194,7 +3194,7 @@ export interface DeleteAccessPointForObjectLambdaRequest {
|
|
|
3194
3194
|
* <p>The account ID for the account that owns the specified Object Lambda Access Point.</p>
|
|
3195
3195
|
* @public
|
|
3196
3196
|
*/
|
|
3197
|
-
AccountId?: string;
|
|
3197
|
+
AccountId?: string | undefined;
|
|
3198
3198
|
/**
|
|
3199
3199
|
* <p>The name of the access point you want to delete.</p>
|
|
3200
3200
|
* @public
|
|
@@ -3209,7 +3209,7 @@ export interface DeleteAccessPointPolicyRequest {
|
|
|
3209
3209
|
* <p>The account ID for the account that owns the specified access point.</p>
|
|
3210
3210
|
* @public
|
|
3211
3211
|
*/
|
|
3212
|
-
AccountId?: string;
|
|
3212
|
+
AccountId?: string | undefined;
|
|
3213
3213
|
/**
|
|
3214
3214
|
* <p>The name of the access point whose policy you want to delete.</p>
|
|
3215
3215
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -3226,7 +3226,7 @@ export interface DeleteAccessPointPolicyForObjectLambdaRequest {
|
|
|
3226
3226
|
* <p>The account ID for the account that owns the specified Object Lambda Access Point.</p>
|
|
3227
3227
|
* @public
|
|
3228
3228
|
*/
|
|
3229
|
-
AccountId?: string;
|
|
3229
|
+
AccountId?: string | undefined;
|
|
3230
3230
|
/**
|
|
3231
3231
|
* <p>The name of the Object Lambda Access Point you want to delete the policy for.</p>
|
|
3232
3232
|
* @public
|
|
@@ -3241,7 +3241,7 @@ export interface DeleteBucketRequest {
|
|
|
3241
3241
|
* <p>The account ID that owns the Outposts bucket.</p>
|
|
3242
3242
|
* @public
|
|
3243
3243
|
*/
|
|
3244
|
-
AccountId?: string;
|
|
3244
|
+
AccountId?: string | undefined;
|
|
3245
3245
|
/**
|
|
3246
3246
|
* <p>Specifies the bucket being deleted.</p>
|
|
3247
3247
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -3258,7 +3258,7 @@ export interface DeleteBucketLifecycleConfigurationRequest {
|
|
|
3258
3258
|
* <p>The account ID of the lifecycle configuration to delete.</p>
|
|
3259
3259
|
* @public
|
|
3260
3260
|
*/
|
|
3261
|
-
AccountId?: string;
|
|
3261
|
+
AccountId?: string | undefined;
|
|
3262
3262
|
/**
|
|
3263
3263
|
* <p>Specifies the bucket.</p>
|
|
3264
3264
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -3275,7 +3275,7 @@ export interface DeleteBucketPolicyRequest {
|
|
|
3275
3275
|
* <p>The account ID of the Outposts bucket.</p>
|
|
3276
3276
|
* @public
|
|
3277
3277
|
*/
|
|
3278
|
-
AccountId?: string;
|
|
3278
|
+
AccountId?: string | undefined;
|
|
3279
3279
|
/**
|
|
3280
3280
|
* <p>Specifies the bucket.</p>
|
|
3281
3281
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -3293,7 +3293,7 @@ export interface DeleteBucketReplicationRequest {
|
|
|
3293
3293
|
* for.</p>
|
|
3294
3294
|
* @public
|
|
3295
3295
|
*/
|
|
3296
|
-
AccountId?: string;
|
|
3296
|
+
AccountId?: string | undefined;
|
|
3297
3297
|
/**
|
|
3298
3298
|
* <p>Specifies the S3 on Outposts bucket to delete the replication configuration for.</p>
|
|
3299
3299
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -3310,7 +3310,7 @@ export interface DeleteBucketTaggingRequest {
|
|
|
3310
3310
|
* <p>The Amazon Web Services account ID of the Outposts bucket tag set to be removed.</p>
|
|
3311
3311
|
* @public
|
|
3312
3312
|
*/
|
|
3313
|
-
AccountId?: string;
|
|
3313
|
+
AccountId?: string | undefined;
|
|
3314
3314
|
/**
|
|
3315
3315
|
* <p>The bucket ARN that has the tag set to be removed.</p>
|
|
3316
3316
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -3327,7 +3327,7 @@ export interface DeleteJobTaggingRequest {
|
|
|
3327
3327
|
* <p>The Amazon Web Services account ID associated with the S3 Batch Operations job.</p>
|
|
3328
3328
|
* @public
|
|
3329
3329
|
*/
|
|
3330
|
-
AccountId?: string;
|
|
3330
|
+
AccountId?: string | undefined;
|
|
3331
3331
|
/**
|
|
3332
3332
|
* <p>The ID for the S3 Batch Operations job whose tags you want to delete.</p>
|
|
3333
3333
|
* @public
|
|
@@ -3346,7 +3346,7 @@ export interface DeleteJobTaggingResult {
|
|
|
3346
3346
|
export declare class NotFoundException extends __BaseException {
|
|
3347
3347
|
readonly name: "NotFoundException";
|
|
3348
3348
|
readonly $fault: "client";
|
|
3349
|
-
Message?: string;
|
|
3349
|
+
Message?: string | undefined;
|
|
3350
3350
|
/**
|
|
3351
3351
|
* @internal
|
|
3352
3352
|
*/
|
|
@@ -3360,13 +3360,13 @@ export interface DeleteMultiRegionAccessPointRequest {
|
|
|
3360
3360
|
* <p>The Amazon Web Services account ID for the owner of the Multi-Region Access Point.</p>
|
|
3361
3361
|
* @public
|
|
3362
3362
|
*/
|
|
3363
|
-
AccountId?: string;
|
|
3363
|
+
AccountId?: string | undefined;
|
|
3364
3364
|
/**
|
|
3365
3365
|
* <p>An idempotency token used to identify the request and guarantee that requests are
|
|
3366
3366
|
* unique.</p>
|
|
3367
3367
|
* @public
|
|
3368
3368
|
*/
|
|
3369
|
-
ClientToken?: string;
|
|
3369
|
+
ClientToken?: string | undefined;
|
|
3370
3370
|
/**
|
|
3371
3371
|
* <p>A container element containing details about the Multi-Region Access Point.</p>
|
|
3372
3372
|
* @public
|
|
@@ -3382,7 +3382,7 @@ export interface DeleteMultiRegionAccessPointResult {
|
|
|
3382
3382
|
* requests.</p>
|
|
3383
3383
|
* @public
|
|
3384
3384
|
*/
|
|
3385
|
-
RequestTokenARN?: string;
|
|
3385
|
+
RequestTokenARN?: string | undefined;
|
|
3386
3386
|
}
|
|
3387
3387
|
/**
|
|
3388
3388
|
* @public
|
|
@@ -3393,7 +3393,7 @@ export interface DeletePublicAccessBlockRequest {
|
|
|
3393
3393
|
* you want to remove.</p>
|
|
3394
3394
|
* @public
|
|
3395
3395
|
*/
|
|
3396
|
-
AccountId?: string;
|
|
3396
|
+
AccountId?: string | undefined;
|
|
3397
3397
|
}
|
|
3398
3398
|
/**
|
|
3399
3399
|
* @public
|
|
@@ -3408,7 +3408,7 @@ export interface DeleteStorageLensConfigurationRequest {
|
|
|
3408
3408
|
* <p>The account ID of the requester.</p>
|
|
3409
3409
|
* @public
|
|
3410
3410
|
*/
|
|
3411
|
-
AccountId?: string;
|
|
3411
|
+
AccountId?: string | undefined;
|
|
3412
3412
|
}
|
|
3413
3413
|
/**
|
|
3414
3414
|
* @public
|
|
@@ -3423,7 +3423,7 @@ export interface DeleteStorageLensConfigurationTaggingRequest {
|
|
|
3423
3423
|
* <p>The account ID of the requester.</p>
|
|
3424
3424
|
* @public
|
|
3425
3425
|
*/
|
|
3426
|
-
AccountId?: string;
|
|
3426
|
+
AccountId?: string | undefined;
|
|
3427
3427
|
}
|
|
3428
3428
|
/**
|
|
3429
3429
|
* @public
|
|
@@ -3447,7 +3447,7 @@ export interface DeleteStorageLensGroupRequest {
|
|
|
3447
3447
|
* </p>
|
|
3448
3448
|
* @public
|
|
3449
3449
|
*/
|
|
3450
|
-
AccountId?: string;
|
|
3450
|
+
AccountId?: string | undefined;
|
|
3451
3451
|
}
|
|
3452
3452
|
/**
|
|
3453
3453
|
* @public
|
|
@@ -3457,7 +3457,7 @@ export interface DescribeJobRequest {
|
|
|
3457
3457
|
* <p>The Amazon Web Services account ID associated with the S3 Batch Operations job.</p>
|
|
3458
3458
|
* @public
|
|
3459
3459
|
*/
|
|
3460
|
-
AccountId?: string;
|
|
3460
|
+
AccountId?: string | undefined;
|
|
3461
3461
|
/**
|
|
3462
3462
|
* <p>The ID for the job whose information you want to retrieve.</p>
|
|
3463
3463
|
* @public
|
|
@@ -3473,12 +3473,12 @@ export interface JobFailure {
|
|
|
3473
3473
|
* <p>The failure code, if any, for the specified job.</p>
|
|
3474
3474
|
* @public
|
|
3475
3475
|
*/
|
|
3476
|
-
FailureCode?: string;
|
|
3476
|
+
FailureCode?: string | undefined;
|
|
3477
3477
|
/**
|
|
3478
3478
|
* <p>The failure reason, if any, for the specified job.</p>
|
|
3479
3479
|
* @public
|
|
3480
3480
|
*/
|
|
3481
|
-
FailureReason?: string;
|
|
3481
|
+
FailureReason?: string | undefined;
|
|
3482
3482
|
}
|
|
3483
3483
|
/**
|
|
3484
3484
|
* <p>Describes the specified job's generated manifest. Batch Operations jobs created with a
|
|
@@ -3491,14 +3491,14 @@ export interface S3GeneratedManifestDescriptor {
|
|
|
3491
3491
|
* <p>The format of the generated manifest.</p>
|
|
3492
3492
|
* @public
|
|
3493
3493
|
*/
|
|
3494
|
-
Format?: GeneratedManifestFormat;
|
|
3494
|
+
Format?: GeneratedManifestFormat | undefined;
|
|
3495
3495
|
/**
|
|
3496
3496
|
* <p>Contains the information required to locate a manifest object. Manifests can't be
|
|
3497
3497
|
* imported from directory buckets. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html">Directory
|
|
3498
3498
|
* buckets</a>.</p>
|
|
3499
3499
|
* @public
|
|
3500
3500
|
*/
|
|
3501
|
-
Location?: JobManifestLocation;
|
|
3501
|
+
Location?: JobManifestLocation | undefined;
|
|
3502
3502
|
}
|
|
3503
3503
|
/**
|
|
3504
3504
|
* <p>Provides timing details for the job.</p>
|
|
@@ -3509,7 +3509,7 @@ export interface JobTimers {
|
|
|
3509
3509
|
* <p>Indicates the elapsed time in seconds the job has been in the Active job state.</p>
|
|
3510
3510
|
* @public
|
|
3511
3511
|
*/
|
|
3512
|
-
ElapsedTimeInActiveSeconds?: number;
|
|
3512
|
+
ElapsedTimeInActiveSeconds?: number | undefined;
|
|
3513
3513
|
}
|
|
3514
3514
|
/**
|
|
3515
3515
|
* <p>Describes the total number of tasks that the specified job has started, the number of
|
|
@@ -3521,22 +3521,22 @@ export interface JobProgressSummary {
|
|
|
3521
3521
|
* <p></p>
|
|
3522
3522
|
* @public
|
|
3523
3523
|
*/
|
|
3524
|
-
TotalNumberOfTasks?: number;
|
|
3524
|
+
TotalNumberOfTasks?: number | undefined;
|
|
3525
3525
|
/**
|
|
3526
3526
|
* <p></p>
|
|
3527
3527
|
* @public
|
|
3528
3528
|
*/
|
|
3529
|
-
NumberOfTasksSucceeded?: number;
|
|
3529
|
+
NumberOfTasksSucceeded?: number | undefined;
|
|
3530
3530
|
/**
|
|
3531
3531
|
* <p></p>
|
|
3532
3532
|
* @public
|
|
3533
3533
|
*/
|
|
3534
|
-
NumberOfTasksFailed?: number;
|
|
3534
|
+
NumberOfTasksFailed?: number | undefined;
|
|
3535
3535
|
/**
|
|
3536
3536
|
* <p>The JobTimers attribute of a job's progress summary.</p>
|
|
3537
3537
|
* @public
|
|
3538
3538
|
*/
|
|
3539
|
-
Timers?: JobTimers;
|
|
3539
|
+
Timers?: JobTimers | undefined;
|
|
3540
3540
|
}
|
|
3541
3541
|
/**
|
|
3542
3542
|
* @public
|
|
@@ -3571,90 +3571,90 @@ export interface JobDescriptor {
|
|
|
3571
3571
|
* <p>The ID for the specified job.</p>
|
|
3572
3572
|
* @public
|
|
3573
3573
|
*/
|
|
3574
|
-
JobId?: string;
|
|
3574
|
+
JobId?: string | undefined;
|
|
3575
3575
|
/**
|
|
3576
3576
|
* <p>Indicates whether confirmation is required before Amazon S3 begins running the specified job.
|
|
3577
3577
|
* Confirmation is required only for jobs created through the Amazon S3 console.</p>
|
|
3578
3578
|
* @public
|
|
3579
3579
|
*/
|
|
3580
|
-
ConfirmationRequired?: boolean;
|
|
3580
|
+
ConfirmationRequired?: boolean | undefined;
|
|
3581
3581
|
/**
|
|
3582
3582
|
* <p>The description for this job, if one was provided in this job's <code>Create Job</code>
|
|
3583
3583
|
* request.</p>
|
|
3584
3584
|
* @public
|
|
3585
3585
|
*/
|
|
3586
|
-
Description?: string;
|
|
3586
|
+
Description?: string | undefined;
|
|
3587
3587
|
/**
|
|
3588
3588
|
* <p>The Amazon Resource Name (ARN) for this job.</p>
|
|
3589
3589
|
* @public
|
|
3590
3590
|
*/
|
|
3591
|
-
JobArn?: string;
|
|
3591
|
+
JobArn?: string | undefined;
|
|
3592
3592
|
/**
|
|
3593
3593
|
* <p>The current status of the specified job.</p>
|
|
3594
3594
|
* @public
|
|
3595
3595
|
*/
|
|
3596
|
-
Status?: JobStatus;
|
|
3596
|
+
Status?: JobStatus | undefined;
|
|
3597
3597
|
/**
|
|
3598
3598
|
* <p>The configuration information for the specified job's manifest object.</p>
|
|
3599
3599
|
* @public
|
|
3600
3600
|
*/
|
|
3601
|
-
Manifest?: JobManifest;
|
|
3601
|
+
Manifest?: JobManifest | undefined;
|
|
3602
3602
|
/**
|
|
3603
3603
|
* <p>The operation that the specified job is configured to run on the objects listed in the
|
|
3604
3604
|
* manifest.</p>
|
|
3605
3605
|
* @public
|
|
3606
3606
|
*/
|
|
3607
|
-
Operation?: JobOperation;
|
|
3607
|
+
Operation?: JobOperation | undefined;
|
|
3608
3608
|
/**
|
|
3609
3609
|
* <p>The priority of the specified job.</p>
|
|
3610
3610
|
* @public
|
|
3611
3611
|
*/
|
|
3612
|
-
Priority?: number;
|
|
3612
|
+
Priority?: number | undefined;
|
|
3613
3613
|
/**
|
|
3614
3614
|
* <p>Describes the total number of tasks that the specified job has run, the number of tasks
|
|
3615
3615
|
* that succeeded, and the number of tasks that failed.</p>
|
|
3616
3616
|
* @public
|
|
3617
3617
|
*/
|
|
3618
|
-
ProgressSummary?: JobProgressSummary;
|
|
3618
|
+
ProgressSummary?: JobProgressSummary | undefined;
|
|
3619
3619
|
/**
|
|
3620
3620
|
* <p>The reason for updating the job.</p>
|
|
3621
3621
|
* @public
|
|
3622
3622
|
*/
|
|
3623
|
-
StatusUpdateReason?: string;
|
|
3623
|
+
StatusUpdateReason?: string | undefined;
|
|
3624
3624
|
/**
|
|
3625
3625
|
* <p>If the specified job failed, this field contains information describing the
|
|
3626
3626
|
* failure.</p>
|
|
3627
3627
|
* @public
|
|
3628
3628
|
*/
|
|
3629
|
-
FailureReasons?: JobFailure[];
|
|
3629
|
+
FailureReasons?: JobFailure[] | undefined;
|
|
3630
3630
|
/**
|
|
3631
3631
|
* <p>Contains the configuration information for the job-completion report if you requested
|
|
3632
3632
|
* one in the <code>Create Job</code> request.</p>
|
|
3633
3633
|
* @public
|
|
3634
3634
|
*/
|
|
3635
|
-
Report?: JobReport;
|
|
3635
|
+
Report?: JobReport | undefined;
|
|
3636
3636
|
/**
|
|
3637
3637
|
* <p>A timestamp indicating when this job was created.</p>
|
|
3638
3638
|
* @public
|
|
3639
3639
|
*/
|
|
3640
|
-
CreationTime?: Date;
|
|
3640
|
+
CreationTime?: Date | undefined;
|
|
3641
3641
|
/**
|
|
3642
3642
|
* <p>A timestamp indicating when this job terminated. A job's termination date is the date
|
|
3643
3643
|
* and time when it succeeded, failed, or was canceled.</p>
|
|
3644
3644
|
* @public
|
|
3645
3645
|
*/
|
|
3646
|
-
TerminationDate?: Date;
|
|
3646
|
+
TerminationDate?: Date | undefined;
|
|
3647
3647
|
/**
|
|
3648
3648
|
* <p>The Amazon Resource Name (ARN) for the Identity and Access Management (IAM) role assigned to run the tasks
|
|
3649
3649
|
* for this job.</p>
|
|
3650
3650
|
* @public
|
|
3651
3651
|
*/
|
|
3652
|
-
RoleArn?: string;
|
|
3652
|
+
RoleArn?: string | undefined;
|
|
3653
3653
|
/**
|
|
3654
3654
|
* <p>The timestamp when this job was suspended, if it has been suspended.</p>
|
|
3655
3655
|
* @public
|
|
3656
3656
|
*/
|
|
3657
|
-
SuspendedDate?: Date;
|
|
3657
|
+
SuspendedDate?: Date | undefined;
|
|
3658
3658
|
/**
|
|
3659
3659
|
* <p>The reason why the specified job was suspended. A job is only suspended if you create it
|
|
3660
3660
|
* through the Amazon S3 console. When you create the job, it enters the <code>Suspended</code>
|
|
@@ -3662,18 +3662,18 @@ export interface JobDescriptor {
|
|
|
3662
3662
|
* exits the <code>Suspended</code> state.</p>
|
|
3663
3663
|
* @public
|
|
3664
3664
|
*/
|
|
3665
|
-
SuspendedCause?: string;
|
|
3665
|
+
SuspendedCause?: string | undefined;
|
|
3666
3666
|
/**
|
|
3667
3667
|
* <p>The manifest generator that was used to generate a job manifest for this job.</p>
|
|
3668
3668
|
* @public
|
|
3669
3669
|
*/
|
|
3670
|
-
ManifestGenerator?: JobManifestGenerator;
|
|
3670
|
+
ManifestGenerator?: JobManifestGenerator | undefined;
|
|
3671
3671
|
/**
|
|
3672
3672
|
* <p>The attribute of the JobDescriptor containing details about the job's generated
|
|
3673
3673
|
* manifest.</p>
|
|
3674
3674
|
* @public
|
|
3675
3675
|
*/
|
|
3676
|
-
GeneratedManifestDescriptor?: S3GeneratedManifestDescriptor;
|
|
3676
|
+
GeneratedManifestDescriptor?: S3GeneratedManifestDescriptor | undefined;
|
|
3677
3677
|
}
|
|
3678
3678
|
/**
|
|
3679
3679
|
* @public
|
|
@@ -3684,7 +3684,7 @@ export interface DescribeJobResult {
|
|
|
3684
3684
|
* <code>Describe Job</code> request.</p>
|
|
3685
3685
|
* @public
|
|
3686
3686
|
*/
|
|
3687
|
-
Job?: JobDescriptor;
|
|
3687
|
+
Job?: JobDescriptor | undefined;
|
|
3688
3688
|
}
|
|
3689
3689
|
/**
|
|
3690
3690
|
* @public
|
|
@@ -3694,7 +3694,7 @@ export interface DescribeMultiRegionAccessPointOperationRequest {
|
|
|
3694
3694
|
* <p>The Amazon Web Services account ID for the owner of the Multi-Region Access Point.</p>
|
|
3695
3695
|
* @public
|
|
3696
3696
|
*/
|
|
3697
|
-
AccountId?: string;
|
|
3697
|
+
AccountId?: string | undefined;
|
|
3698
3698
|
/**
|
|
3699
3699
|
* <p>The request token associated with the request you want to know about. This request token
|
|
3700
3700
|
* is returned as part of the response when you make an asynchronous request. You provide this
|
|
@@ -3711,7 +3711,7 @@ export interface DescribeMultiRegionAccessPointOperationResult {
|
|
|
3711
3711
|
* <p>A container element containing the details of the asynchronous operation.</p>
|
|
3712
3712
|
* @public
|
|
3713
3713
|
*/
|
|
3714
|
-
AsyncOperation?: AsyncOperation;
|
|
3714
|
+
AsyncOperation?: AsyncOperation | undefined;
|
|
3715
3715
|
}
|
|
3716
3716
|
/**
|
|
3717
3717
|
* @public
|
|
@@ -3721,7 +3721,7 @@ export interface DissociateAccessGrantsIdentityCenterRequest {
|
|
|
3721
3721
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3722
3722
|
* @public
|
|
3723
3723
|
*/
|
|
3724
|
-
AccountId?: string;
|
|
3724
|
+
AccountId?: string | undefined;
|
|
3725
3725
|
}
|
|
3726
3726
|
/**
|
|
3727
3727
|
* @public
|
|
@@ -3731,7 +3731,7 @@ export interface GetAccessGrantRequest {
|
|
|
3731
3731
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3732
3732
|
* @public
|
|
3733
3733
|
*/
|
|
3734
|
-
AccountId?: string;
|
|
3734
|
+
AccountId?: string | undefined;
|
|
3735
3735
|
/**
|
|
3736
3736
|
* <p>The ID of the access grant. S3 Access Grants auto-generates this ID when you create the access grant.</p>
|
|
3737
3737
|
* @public
|
|
@@ -3746,22 +3746,22 @@ export interface GetAccessGrantResult {
|
|
|
3746
3746
|
* <p>The date and time when you created the access grant. </p>
|
|
3747
3747
|
* @public
|
|
3748
3748
|
*/
|
|
3749
|
-
CreatedAt?: Date;
|
|
3749
|
+
CreatedAt?: Date | undefined;
|
|
3750
3750
|
/**
|
|
3751
3751
|
* <p>The ID of the access grant. S3 Access Grants auto-generates this ID when you create the access grant.</p>
|
|
3752
3752
|
* @public
|
|
3753
3753
|
*/
|
|
3754
|
-
AccessGrantId?: string;
|
|
3754
|
+
AccessGrantId?: string | undefined;
|
|
3755
3755
|
/**
|
|
3756
3756
|
* <p>The Amazon Resource Name (ARN) of the access grant. </p>
|
|
3757
3757
|
* @public
|
|
3758
3758
|
*/
|
|
3759
|
-
AccessGrantArn?: string;
|
|
3759
|
+
AccessGrantArn?: string | undefined;
|
|
3760
3760
|
/**
|
|
3761
3761
|
* <p>The user, group, or role to which you are granting access. You can grant access to an IAM user or role. If you have added a corporate directory to Amazon Web Services IAM Identity Center and associated this Identity Center instance with the S3 Access Grants instance, the grantee can also be a corporate directory user or group.</p>
|
|
3762
3762
|
* @public
|
|
3763
3763
|
*/
|
|
3764
|
-
Grantee?: Grantee;
|
|
3764
|
+
Grantee?: Grantee | undefined;
|
|
3765
3765
|
/**
|
|
3766
3766
|
* <p>The type of permission that was granted in the access grant. Can be one of the following values:</p>
|
|
3767
3767
|
* <ul>
|
|
@@ -3780,27 +3780,27 @@ export interface GetAccessGrantResult {
|
|
|
3780
3780
|
* </ul>
|
|
3781
3781
|
* @public
|
|
3782
3782
|
*/
|
|
3783
|
-
Permission?: Permission;
|
|
3783
|
+
Permission?: Permission | undefined;
|
|
3784
3784
|
/**
|
|
3785
3785
|
* <p>The ID of the registered location to which you are granting access. S3 Access Grants assigns this ID when you register the location. S3 Access Grants assigns the ID <code>default</code> to the default location <code>s3://</code> and assigns an auto-generated ID to other locations that you register. </p>
|
|
3786
3786
|
* @public
|
|
3787
3787
|
*/
|
|
3788
|
-
AccessGrantsLocationId?: string;
|
|
3788
|
+
AccessGrantsLocationId?: string | undefined;
|
|
3789
3789
|
/**
|
|
3790
3790
|
* <p>The configuration options of the grant location. The grant location is the S3 path to the data to which you are granting access. </p>
|
|
3791
3791
|
* @public
|
|
3792
3792
|
*/
|
|
3793
|
-
AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
|
|
3793
|
+
AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration | undefined;
|
|
3794
3794
|
/**
|
|
3795
3795
|
* <p>The S3 path of the data to which you are granting access. It is the result of appending the <code>Subprefix</code> to the location scope.</p>
|
|
3796
3796
|
* @public
|
|
3797
3797
|
*/
|
|
3798
|
-
GrantScope?: string;
|
|
3798
|
+
GrantScope?: string | undefined;
|
|
3799
3799
|
/**
|
|
3800
3800
|
* <p>The Amazon Resource Name (ARN) of an Amazon Web Services IAM Identity Center application associated with your Identity Center instance. If the grant includes an application ARN, the grantee can only access the S3 data through this application. </p>
|
|
3801
3801
|
* @public
|
|
3802
3802
|
*/
|
|
3803
|
-
ApplicationArn?: string;
|
|
3803
|
+
ApplicationArn?: string | undefined;
|
|
3804
3804
|
}
|
|
3805
3805
|
/**
|
|
3806
3806
|
* @public
|
|
@@ -3810,7 +3810,7 @@ export interface GetAccessGrantsInstanceRequest {
|
|
|
3810
3810
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3811
3811
|
* @public
|
|
3812
3812
|
*/
|
|
3813
|
-
AccountId?: string;
|
|
3813
|
+
AccountId?: string | undefined;
|
|
3814
3814
|
}
|
|
3815
3815
|
/**
|
|
3816
3816
|
* @public
|
|
@@ -3820,34 +3820,34 @@ export interface GetAccessGrantsInstanceResult {
|
|
|
3820
3820
|
* <p>The Amazon Resource Name (ARN) of the S3 Access Grants instance. </p>
|
|
3821
3821
|
* @public
|
|
3822
3822
|
*/
|
|
3823
|
-
AccessGrantsInstanceArn?: string;
|
|
3823
|
+
AccessGrantsInstanceArn?: string | undefined;
|
|
3824
3824
|
/**
|
|
3825
3825
|
* <p>The ID of the S3 Access Grants instance. The ID is <code>default</code>. You can have one S3 Access Grants instance per Region per account. </p>
|
|
3826
3826
|
* @public
|
|
3827
3827
|
*/
|
|
3828
|
-
AccessGrantsInstanceId?: string;
|
|
3828
|
+
AccessGrantsInstanceId?: string | undefined;
|
|
3829
3829
|
/**
|
|
3830
3830
|
* @deprecated
|
|
3831
3831
|
*
|
|
3832
3832
|
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
3833
3833
|
* @public
|
|
3834
3834
|
*/
|
|
3835
|
-
IdentityCenterArn?: string;
|
|
3835
|
+
IdentityCenterArn?: string | undefined;
|
|
3836
3836
|
/**
|
|
3837
3837
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the <a href="https://docs.aws.amazon.com/singlesignon/latest/APIReference/API_ListInstances.html">ListInstances</a> API operation to retrieve a list of your Identity Center instances and their ARNs.</p>
|
|
3838
3838
|
* @public
|
|
3839
3839
|
*/
|
|
3840
|
-
IdentityCenterInstanceArn?: string;
|
|
3840
|
+
IdentityCenterInstanceArn?: string | undefined;
|
|
3841
3841
|
/**
|
|
3842
3842
|
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
3843
3843
|
* @public
|
|
3844
3844
|
*/
|
|
3845
|
-
IdentityCenterApplicationArn?: string;
|
|
3845
|
+
IdentityCenterApplicationArn?: string | undefined;
|
|
3846
3846
|
/**
|
|
3847
3847
|
* <p>The date and time when you created the S3 Access Grants instance. </p>
|
|
3848
3848
|
* @public
|
|
3849
3849
|
*/
|
|
3850
|
-
CreatedAt?: Date;
|
|
3850
|
+
CreatedAt?: Date | undefined;
|
|
3851
3851
|
}
|
|
3852
3852
|
/**
|
|
3853
3853
|
* @public
|
|
@@ -3857,7 +3857,7 @@ export interface GetAccessGrantsInstanceForPrefixRequest {
|
|
|
3857
3857
|
* <p>The ID of the Amazon Web Services account that is making this request.</p>
|
|
3858
3858
|
* @public
|
|
3859
3859
|
*/
|
|
3860
|
-
AccountId?: string;
|
|
3860
|
+
AccountId?: string | undefined;
|
|
3861
3861
|
/**
|
|
3862
3862
|
* <p>The S3 prefix of the access grants that you would like to retrieve.</p>
|
|
3863
3863
|
* @public
|
|
@@ -3872,12 +3872,12 @@ export interface GetAccessGrantsInstanceForPrefixResult {
|
|
|
3872
3872
|
* <p>The Amazon Resource Name (ARN) of the S3 Access Grants instance. </p>
|
|
3873
3873
|
* @public
|
|
3874
3874
|
*/
|
|
3875
|
-
AccessGrantsInstanceArn?: string;
|
|
3875
|
+
AccessGrantsInstanceArn?: string | undefined;
|
|
3876
3876
|
/**
|
|
3877
3877
|
* <p>The ID of the S3 Access Grants instance. The ID is <code>default</code>. You can have one S3 Access Grants instance per Region per account. </p>
|
|
3878
3878
|
* @public
|
|
3879
3879
|
*/
|
|
3880
|
-
AccessGrantsInstanceId?: string;
|
|
3880
|
+
AccessGrantsInstanceId?: string | undefined;
|
|
3881
3881
|
}
|
|
3882
3882
|
/**
|
|
3883
3883
|
* @public
|
|
@@ -3887,7 +3887,7 @@ export interface GetAccessGrantsInstanceResourcePolicyRequest {
|
|
|
3887
3887
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3888
3888
|
* @public
|
|
3889
3889
|
*/
|
|
3890
|
-
AccountId?: string;
|
|
3890
|
+
AccountId?: string | undefined;
|
|
3891
3891
|
}
|
|
3892
3892
|
/**
|
|
3893
3893
|
* @public
|
|
@@ -3897,17 +3897,17 @@ export interface GetAccessGrantsInstanceResourcePolicyResult {
|
|
|
3897
3897
|
* <p>The resource policy of the S3 Access Grants instance.</p>
|
|
3898
3898
|
* @public
|
|
3899
3899
|
*/
|
|
3900
|
-
Policy?: string;
|
|
3900
|
+
Policy?: string | undefined;
|
|
3901
3901
|
/**
|
|
3902
3902
|
* <p>The Organization of the resource policy of the S3 Access Grants instance.</p>
|
|
3903
3903
|
* @public
|
|
3904
3904
|
*/
|
|
3905
|
-
Organization?: string;
|
|
3905
|
+
Organization?: string | undefined;
|
|
3906
3906
|
/**
|
|
3907
3907
|
* <p>The date and time when you created the S3 Access Grants instance resource policy. </p>
|
|
3908
3908
|
* @public
|
|
3909
3909
|
*/
|
|
3910
|
-
CreatedAt?: Date;
|
|
3910
|
+
CreatedAt?: Date | undefined;
|
|
3911
3911
|
}
|
|
3912
3912
|
/**
|
|
3913
3913
|
* @public
|
|
@@ -3917,7 +3917,7 @@ export interface GetAccessGrantsLocationRequest {
|
|
|
3917
3917
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3918
3918
|
* @public
|
|
3919
3919
|
*/
|
|
3920
|
-
AccountId?: string;
|
|
3920
|
+
AccountId?: string | undefined;
|
|
3921
3921
|
/**
|
|
3922
3922
|
* <p>The ID of the registered location that you are retrieving. S3 Access Grants assigns this ID when you register the location. S3 Access Grants assigns the ID <code>default</code> to the default location <code>s3://</code> and assigns an auto-generated ID to other locations that you register. </p>
|
|
3923
3923
|
* @public
|
|
@@ -3932,27 +3932,27 @@ export interface GetAccessGrantsLocationResult {
|
|
|
3932
3932
|
* <p>The date and time when you registered the location. </p>
|
|
3933
3933
|
* @public
|
|
3934
3934
|
*/
|
|
3935
|
-
CreatedAt?: Date;
|
|
3935
|
+
CreatedAt?: Date | undefined;
|
|
3936
3936
|
/**
|
|
3937
3937
|
* <p>The ID of the registered location to which you are granting access. S3 Access Grants assigns this ID when you register the location. S3 Access Grants assigns the ID <code>default</code> to the default location <code>s3://</code> and assigns an auto-generated ID to other locations that you register. </p>
|
|
3938
3938
|
* @public
|
|
3939
3939
|
*/
|
|
3940
|
-
AccessGrantsLocationId?: string;
|
|
3940
|
+
AccessGrantsLocationId?: string | undefined;
|
|
3941
3941
|
/**
|
|
3942
3942
|
* <p>The Amazon Resource Name (ARN) of the registered location. </p>
|
|
3943
3943
|
* @public
|
|
3944
3944
|
*/
|
|
3945
|
-
AccessGrantsLocationArn?: string;
|
|
3945
|
+
AccessGrantsLocationArn?: string | undefined;
|
|
3946
3946
|
/**
|
|
3947
3947
|
* <p>The S3 URI path to the registered location. The location scope can be the default S3 location <code>s3://</code>, the S3 path to a bucket, or the S3 path to a bucket and prefix. A prefix in S3 is a string of characters at the beginning of an object key name used to organize the objects that you store in your S3 buckets. For example, object key names that start with the <code>engineering/</code> prefix or object key names that start with the <code>marketing/campaigns/</code> prefix.</p>
|
|
3948
3948
|
* @public
|
|
3949
3949
|
*/
|
|
3950
|
-
LocationScope?: string;
|
|
3950
|
+
LocationScope?: string | undefined;
|
|
3951
3951
|
/**
|
|
3952
3952
|
* <p>The Amazon Resource Name (ARN) of the IAM role for the registered location. S3 Access Grants assumes this role to manage access to the registered location. </p>
|
|
3953
3953
|
* @public
|
|
3954
3954
|
*/
|
|
3955
|
-
IAMRoleArn?: string;
|
|
3955
|
+
IAMRoleArn?: string | undefined;
|
|
3956
3956
|
}
|
|
3957
3957
|
/**
|
|
3958
3958
|
* @public
|
|
@@ -3962,7 +3962,7 @@ export interface GetAccessPointRequest {
|
|
|
3962
3962
|
* <p>The Amazon Web Services account ID for the account that owns the specified access point.</p>
|
|
3963
3963
|
* @public
|
|
3964
3964
|
*/
|
|
3965
|
-
AccountId?: string;
|
|
3965
|
+
AccountId?: string | undefined;
|
|
3966
3966
|
/**
|
|
3967
3967
|
* <p>The name of the access point whose configuration information you want to retrieve.</p>
|
|
3968
3968
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -3979,12 +3979,12 @@ export interface GetAccessPointResult {
|
|
|
3979
3979
|
* <p>The name of the specified access point.</p>
|
|
3980
3980
|
* @public
|
|
3981
3981
|
*/
|
|
3982
|
-
Name?: string;
|
|
3982
|
+
Name?: string | undefined;
|
|
3983
3983
|
/**
|
|
3984
3984
|
* <p>The name of the bucket associated with the specified access point.</p>
|
|
3985
3985
|
* @public
|
|
3986
3986
|
*/
|
|
3987
|
-
Bucket?: string;
|
|
3987
|
+
Bucket?: string | undefined;
|
|
3988
3988
|
/**
|
|
3989
3989
|
* <p>Indicates whether this access point allows access from the public internet. If
|
|
3990
3990
|
* <code>VpcConfiguration</code> is specified for this access point, then
|
|
@@ -3995,7 +3995,7 @@ export interface GetAccessPointResult {
|
|
|
3995
3995
|
* <p>This will always be true for an Amazon S3 on Outposts access point</p>
|
|
3996
3996
|
* @public
|
|
3997
3997
|
*/
|
|
3998
|
-
NetworkOrigin?: NetworkOrigin;
|
|
3998
|
+
NetworkOrigin?: NetworkOrigin | undefined;
|
|
3999
3999
|
/**
|
|
4000
4000
|
* <p>Contains the virtual private cloud (VPC) configuration for the specified access point.</p>
|
|
4001
4001
|
* <note>
|
|
@@ -4004,7 +4004,7 @@ export interface GetAccessPointResult {
|
|
|
4004
4004
|
* </note>
|
|
4005
4005
|
* @public
|
|
4006
4006
|
*/
|
|
4007
|
-
VpcConfiguration?: VpcConfiguration;
|
|
4007
|
+
VpcConfiguration?: VpcConfiguration | undefined;
|
|
4008
4008
|
/**
|
|
4009
4009
|
* <p>The <code>PublicAccessBlock</code> configuration that you want to apply to this Amazon S3
|
|
4010
4010
|
* account. You can enable the configuration options in any combination. For more information
|
|
@@ -4012,32 +4012,32 @@ export interface GetAccessPointResult {
|
|
|
4012
4012
|
* <p>This data type is not supported for Amazon S3 on Outposts.</p>
|
|
4013
4013
|
* @public
|
|
4014
4014
|
*/
|
|
4015
|
-
PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
|
|
4015
|
+
PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration | undefined;
|
|
4016
4016
|
/**
|
|
4017
4017
|
* <p>The date and time when the specified access point was created.</p>
|
|
4018
4018
|
* @public
|
|
4019
4019
|
*/
|
|
4020
|
-
CreationDate?: Date;
|
|
4020
|
+
CreationDate?: Date | undefined;
|
|
4021
4021
|
/**
|
|
4022
4022
|
* <p>The name or alias of the access point.</p>
|
|
4023
4023
|
* @public
|
|
4024
4024
|
*/
|
|
4025
|
-
Alias?: string;
|
|
4025
|
+
Alias?: string | undefined;
|
|
4026
4026
|
/**
|
|
4027
4027
|
* <p>The ARN of the access point.</p>
|
|
4028
4028
|
* @public
|
|
4029
4029
|
*/
|
|
4030
|
-
AccessPointArn?: string;
|
|
4030
|
+
AccessPointArn?: string | undefined;
|
|
4031
4031
|
/**
|
|
4032
4032
|
* <p>The VPC endpoint for the access point.</p>
|
|
4033
4033
|
* @public
|
|
4034
4034
|
*/
|
|
4035
|
-
Endpoints?: Record<string, string
|
|
4035
|
+
Endpoints?: Record<string, string> | undefined;
|
|
4036
4036
|
/**
|
|
4037
4037
|
* <p>The Amazon Web Services account ID associated with the S3 bucket associated with this access point.</p>
|
|
4038
4038
|
* @public
|
|
4039
4039
|
*/
|
|
4040
|
-
BucketAccountId?: string;
|
|
4040
|
+
BucketAccountId?: string | undefined;
|
|
4041
4041
|
}
|
|
4042
4042
|
/**
|
|
4043
4043
|
* @public
|
|
@@ -4047,7 +4047,7 @@ export interface GetAccessPointConfigurationForObjectLambdaRequest {
|
|
|
4047
4047
|
* <p>The account ID for the account that owns the specified Object Lambda Access Point.</p>
|
|
4048
4048
|
* @public
|
|
4049
4049
|
*/
|
|
4050
|
-
AccountId?: string;
|
|
4050
|
+
AccountId?: string | undefined;
|
|
4051
4051
|
/**
|
|
4052
4052
|
* <p>The name of the Object Lambda Access Point you want to return the configuration for.</p>
|
|
4053
4053
|
* @public
|
|
@@ -4062,7 +4062,7 @@ export interface GetAccessPointConfigurationForObjectLambdaResult {
|
|
|
4062
4062
|
* <p>Object Lambda Access Point configuration document.</p>
|
|
4063
4063
|
* @public
|
|
4064
4064
|
*/
|
|
4065
|
-
Configuration?: ObjectLambdaConfiguration;
|
|
4065
|
+
Configuration?: ObjectLambdaConfiguration | undefined;
|
|
4066
4066
|
}
|
|
4067
4067
|
/**
|
|
4068
4068
|
* @public
|
|
@@ -4072,7 +4072,7 @@ export interface GetAccessPointForObjectLambdaRequest {
|
|
|
4072
4072
|
* <p>The account ID for the account that owns the specified Object Lambda Access Point.</p>
|
|
4073
4073
|
* @public
|
|
4074
4074
|
*/
|
|
4075
|
-
AccountId?: string;
|
|
4075
|
+
AccountId?: string | undefined;
|
|
4076
4076
|
/**
|
|
4077
4077
|
* <p>The name of the Object Lambda Access Point.</p>
|
|
4078
4078
|
* @public
|
|
@@ -4087,23 +4087,23 @@ export interface GetAccessPointForObjectLambdaResult {
|
|
|
4087
4087
|
* <p>The name of the Object Lambda Access Point.</p>
|
|
4088
4088
|
* @public
|
|
4089
4089
|
*/
|
|
4090
|
-
Name?: string;
|
|
4090
|
+
Name?: string | undefined;
|
|
4091
4091
|
/**
|
|
4092
4092
|
* <p>Configuration to block all public access. This setting is turned on and can not be
|
|
4093
4093
|
* edited. </p>
|
|
4094
4094
|
* @public
|
|
4095
4095
|
*/
|
|
4096
|
-
PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
|
|
4096
|
+
PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration | undefined;
|
|
4097
4097
|
/**
|
|
4098
4098
|
* <p>The date and time when the specified Object Lambda Access Point was created.</p>
|
|
4099
4099
|
* @public
|
|
4100
4100
|
*/
|
|
4101
|
-
CreationDate?: Date;
|
|
4101
|
+
CreationDate?: Date | undefined;
|
|
4102
4102
|
/**
|
|
4103
4103
|
* <p>The alias of the Object Lambda Access Point.</p>
|
|
4104
4104
|
* @public
|
|
4105
4105
|
*/
|
|
4106
|
-
Alias?: ObjectLambdaAccessPointAlias;
|
|
4106
|
+
Alias?: ObjectLambdaAccessPointAlias | undefined;
|
|
4107
4107
|
}
|
|
4108
4108
|
/**
|
|
4109
4109
|
* @public
|
|
@@ -4113,7 +4113,7 @@ export interface GetAccessPointPolicyRequest {
|
|
|
4113
4113
|
* <p>The account ID for the account that owns the specified access point.</p>
|
|
4114
4114
|
* @public
|
|
4115
4115
|
*/
|
|
4116
|
-
AccountId?: string;
|
|
4116
|
+
AccountId?: string | undefined;
|
|
4117
4117
|
/**
|
|
4118
4118
|
* <p>The name of the access point whose policy you want to retrieve.</p>
|
|
4119
4119
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -4130,7 +4130,7 @@ export interface GetAccessPointPolicyResult {
|
|
|
4130
4130
|
* <p>The access point policy associated with the specified access point.</p>
|
|
4131
4131
|
* @public
|
|
4132
4132
|
*/
|
|
4133
|
-
Policy?: string;
|
|
4133
|
+
Policy?: string | undefined;
|
|
4134
4134
|
}
|
|
4135
4135
|
/**
|
|
4136
4136
|
* @public
|
|
@@ -4140,7 +4140,7 @@ export interface GetAccessPointPolicyForObjectLambdaRequest {
|
|
|
4140
4140
|
* <p>The account ID for the account that owns the specified Object Lambda Access Point.</p>
|
|
4141
4141
|
* @public
|
|
4142
4142
|
*/
|
|
4143
|
-
AccountId?: string;
|
|
4143
|
+
AccountId?: string | undefined;
|
|
4144
4144
|
/**
|
|
4145
4145
|
* <p>The name of the Object Lambda Access Point.</p>
|
|
4146
4146
|
* @public
|
|
@@ -4155,7 +4155,7 @@ export interface GetAccessPointPolicyForObjectLambdaResult {
|
|
|
4155
4155
|
* <p>Object Lambda Access Point resource policy document.</p>
|
|
4156
4156
|
* @public
|
|
4157
4157
|
*/
|
|
4158
|
-
Policy?: string;
|
|
4158
|
+
Policy?: string | undefined;
|
|
4159
4159
|
}
|
|
4160
4160
|
/**
|
|
4161
4161
|
* @public
|
|
@@ -4165,7 +4165,7 @@ export interface GetAccessPointPolicyStatusRequest {
|
|
|
4165
4165
|
* <p>The account ID for the account that owns the specified access point.</p>
|
|
4166
4166
|
* @public
|
|
4167
4167
|
*/
|
|
4168
|
-
AccountId?: string;
|
|
4168
|
+
AccountId?: string | undefined;
|
|
4169
4169
|
/**
|
|
4170
4170
|
* <p>The name of the access point whose policy status you want to retrieve.</p>
|
|
4171
4171
|
* @public
|
|
@@ -4182,7 +4182,7 @@ export interface PolicyStatus {
|
|
|
4182
4182
|
* <p></p>
|
|
4183
4183
|
* @public
|
|
4184
4184
|
*/
|
|
4185
|
-
IsPublic?: boolean;
|
|
4185
|
+
IsPublic?: boolean | undefined;
|
|
4186
4186
|
}
|
|
4187
4187
|
/**
|
|
4188
4188
|
* @public
|
|
@@ -4192,7 +4192,7 @@ export interface GetAccessPointPolicyStatusResult {
|
|
|
4192
4192
|
* <p>Indicates the current policy status of the specified access point.</p>
|
|
4193
4193
|
* @public
|
|
4194
4194
|
*/
|
|
4195
|
-
PolicyStatus?: PolicyStatus;
|
|
4195
|
+
PolicyStatus?: PolicyStatus | undefined;
|
|
4196
4196
|
}
|
|
4197
4197
|
/**
|
|
4198
4198
|
* @public
|
|
@@ -4202,7 +4202,7 @@ export interface GetAccessPointPolicyStatusForObjectLambdaRequest {
|
|
|
4202
4202
|
* <p>The account ID for the account that owns the specified Object Lambda Access Point.</p>
|
|
4203
4203
|
* @public
|
|
4204
4204
|
*/
|
|
4205
|
-
AccountId?: string;
|
|
4205
|
+
AccountId?: string | undefined;
|
|
4206
4206
|
/**
|
|
4207
4207
|
* <p>The name of the Object Lambda Access Point.</p>
|
|
4208
4208
|
* @public
|
|
@@ -4218,7 +4218,7 @@ export interface GetAccessPointPolicyStatusForObjectLambdaResult {
|
|
|
4218
4218
|
* evaluates policies to determine whether they are public, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status">The Meaning of "Public"</a> in the <i>Amazon S3 User Guide</i>. </p>
|
|
4219
4219
|
* @public
|
|
4220
4220
|
*/
|
|
4221
|
-
PolicyStatus?: PolicyStatus;
|
|
4221
|
+
PolicyStatus?: PolicyStatus | undefined;
|
|
4222
4222
|
}
|
|
4223
4223
|
/**
|
|
4224
4224
|
* @public
|
|
@@ -4228,7 +4228,7 @@ export interface GetBucketRequest {
|
|
|
4228
4228
|
* <p>The Amazon Web Services account ID of the Outposts bucket.</p>
|
|
4229
4229
|
* @public
|
|
4230
4230
|
*/
|
|
4231
|
-
AccountId?: string;
|
|
4231
|
+
AccountId?: string | undefined;
|
|
4232
4232
|
/**
|
|
4233
4233
|
* <p>Specifies the bucket.</p>
|
|
4234
4234
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -4245,17 +4245,17 @@ export interface GetBucketResult {
|
|
|
4245
4245
|
* <p>The Outposts bucket requested.</p>
|
|
4246
4246
|
* @public
|
|
4247
4247
|
*/
|
|
4248
|
-
Bucket?: string;
|
|
4248
|
+
Bucket?: string | undefined;
|
|
4249
4249
|
/**
|
|
4250
4250
|
* <p></p>
|
|
4251
4251
|
* @public
|
|
4252
4252
|
*/
|
|
4253
|
-
PublicAccessBlockEnabled?: boolean;
|
|
4253
|
+
PublicAccessBlockEnabled?: boolean | undefined;
|
|
4254
4254
|
/**
|
|
4255
4255
|
* <p>The creation date of the Outposts bucket.</p>
|
|
4256
4256
|
* @public
|
|
4257
4257
|
*/
|
|
4258
|
-
CreationDate?: Date;
|
|
4258
|
+
CreationDate?: Date | undefined;
|
|
4259
4259
|
}
|
|
4260
4260
|
/**
|
|
4261
4261
|
* @public
|
|
@@ -4265,7 +4265,7 @@ export interface GetBucketLifecycleConfigurationRequest {
|
|
|
4265
4265
|
* <p>The Amazon Web Services account ID of the Outposts bucket.</p>
|
|
4266
4266
|
* @public
|
|
4267
4267
|
*/
|
|
4268
|
-
AccountId?: string;
|
|
4268
|
+
AccountId?: string | undefined;
|
|
4269
4269
|
/**
|
|
4270
4270
|
* <p>The Amazon Resource Name (ARN) of the bucket.</p>
|
|
4271
4271
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -4284,20 +4284,20 @@ export interface LifecycleExpiration {
|
|
|
4284
4284
|
* format.</p>
|
|
4285
4285
|
* @public
|
|
4286
4286
|
*/
|
|
4287
|
-
Date?: Date;
|
|
4287
|
+
Date?: Date | undefined;
|
|
4288
4288
|
/**
|
|
4289
4289
|
* <p>Indicates the lifetime, in days, of the objects that are subject to the rule. The value
|
|
4290
4290
|
* must be a non-zero positive integer.</p>
|
|
4291
4291
|
* @public
|
|
4292
4292
|
*/
|
|
4293
|
-
Days?: number;
|
|
4293
|
+
Days?: number | undefined;
|
|
4294
4294
|
/**
|
|
4295
4295
|
* <p>Indicates whether Amazon S3 will remove a delete marker with no noncurrent versions. If set
|
|
4296
4296
|
* to true, the delete marker will be expired. If set to false, the policy takes no action.
|
|
4297
4297
|
* This cannot be specified with Days or Date in a Lifecycle Expiration Policy.</p>
|
|
4298
4298
|
* @public
|
|
4299
4299
|
*/
|
|
4300
|
-
ExpiredObjectDeleteMarker?: boolean;
|
|
4300
|
+
ExpiredObjectDeleteMarker?: boolean | undefined;
|
|
4301
4301
|
}
|
|
4302
4302
|
/**
|
|
4303
4303
|
* <p>The container for the Outposts bucket lifecycle rule and operator.</p>
|
|
@@ -4308,23 +4308,23 @@ export interface LifecycleRuleAndOperator {
|
|
|
4308
4308
|
* <p>Prefix identifying one or more objects to which the rule applies.</p>
|
|
4309
4309
|
* @public
|
|
4310
4310
|
*/
|
|
4311
|
-
Prefix?: string;
|
|
4311
|
+
Prefix?: string | undefined;
|
|
4312
4312
|
/**
|
|
4313
4313
|
* <p>All of these tags must exist in the object's tag set in order for the rule to
|
|
4314
4314
|
* apply.</p>
|
|
4315
4315
|
* @public
|
|
4316
4316
|
*/
|
|
4317
|
-
Tags?: S3Tag[];
|
|
4317
|
+
Tags?: S3Tag[] | undefined;
|
|
4318
4318
|
/**
|
|
4319
4319
|
* <p>The non-inclusive minimum object size for the lifecycle rule. Setting this property to 7 means the rule applies to objects with a size that is greater than 7. </p>
|
|
4320
4320
|
* @public
|
|
4321
4321
|
*/
|
|
4322
|
-
ObjectSizeGreaterThan?: number;
|
|
4322
|
+
ObjectSizeGreaterThan?: number | undefined;
|
|
4323
4323
|
/**
|
|
4324
4324
|
* <p>The non-inclusive maximum object size for the lifecycle rule. Setting this property to 77 means the rule applies to objects with a size that is less than 77. </p>
|
|
4325
4325
|
* @public
|
|
4326
4326
|
*/
|
|
4327
|
-
ObjectSizeLessThan?: number;
|
|
4327
|
+
ObjectSizeLessThan?: number | undefined;
|
|
4328
4328
|
}
|
|
4329
4329
|
/**
|
|
4330
4330
|
* <p>The container for the filter of the lifecycle rule.</p>
|
|
@@ -4341,27 +4341,27 @@ export interface LifecycleRuleFilter {
|
|
|
4341
4341
|
* </important>
|
|
4342
4342
|
* @public
|
|
4343
4343
|
*/
|
|
4344
|
-
Prefix?: string;
|
|
4344
|
+
Prefix?: string | undefined;
|
|
4345
4345
|
/**
|
|
4346
4346
|
* <p>A container for a key-value name pair.</p>
|
|
4347
4347
|
* @public
|
|
4348
4348
|
*/
|
|
4349
|
-
Tag?: S3Tag;
|
|
4349
|
+
Tag?: S3Tag | undefined;
|
|
4350
4350
|
/**
|
|
4351
4351
|
* <p>The container for the <code>AND</code> condition for the lifecycle rule.</p>
|
|
4352
4352
|
* @public
|
|
4353
4353
|
*/
|
|
4354
|
-
And?: LifecycleRuleAndOperator;
|
|
4354
|
+
And?: LifecycleRuleAndOperator | undefined;
|
|
4355
4355
|
/**
|
|
4356
4356
|
* <p>Minimum object size to which the rule applies.</p>
|
|
4357
4357
|
* @public
|
|
4358
4358
|
*/
|
|
4359
|
-
ObjectSizeGreaterThan?: number;
|
|
4359
|
+
ObjectSizeGreaterThan?: number | undefined;
|
|
4360
4360
|
/**
|
|
4361
4361
|
* <p>Maximum object size to which the rule applies.</p>
|
|
4362
4362
|
* @public
|
|
4363
4363
|
*/
|
|
4364
|
-
ObjectSizeLessThan?: number;
|
|
4364
|
+
ObjectSizeLessThan?: number | undefined;
|
|
4365
4365
|
}
|
|
4366
4366
|
/**
|
|
4367
4367
|
* <p>The container of the noncurrent version expiration.</p>
|
|
@@ -4375,7 +4375,7 @@ export interface NoncurrentVersionExpiration {
|
|
|
4375
4375
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
4376
4376
|
* @public
|
|
4377
4377
|
*/
|
|
4378
|
-
NoncurrentDays?: number;
|
|
4378
|
+
NoncurrentDays?: number | undefined;
|
|
4379
4379
|
/**
|
|
4380
4380
|
* <p>Specifies how many noncurrent versions S3 on Outposts will retain. If there are this many
|
|
4381
4381
|
* more recent noncurrent versions, S3 on Outposts will take the associated action. For more
|
|
@@ -4383,7 +4383,7 @@ export interface NoncurrentVersionExpiration {
|
|
|
4383
4383
|
* elements</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
4384
4384
|
* @public
|
|
4385
4385
|
*/
|
|
4386
|
-
NewerNoncurrentVersions?: number;
|
|
4386
|
+
NewerNoncurrentVersions?: number | undefined;
|
|
4387
4387
|
}
|
|
4388
4388
|
/**
|
|
4389
4389
|
* @public
|
|
@@ -4412,12 +4412,12 @@ export interface NoncurrentVersionTransition {
|
|
|
4412
4412
|
* <i>Amazon S3 User Guide</i>.</p>
|
|
4413
4413
|
* @public
|
|
4414
4414
|
*/
|
|
4415
|
-
NoncurrentDays?: number;
|
|
4415
|
+
NoncurrentDays?: number | undefined;
|
|
4416
4416
|
/**
|
|
4417
4417
|
* <p>The class of storage used to store the object.</p>
|
|
4418
4418
|
* @public
|
|
4419
4419
|
*/
|
|
4420
|
-
StorageClass?: TransitionStorageClass;
|
|
4420
|
+
StorageClass?: TransitionStorageClass | undefined;
|
|
4421
4421
|
}
|
|
4422
4422
|
/**
|
|
4423
4423
|
* @public
|
|
@@ -4444,18 +4444,18 @@ export interface Transition {
|
|
|
4444
4444
|
* must be in ISO 8601 format. The time is always midnight UTC.</p>
|
|
4445
4445
|
* @public
|
|
4446
4446
|
*/
|
|
4447
|
-
Date?: Date;
|
|
4447
|
+
Date?: Date | undefined;
|
|
4448
4448
|
/**
|
|
4449
4449
|
* <p>Indicates the number of days after creation when objects are transitioned to the
|
|
4450
4450
|
* specified storage class. The value must be a positive integer.</p>
|
|
4451
4451
|
* @public
|
|
4452
4452
|
*/
|
|
4453
|
-
Days?: number;
|
|
4453
|
+
Days?: number | undefined;
|
|
4454
4454
|
/**
|
|
4455
4455
|
* <p>The storage class to which you want the object to transition.</p>
|
|
4456
4456
|
* @public
|
|
4457
4457
|
*/
|
|
4458
|
-
StorageClass?: TransitionStorageClass;
|
|
4458
|
+
StorageClass?: TransitionStorageClass | undefined;
|
|
4459
4459
|
}
|
|
4460
4460
|
/**
|
|
4461
4461
|
* <p>The container for the Outposts bucket lifecycle rule.</p>
|
|
@@ -4467,17 +4467,17 @@ export interface LifecycleRule {
|
|
|
4467
4467
|
* whether the object has a delete marker.</p>
|
|
4468
4468
|
* @public
|
|
4469
4469
|
*/
|
|
4470
|
-
Expiration?: LifecycleExpiration;
|
|
4470
|
+
Expiration?: LifecycleExpiration | undefined;
|
|
4471
4471
|
/**
|
|
4472
4472
|
* <p>Unique identifier for the rule. The value cannot be longer than 255 characters.</p>
|
|
4473
4473
|
* @public
|
|
4474
4474
|
*/
|
|
4475
|
-
ID?: string;
|
|
4475
|
+
ID?: string | undefined;
|
|
4476
4476
|
/**
|
|
4477
4477
|
* <p>The container for the filter of lifecycle rule.</p>
|
|
4478
4478
|
* @public
|
|
4479
4479
|
*/
|
|
4480
|
-
Filter?: LifecycleRuleFilter;
|
|
4480
|
+
Filter?: LifecycleRuleFilter | undefined;
|
|
4481
4481
|
/**
|
|
4482
4482
|
* <p>If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not
|
|
4483
4483
|
* currently being applied.</p>
|
|
@@ -4491,7 +4491,7 @@ export interface LifecycleRule {
|
|
|
4491
4491
|
* </note>
|
|
4492
4492
|
* @public
|
|
4493
4493
|
*/
|
|
4494
|
-
Transitions?: Transition[];
|
|
4494
|
+
Transitions?: Transition[] | undefined;
|
|
4495
4495
|
/**
|
|
4496
4496
|
* <p> Specifies the transition rule for the lifecycle rule that describes when noncurrent
|
|
4497
4497
|
* objects transition to a specific storage class. If your bucket is versioning-enabled (or
|
|
@@ -4503,12 +4503,12 @@ export interface LifecycleRule {
|
|
|
4503
4503
|
* </note>
|
|
4504
4504
|
* @public
|
|
4505
4505
|
*/
|
|
4506
|
-
NoncurrentVersionTransitions?: NoncurrentVersionTransition[];
|
|
4506
|
+
NoncurrentVersionTransitions?: NoncurrentVersionTransition[] | undefined;
|
|
4507
4507
|
/**
|
|
4508
4508
|
* <p>The noncurrent version expiration of the lifecycle rule.</p>
|
|
4509
4509
|
* @public
|
|
4510
4510
|
*/
|
|
4511
|
-
NoncurrentVersionExpiration?: NoncurrentVersionExpiration;
|
|
4511
|
+
NoncurrentVersionExpiration?: NoncurrentVersionExpiration | undefined;
|
|
4512
4512
|
/**
|
|
4513
4513
|
* <p>Specifies the days since the initiation of an incomplete multipart upload that Amazon S3
|
|
4514
4514
|
* waits before permanently removing all parts of the upload. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html#mpu-abort-incomplete-mpu-lifecycle-config">
|
|
@@ -4516,7 +4516,7 @@ export interface LifecycleRule {
|
|
|
4516
4516
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
4517
4517
|
* @public
|
|
4518
4518
|
*/
|
|
4519
|
-
AbortIncompleteMultipartUpload?: AbortIncompleteMultipartUpload;
|
|
4519
|
+
AbortIncompleteMultipartUpload?: AbortIncompleteMultipartUpload | undefined;
|
|
4520
4520
|
}
|
|
4521
4521
|
/**
|
|
4522
4522
|
* @public
|
|
@@ -4526,7 +4526,7 @@ export interface GetBucketLifecycleConfigurationResult {
|
|
|
4526
4526
|
* <p>Container for the lifecycle rule of the Outposts bucket.</p>
|
|
4527
4527
|
* @public
|
|
4528
4528
|
*/
|
|
4529
|
-
Rules?: LifecycleRule[];
|
|
4529
|
+
Rules?: LifecycleRule[] | undefined;
|
|
4530
4530
|
}
|
|
4531
4531
|
/**
|
|
4532
4532
|
* @public
|
|
@@ -4536,7 +4536,7 @@ export interface GetBucketPolicyRequest {
|
|
|
4536
4536
|
* <p>The Amazon Web Services account ID of the Outposts bucket.</p>
|
|
4537
4537
|
* @public
|
|
4538
4538
|
*/
|
|
4539
|
-
AccountId?: string;
|
|
4539
|
+
AccountId?: string | undefined;
|
|
4540
4540
|
/**
|
|
4541
4541
|
* <p>Specifies the bucket.</p>
|
|
4542
4542
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -4553,7 +4553,7 @@ export interface GetBucketPolicyResult {
|
|
|
4553
4553
|
* <p>The policy of the Outposts bucket.</p>
|
|
4554
4554
|
* @public
|
|
4555
4555
|
*/
|
|
4556
|
-
Policy?: string;
|
|
4556
|
+
Policy?: string | undefined;
|
|
4557
4557
|
}
|
|
4558
4558
|
/**
|
|
4559
4559
|
* @public
|
|
@@ -4563,7 +4563,7 @@ export interface GetBucketReplicationRequest {
|
|
|
4563
4563
|
* <p>The Amazon Web Services account ID of the Outposts bucket.</p>
|
|
4564
4564
|
* @public
|
|
4565
4565
|
*/
|
|
4566
|
-
AccountId?: string;
|
|
4566
|
+
AccountId?: string | undefined;
|
|
4567
4567
|
/**
|
|
4568
4568
|
* <p>Specifies the bucket to get the replication information for.</p>
|
|
4569
4569
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -4624,7 +4624,7 @@ export interface EncryptionConfiguration {
|
|
|
4624
4624
|
* Guide</i>.</p>
|
|
4625
4625
|
* @public
|
|
4626
4626
|
*/
|
|
4627
|
-
ReplicaKmsKeyID?: string;
|
|
4627
|
+
ReplicaKmsKeyID?: string | undefined;
|
|
4628
4628
|
}
|
|
4629
4629
|
/**
|
|
4630
4630
|
* <p>A container that specifies the time value for S3 Replication Time Control (S3 RTC). This value is also used for
|
|
@@ -4640,7 +4640,7 @@ export interface ReplicationTimeValue {
|
|
|
4640
4640
|
* <p>Valid value: 15</p>
|
|
4641
4641
|
* @public
|
|
4642
4642
|
*/
|
|
4643
|
-
Minutes?: number;
|
|
4643
|
+
Minutes?: number | undefined;
|
|
4644
4644
|
}
|
|
4645
4645
|
/**
|
|
4646
4646
|
* @public
|
|
@@ -4672,7 +4672,7 @@ export interface Metrics {
|
|
|
4672
4672
|
* </note>
|
|
4673
4673
|
* @public
|
|
4674
4674
|
*/
|
|
4675
|
-
EventThreshold?: ReplicationTimeValue;
|
|
4675
|
+
EventThreshold?: ReplicationTimeValue | undefined;
|
|
4676
4676
|
}
|
|
4677
4677
|
/**
|
|
4678
4678
|
* @public
|
|
@@ -4737,7 +4737,7 @@ export interface Destination {
|
|
|
4737
4737
|
* <p>The destination bucket owner's account ID. </p>
|
|
4738
4738
|
* @public
|
|
4739
4739
|
*/
|
|
4740
|
-
Account?: string;
|
|
4740
|
+
Account?: string | undefined;
|
|
4741
4741
|
/**
|
|
4742
4742
|
* <p>The Amazon Resource Name (ARN) of the access point for the destination bucket where you want
|
|
4743
4743
|
* S3 on Outposts to store the replication results.</p>
|
|
@@ -4753,7 +4753,7 @@ export interface Destination {
|
|
|
4753
4753
|
* </note>
|
|
4754
4754
|
* @public
|
|
4755
4755
|
*/
|
|
4756
|
-
ReplicationTime?: ReplicationTime;
|
|
4756
|
+
ReplicationTime?: ReplicationTime | undefined;
|
|
4757
4757
|
/**
|
|
4758
4758
|
* <p>Specify this property only in a cross-account scenario (where the source and destination
|
|
4759
4759
|
* bucket owners are not the same), and you want to change replica ownership to the
|
|
@@ -4765,7 +4765,7 @@ export interface Destination {
|
|
|
4765
4765
|
* </note>
|
|
4766
4766
|
* @public
|
|
4767
4767
|
*/
|
|
4768
|
-
AccessControlTranslation?: AccessControlTranslation;
|
|
4768
|
+
AccessControlTranslation?: AccessControlTranslation | undefined;
|
|
4769
4769
|
/**
|
|
4770
4770
|
* <p>A container that provides information about encryption. If
|
|
4771
4771
|
* <code>SourceSelectionCriteria</code> is specified, you must specify this element.</p>
|
|
@@ -4774,12 +4774,12 @@ export interface Destination {
|
|
|
4774
4774
|
* </note>
|
|
4775
4775
|
* @public
|
|
4776
4776
|
*/
|
|
4777
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
4777
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
4778
4778
|
/**
|
|
4779
4779
|
* <p> A container that specifies replication metrics-related settings. </p>
|
|
4780
4780
|
* @public
|
|
4781
4781
|
*/
|
|
4782
|
-
Metrics?: Metrics;
|
|
4782
|
+
Metrics?: Metrics | undefined;
|
|
4783
4783
|
/**
|
|
4784
4784
|
* <p> The storage class to use when replicating objects. All objects stored on S3 on Outposts
|
|
4785
4785
|
* are stored in the <code>OUTPOSTS</code> storage class. S3 on Outposts uses the
|
|
@@ -4789,7 +4789,7 @@ export interface Destination {
|
|
|
4789
4789
|
* </note>
|
|
4790
4790
|
* @public
|
|
4791
4791
|
*/
|
|
4792
|
-
StorageClass?: ReplicationStorageClass;
|
|
4792
|
+
StorageClass?: ReplicationStorageClass | undefined;
|
|
4793
4793
|
}
|
|
4794
4794
|
/**
|
|
4795
4795
|
* @public
|
|
@@ -4839,12 +4839,12 @@ export interface ReplicationRuleAndOperator {
|
|
|
4839
4839
|
* to.</p>
|
|
4840
4840
|
* @public
|
|
4841
4841
|
*/
|
|
4842
|
-
Prefix?: string;
|
|
4842
|
+
Prefix?: string | undefined;
|
|
4843
4843
|
/**
|
|
4844
4844
|
* <p>An array of tags that contain key and value pairs.</p>
|
|
4845
4845
|
* @public
|
|
4846
4846
|
*/
|
|
4847
|
-
Tags?: S3Tag[];
|
|
4847
|
+
Tags?: S3Tag[] | undefined;
|
|
4848
4848
|
}
|
|
4849
4849
|
/**
|
|
4850
4850
|
* <p>A filter that identifies the subset of objects to which the replication rule applies. A
|
|
@@ -4864,12 +4864,12 @@ export interface ReplicationRuleFilter {
|
|
|
4864
4864
|
* </important>
|
|
4865
4865
|
* @public
|
|
4866
4866
|
*/
|
|
4867
|
-
Prefix?: string;
|
|
4867
|
+
Prefix?: string | undefined;
|
|
4868
4868
|
/**
|
|
4869
4869
|
* <p>A container for a key-value name pair.</p>
|
|
4870
4870
|
* @public
|
|
4871
4871
|
*/
|
|
4872
|
-
Tag?: S3Tag;
|
|
4872
|
+
Tag?: S3Tag | undefined;
|
|
4873
4873
|
/**
|
|
4874
4874
|
* <p>A container for specifying rule filters. The filters determine the subset of objects
|
|
4875
4875
|
* that the rule applies to. This element is required only if you specify more than one
|
|
@@ -4886,7 +4886,7 @@ export interface ReplicationRuleFilter {
|
|
|
4886
4886
|
* </ul>
|
|
4887
4887
|
* @public
|
|
4888
4888
|
*/
|
|
4889
|
-
And?: ReplicationRuleAndOperator;
|
|
4889
|
+
And?: ReplicationRuleAndOperator | undefined;
|
|
4890
4890
|
}
|
|
4891
4891
|
/**
|
|
4892
4892
|
* @public
|
|
@@ -4968,7 +4968,7 @@ export interface SourceSelectionCriteria {
|
|
|
4968
4968
|
* </note>
|
|
4969
4969
|
* @public
|
|
4970
4970
|
*/
|
|
4971
|
-
SseKmsEncryptedObjects?: SseKmsEncryptedObjects;
|
|
4971
|
+
SseKmsEncryptedObjects?: SseKmsEncryptedObjects | undefined;
|
|
4972
4972
|
/**
|
|
4973
4973
|
* <p>A filter that you can use to specify whether replica modification sync is enabled.
|
|
4974
4974
|
* S3 on Outposts replica modification sync can help you keep object metadata synchronized
|
|
@@ -4984,7 +4984,7 @@ export interface SourceSelectionCriteria {
|
|
|
4984
4984
|
* </note>
|
|
4985
4985
|
* @public
|
|
4986
4986
|
*/
|
|
4987
|
-
ReplicaModifications?: ReplicaModifications;
|
|
4987
|
+
ReplicaModifications?: ReplicaModifications | undefined;
|
|
4988
4988
|
}
|
|
4989
4989
|
/**
|
|
4990
4990
|
* @public
|
|
@@ -5008,7 +5008,7 @@ export interface ReplicationRule {
|
|
|
5008
5008
|
* <p>A unique identifier for the rule. The maximum value is 255 characters.</p>
|
|
5009
5009
|
* @public
|
|
5010
5010
|
*/
|
|
5011
|
-
ID?: string;
|
|
5011
|
+
ID?: string | undefined;
|
|
5012
5012
|
/**
|
|
5013
5013
|
* <p>The priority indicates which rule has precedence whenever two or more replication rules
|
|
5014
5014
|
* conflict. S3 on Outposts attempts to replicate objects according to all replication rules.
|
|
@@ -5019,7 +5019,7 @@ export interface ReplicationRule {
|
|
|
5019
5019
|
* rules on Outposts</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
5020
5020
|
* @public
|
|
5021
5021
|
*/
|
|
5022
|
-
Priority?: number;
|
|
5022
|
+
Priority?: number | undefined;
|
|
5023
5023
|
/**
|
|
5024
5024
|
* @deprecated
|
|
5025
5025
|
*
|
|
@@ -5034,14 +5034,14 @@ export interface ReplicationRule {
|
|
|
5034
5034
|
* </important>
|
|
5035
5035
|
* @public
|
|
5036
5036
|
*/
|
|
5037
|
-
Prefix?: string;
|
|
5037
|
+
Prefix?: string | undefined;
|
|
5038
5038
|
/**
|
|
5039
5039
|
* <p>A filter that identifies the subset of objects to which the replication rule applies. A
|
|
5040
5040
|
* <code>Filter</code> element must specify exactly one <code>Prefix</code>,
|
|
5041
5041
|
* <code>Tag</code>, or <code>And</code> child element.</p>
|
|
5042
5042
|
* @public
|
|
5043
5043
|
*/
|
|
5044
|
-
Filter?: ReplicationRuleFilter;
|
|
5044
|
+
Filter?: ReplicationRuleFilter | undefined;
|
|
5045
5045
|
/**
|
|
5046
5046
|
* <p>Specifies whether the rule is enabled.</p>
|
|
5047
5047
|
* @public
|
|
@@ -5053,7 +5053,7 @@ export interface ReplicationRule {
|
|
|
5053
5053
|
* these objects.</p>
|
|
5054
5054
|
* @public
|
|
5055
5055
|
*/
|
|
5056
|
-
SourceSelectionCriteria?: SourceSelectionCriteria;
|
|
5056
|
+
SourceSelectionCriteria?: SourceSelectionCriteria | undefined;
|
|
5057
5057
|
/**
|
|
5058
5058
|
* <p>An optional configuration to replicate existing source bucket objects. </p>
|
|
5059
5059
|
* <note>
|
|
@@ -5061,7 +5061,7 @@ export interface ReplicationRule {
|
|
|
5061
5061
|
* </note>
|
|
5062
5062
|
* @public
|
|
5063
5063
|
*/
|
|
5064
|
-
ExistingObjectReplication?: ExistingObjectReplication;
|
|
5064
|
+
ExistingObjectReplication?: ExistingObjectReplication | undefined;
|
|
5065
5065
|
/**
|
|
5066
5066
|
* <p>A container for information about the replication destination and its
|
|
5067
5067
|
* configurations.</p>
|
|
@@ -5079,7 +5079,7 @@ export interface ReplicationRule {
|
|
|
5079
5079
|
* <i>Amazon S3 User Guide</i>. </p>
|
|
5080
5080
|
* @public
|
|
5081
5081
|
*/
|
|
5082
|
-
DeleteMarkerReplication?: DeleteMarkerReplication;
|
|
5082
|
+
DeleteMarkerReplication?: DeleteMarkerReplication | undefined;
|
|
5083
5083
|
/**
|
|
5084
5084
|
* <p>The Amazon Resource Name (ARN) of the access point for the source Outposts bucket that you want
|
|
5085
5085
|
* S3 on Outposts to replicate the objects from.</p>
|
|
@@ -5119,7 +5119,7 @@ export interface GetBucketReplicationResult {
|
|
|
5119
5119
|
* configuration is 128 KB.</p>
|
|
5120
5120
|
* @public
|
|
5121
5121
|
*/
|
|
5122
|
-
ReplicationConfiguration?: ReplicationConfiguration;
|
|
5122
|
+
ReplicationConfiguration?: ReplicationConfiguration | undefined;
|
|
5123
5123
|
}
|
|
5124
5124
|
/**
|
|
5125
5125
|
* @public
|
|
@@ -5129,7 +5129,7 @@ export interface GetBucketTaggingRequest {
|
|
|
5129
5129
|
* <p>The Amazon Web Services account ID of the Outposts bucket.</p>
|
|
5130
5130
|
* @public
|
|
5131
5131
|
*/
|
|
5132
|
-
AccountId?: string;
|
|
5132
|
+
AccountId?: string | undefined;
|
|
5133
5133
|
/**
|
|
5134
5134
|
* <p>Specifies the bucket.</p>
|
|
5135
5135
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
@@ -5156,7 +5156,7 @@ export interface GetBucketVersioningRequest {
|
|
|
5156
5156
|
* <p>The Amazon Web Services account ID of the S3 on Outposts bucket.</p>
|
|
5157
5157
|
* @public
|
|
5158
5158
|
*/
|
|
5159
|
-
AccountId?: string;
|
|
5159
|
+
AccountId?: string | undefined;
|
|
5160
5160
|
/**
|
|
5161
5161
|
* <p>The S3 on Outposts bucket to return the versioning state for.</p>
|
|
5162
5162
|
* @public
|
|
@@ -5195,14 +5195,14 @@ export interface GetBucketVersioningResult {
|
|
|
5195
5195
|
* <p>The versioning state of the S3 on Outposts bucket.</p>
|
|
5196
5196
|
* @public
|
|
5197
5197
|
*/
|
|
5198
|
-
Status?: BucketVersioningStatus;
|
|
5198
|
+
Status?: BucketVersioningStatus | undefined;
|
|
5199
5199
|
/**
|
|
5200
5200
|
* <p>Specifies whether MFA delete is enabled in the bucket versioning configuration. This
|
|
5201
5201
|
* element is returned only if the bucket has been configured with MFA delete. If MFA delete
|
|
5202
5202
|
* has never been configured for the bucket, this element is not returned.</p>
|
|
5203
5203
|
* @public
|
|
5204
5204
|
*/
|
|
5205
|
-
MFADelete?: MFADeleteStatus;
|
|
5205
|
+
MFADelete?: MFADeleteStatus | undefined;
|
|
5206
5206
|
}
|
|
5207
5207
|
/**
|
|
5208
5208
|
* @public
|
|
@@ -5224,7 +5224,7 @@ export interface GetDataAccessRequest {
|
|
|
5224
5224
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
5225
5225
|
* @public
|
|
5226
5226
|
*/
|
|
5227
|
-
AccountId?: string;
|
|
5227
|
+
AccountId?: string | undefined;
|
|
5228
5228
|
/**
|
|
5229
5229
|
* <p>The S3 URI path of the data to which you are requesting temporary access credentials. If the requesting account has an access grant for this data, S3 Access Grants vends temporary access credentials in the response.</p>
|
|
5230
5230
|
* @public
|
|
@@ -5253,7 +5253,7 @@ export interface GetDataAccessRequest {
|
|
|
5253
5253
|
* <p>The session duration, in seconds, of the temporary access credential that S3 Access Grants vends to the grantee or client application. The default value is 1 hour, but the grantee can specify a range from 900 seconds (15 minutes) up to 43200 seconds (12 hours). If the grantee requests a value higher than this maximum, the operation fails. </p>
|
|
5254
5254
|
* @public
|
|
5255
5255
|
*/
|
|
5256
|
-
DurationSeconds?: number;
|
|
5256
|
+
DurationSeconds?: number | undefined;
|
|
5257
5257
|
/**
|
|
5258
5258
|
* <p>The scope of the temporary access credential that S3 Access Grants vends to the grantee or client application. </p>
|
|
5259
5259
|
* <ul>
|
|
@@ -5268,12 +5268,12 @@ export interface GetDataAccessRequest {
|
|
|
5268
5268
|
* </ul>
|
|
5269
5269
|
* @public
|
|
5270
5270
|
*/
|
|
5271
|
-
Privilege?: Privilege;
|
|
5271
|
+
Privilege?: Privilege | undefined;
|
|
5272
5272
|
/**
|
|
5273
5273
|
* <p>The type of <code>Target</code>. The only possible value is <code>Object</code>. Pass this value if the target data that you would like to access is a path to an object. Do not pass this value if the target data is a bucket or a bucket and a prefix. </p>
|
|
5274
5274
|
* @public
|
|
5275
5275
|
*/
|
|
5276
|
-
TargetType?: S3PrefixType;
|
|
5276
|
+
TargetType?: S3PrefixType | undefined;
|
|
5277
5277
|
}
|
|
5278
5278
|
/**
|
|
5279
5279
|
* <p>The Amazon Web Services Security Token Service temporary credential that S3 Access Grants vends to grantees and client applications. </p>
|
|
@@ -5284,22 +5284,22 @@ export interface Credentials {
|
|
|
5284
5284
|
* <p>The unique access key ID of the Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications. </p>
|
|
5285
5285
|
* @public
|
|
5286
5286
|
*/
|
|
5287
|
-
AccessKeyId?: string;
|
|
5287
|
+
AccessKeyId?: string | undefined;
|
|
5288
5288
|
/**
|
|
5289
5289
|
* <p>The secret access key of the Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications. </p>
|
|
5290
5290
|
* @public
|
|
5291
5291
|
*/
|
|
5292
|
-
SecretAccessKey?: string;
|
|
5292
|
+
SecretAccessKey?: string | undefined;
|
|
5293
5293
|
/**
|
|
5294
5294
|
* <p>The Amazon Web Services STS temporary credential that S3 Access Grants vends to grantees and client applications. </p>
|
|
5295
5295
|
* @public
|
|
5296
5296
|
*/
|
|
5297
|
-
SessionToken?: string;
|
|
5297
|
+
SessionToken?: string | undefined;
|
|
5298
5298
|
/**
|
|
5299
5299
|
* <p>The expiration date and time of the temporary credential that S3 Access Grants vends to grantees and client applications. </p>
|
|
5300
5300
|
* @public
|
|
5301
5301
|
*/
|
|
5302
|
-
Expiration?: Date;
|
|
5302
|
+
Expiration?: Date | undefined;
|
|
5303
5303
|
}
|
|
5304
5304
|
/**
|
|
5305
5305
|
* @public
|
|
@@ -5309,12 +5309,12 @@ export interface GetDataAccessResult {
|
|
|
5309
5309
|
* <p>The temporary credential token that S3 Access Grants vends.</p>
|
|
5310
5310
|
* @public
|
|
5311
5311
|
*/
|
|
5312
|
-
Credentials?: Credentials;
|
|
5312
|
+
Credentials?: Credentials | undefined;
|
|
5313
5313
|
/**
|
|
5314
5314
|
* <p>The S3 URI path of the data to which you are being granted temporary access credentials. </p>
|
|
5315
5315
|
* @public
|
|
5316
5316
|
*/
|
|
5317
|
-
MatchedGrantTarget?: string;
|
|
5317
|
+
MatchedGrantTarget?: string | undefined;
|
|
5318
5318
|
}
|
|
5319
5319
|
/**
|
|
5320
5320
|
* @public
|
|
@@ -5324,7 +5324,7 @@ export interface GetJobTaggingRequest {
|
|
|
5324
5324
|
* <p>The Amazon Web Services account ID associated with the S3 Batch Operations job.</p>
|
|
5325
5325
|
* @public
|
|
5326
5326
|
*/
|
|
5327
|
-
AccountId?: string;
|
|
5327
|
+
AccountId?: string | undefined;
|
|
5328
5328
|
/**
|
|
5329
5329
|
* <p>The ID for the S3 Batch Operations job whose tags you want to retrieve.</p>
|
|
5330
5330
|
* @public
|
|
@@ -5339,7 +5339,7 @@ export interface GetJobTaggingResult {
|
|
|
5339
5339
|
* <p>The set of tags associated with the S3 Batch Operations job.</p>
|
|
5340
5340
|
* @public
|
|
5341
5341
|
*/
|
|
5342
|
-
Tags?: S3Tag[];
|
|
5342
|
+
Tags?: S3Tag[] | undefined;
|
|
5343
5343
|
}
|
|
5344
5344
|
/**
|
|
5345
5345
|
* @public
|
|
@@ -5349,7 +5349,7 @@ export interface GetMultiRegionAccessPointRequest {
|
|
|
5349
5349
|
* <p>The Amazon Web Services account ID for the owner of the Multi-Region Access Point.</p>
|
|
5350
5350
|
* @public
|
|
5351
5351
|
*/
|
|
5352
|
-
AccountId?: string;
|
|
5352
|
+
AccountId?: string | undefined;
|
|
5353
5353
|
/**
|
|
5354
5354
|
* <p>The name of the Multi-Region Access Point whose configuration information you want to receive. The name of
|
|
5355
5355
|
* the Multi-Region Access Point is different from the alias. For more information about the distinction between
|
|
@@ -5368,18 +5368,18 @@ export interface RegionReport {
|
|
|
5368
5368
|
* <p>The name of the bucket.</p>
|
|
5369
5369
|
* @public
|
|
5370
5370
|
*/
|
|
5371
|
-
Bucket?: string;
|
|
5371
|
+
Bucket?: string | undefined;
|
|
5372
5372
|
/**
|
|
5373
5373
|
* <p>The name of the Region.</p>
|
|
5374
5374
|
* @public
|
|
5375
5375
|
*/
|
|
5376
|
-
Region?: string;
|
|
5376
|
+
Region?: string | undefined;
|
|
5377
5377
|
/**
|
|
5378
5378
|
* <p>The Amazon Web Services account ID that owns the Amazon S3 bucket that's associated with this
|
|
5379
5379
|
* Multi-Region Access Point.</p>
|
|
5380
5380
|
* @public
|
|
5381
5381
|
*/
|
|
5382
|
-
BucketAccountId?: string;
|
|
5382
|
+
BucketAccountId?: string | undefined;
|
|
5383
5383
|
}
|
|
5384
5384
|
/**
|
|
5385
5385
|
* @public
|
|
@@ -5406,18 +5406,18 @@ export interface MultiRegionAccessPointReport {
|
|
|
5406
5406
|
* <p>The name of the Multi-Region Access Point.</p>
|
|
5407
5407
|
* @public
|
|
5408
5408
|
*/
|
|
5409
|
-
Name?: string;
|
|
5409
|
+
Name?: string | undefined;
|
|
5410
5410
|
/**
|
|
5411
5411
|
* <p>The alias for the Multi-Region Access Point. For more information about the distinction between the name
|
|
5412
5412
|
* and the alias of an Multi-Region Access Point, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/CreatingMultiRegionAccessPoints.html#multi-region-access-point-naming">Rules for naming Amazon S3 Multi-Region Access Points</a>.</p>
|
|
5413
5413
|
* @public
|
|
5414
5414
|
*/
|
|
5415
|
-
Alias?: string;
|
|
5415
|
+
Alias?: string | undefined;
|
|
5416
5416
|
/**
|
|
5417
5417
|
* <p>When the Multi-Region Access Point create request was received.</p>
|
|
5418
5418
|
* @public
|
|
5419
5419
|
*/
|
|
5420
|
-
CreatedAt?: Date;
|
|
5420
|
+
CreatedAt?: Date | undefined;
|
|
5421
5421
|
/**
|
|
5422
5422
|
* <p>The <code>PublicAccessBlock</code> configuration that you want to apply to this Amazon S3
|
|
5423
5423
|
* account. You can enable the configuration options in any combination. For more information
|
|
@@ -5425,7 +5425,7 @@ export interface MultiRegionAccessPointReport {
|
|
|
5425
5425
|
* <p>This data type is not supported for Amazon S3 on Outposts.</p>
|
|
5426
5426
|
* @public
|
|
5427
5427
|
*/
|
|
5428
|
-
PublicAccessBlock?: PublicAccessBlockConfiguration;
|
|
5428
|
+
PublicAccessBlock?: PublicAccessBlockConfiguration | undefined;
|
|
5429
5429
|
/**
|
|
5430
5430
|
* <p>The current status of the Multi-Region Access Point.</p>
|
|
5431
5431
|
* <p>
|
|
@@ -5436,12 +5436,12 @@ export interface MultiRegionAccessPointReport {
|
|
|
5436
5436
|
* request to finish the deletion of the Multi-Region Access Point.</p>
|
|
5437
5437
|
* @public
|
|
5438
5438
|
*/
|
|
5439
|
-
Status?: MultiRegionAccessPointStatus;
|
|
5439
|
+
Status?: MultiRegionAccessPointStatus | undefined;
|
|
5440
5440
|
/**
|
|
5441
5441
|
* <p>A collection of the Regions and buckets associated with the Multi-Region Access Point.</p>
|
|
5442
5442
|
* @public
|
|
5443
5443
|
*/
|
|
5444
|
-
Regions?: RegionReport[];
|
|
5444
|
+
Regions?: RegionReport[] | undefined;
|
|
5445
5445
|
}
|
|
5446
5446
|
/**
|
|
5447
5447
|
* @public
|
|
@@ -5451,7 +5451,7 @@ export interface GetMultiRegionAccessPointResult {
|
|
|
5451
5451
|
* <p>A container element containing the details of the requested Multi-Region Access Point.</p>
|
|
5452
5452
|
* @public
|
|
5453
5453
|
*/
|
|
5454
|
-
AccessPoint?: MultiRegionAccessPointReport;
|
|
5454
|
+
AccessPoint?: MultiRegionAccessPointReport | undefined;
|
|
5455
5455
|
}
|
|
5456
5456
|
/**
|
|
5457
5457
|
* @public
|
|
@@ -5461,7 +5461,7 @@ export interface GetMultiRegionAccessPointPolicyRequest {
|
|
|
5461
5461
|
* <p>The Amazon Web Services account ID for the owner of the Multi-Region Access Point.</p>
|
|
5462
5462
|
* @public
|
|
5463
5463
|
*/
|
|
5464
|
-
AccountId?: string;
|
|
5464
|
+
AccountId?: string | undefined;
|
|
5465
5465
|
/**
|
|
5466
5466
|
* <p>Specifies the Multi-Region Access Point. The name of the Multi-Region Access Point is different from the alias. For more
|
|
5467
5467
|
* information about the distinction between the name and the alias of an Multi-Region Access Point, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/CreatingMultiRegionAccessPoints.html#multi-region-access-point-naming">Rules for naming Amazon S3 Multi-Region Access Points</a> in the
|
|
@@ -5483,7 +5483,7 @@ export interface EstablishedMultiRegionAccessPointPolicy {
|
|
|
5483
5483
|
* <p>The details of the last established policy.</p>
|
|
5484
5484
|
* @public
|
|
5485
5485
|
*/
|
|
5486
|
-
Policy?: string;
|
|
5486
|
+
Policy?: string | undefined;
|
|
5487
5487
|
}
|
|
5488
5488
|
/**
|
|
5489
5489
|
* <p>The proposed access control policy for the Multi-Region Access Point.</p>
|
|
@@ -5498,7 +5498,7 @@ export interface ProposedMultiRegionAccessPointPolicy {
|
|
|
5498
5498
|
* <p>The details of the proposed policy.</p>
|
|
5499
5499
|
* @public
|
|
5500
5500
|
*/
|
|
5501
|
-
Policy?: string;
|
|
5501
|
+
Policy?: string | undefined;
|
|
5502
5502
|
}
|
|
5503
5503
|
/**
|
|
5504
5504
|
* <p>The Multi-Region Access Point access control policy.</p>
|
|
@@ -5513,12 +5513,12 @@ export interface MultiRegionAccessPointPolicyDocument {
|
|
|
5513
5513
|
* <p>The last established policy for the Multi-Region Access Point.</p>
|
|
5514
5514
|
* @public
|
|
5515
5515
|
*/
|
|
5516
|
-
Established?: EstablishedMultiRegionAccessPointPolicy;
|
|
5516
|
+
Established?: EstablishedMultiRegionAccessPointPolicy | undefined;
|
|
5517
5517
|
/**
|
|
5518
5518
|
* <p>The proposed policy for the Multi-Region Access Point.</p>
|
|
5519
5519
|
* @public
|
|
5520
5520
|
*/
|
|
5521
|
-
Proposed?: ProposedMultiRegionAccessPointPolicy;
|
|
5521
|
+
Proposed?: ProposedMultiRegionAccessPointPolicy | undefined;
|
|
5522
5522
|
}
|
|
5523
5523
|
/**
|
|
5524
5524
|
* @public
|
|
@@ -5528,7 +5528,7 @@ export interface GetMultiRegionAccessPointPolicyResult {
|
|
|
5528
5528
|
* <p>The policy associated with the specified Multi-Region Access Point.</p>
|
|
5529
5529
|
* @public
|
|
5530
5530
|
*/
|
|
5531
|
-
Policy?: MultiRegionAccessPointPolicyDocument;
|
|
5531
|
+
Policy?: MultiRegionAccessPointPolicyDocument | undefined;
|
|
5532
5532
|
}
|
|
5533
5533
|
/**
|
|
5534
5534
|
* @public
|
|
@@ -5538,7 +5538,7 @@ export interface GetMultiRegionAccessPointPolicyStatusRequest {
|
|
|
5538
5538
|
* <p>The Amazon Web Services account ID for the owner of the Multi-Region Access Point.</p>
|
|
5539
5539
|
* @public
|
|
5540
5540
|
*/
|
|
5541
|
-
AccountId?: string;
|
|
5541
|
+
AccountId?: string | undefined;
|
|
5542
5542
|
/**
|
|
5543
5543
|
* <p>Specifies the Multi-Region Access Point. The name of the Multi-Region Access Point is different from the alias. For more
|
|
5544
5544
|
* information about the distinction between the name and the alias of an Multi-Region Access Point, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/CreatingMultiRegionAccessPoints.html#multi-region-access-point-naming">Rules for naming Amazon S3 Multi-Region Access Points</a> in the
|
|
@@ -5556,7 +5556,7 @@ export interface GetMultiRegionAccessPointPolicyStatusResult {
|
|
|
5556
5556
|
* evaluates policies to determine whether they are public, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status">The Meaning of "Public"</a> in the <i>Amazon S3 User Guide</i>. </p>
|
|
5557
5557
|
* @public
|
|
5558
5558
|
*/
|
|
5559
|
-
Established?: PolicyStatus;
|
|
5559
|
+
Established?: PolicyStatus | undefined;
|
|
5560
5560
|
}
|
|
5561
5561
|
/**
|
|
5562
5562
|
* @public
|
|
@@ -5566,7 +5566,7 @@ export interface GetMultiRegionAccessPointRoutesRequest {
|
|
|
5566
5566
|
* <p>The Amazon Web Services account ID for the owner of the Multi-Region Access Point.</p>
|
|
5567
5567
|
* @public
|
|
5568
5568
|
*/
|
|
5569
|
-
AccountId?: string;
|
|
5569
|
+
AccountId?: string | undefined;
|
|
5570
5570
|
/**
|
|
5571
5571
|
* <p>The Multi-Region Access Point ARN.</p>
|
|
5572
5572
|
* @public
|
|
@@ -5590,14 +5590,14 @@ export interface MultiRegionAccessPointRoute {
|
|
|
5590
5590
|
* are provided, the bucket must be in the specified Region.</p>
|
|
5591
5591
|
* @public
|
|
5592
5592
|
*/
|
|
5593
|
-
Bucket?: string;
|
|
5593
|
+
Bucket?: string | undefined;
|
|
5594
5594
|
/**
|
|
5595
5595
|
* <p>The Amazon Web Services Region to which you'll be submitting a routing configuration change. Either
|
|
5596
5596
|
* the <code>Bucket</code> or the <code>Region</code> value must be provided. If both are
|
|
5597
5597
|
* provided, the bucket must be in the specified Region.</p>
|
|
5598
5598
|
* @public
|
|
5599
5599
|
*/
|
|
5600
|
-
Region?: string;
|
|
5600
|
+
Region?: string | undefined;
|
|
5601
5601
|
/**
|
|
5602
5602
|
* <p>The traffic state for the specified bucket or Amazon Web Services Region. </p>
|
|
5603
5603
|
* <p>A value of <code>0</code> indicates a passive state, which means that no new traffic
|
|
@@ -5621,13 +5621,13 @@ export interface GetMultiRegionAccessPointRoutesResult {
|
|
|
5621
5621
|
* <p>The Multi-Region Access Point ARN.</p>
|
|
5622
5622
|
* @public
|
|
5623
5623
|
*/
|
|
5624
|
-
Mrap?: string;
|
|
5624
|
+
Mrap?: string | undefined;
|
|
5625
5625
|
/**
|
|
5626
5626
|
* <p>The different routes that make up the route configuration. Active routes return a value
|
|
5627
5627
|
* of <code>100</code>, and passive routes return a value of <code>0</code>.</p>
|
|
5628
5628
|
* @public
|
|
5629
5629
|
*/
|
|
5630
|
-
Routes?: MultiRegionAccessPointRoute[];
|
|
5630
|
+
Routes?: MultiRegionAccessPointRoute[] | undefined;
|
|
5631
5631
|
}
|
|
5632
5632
|
/**
|
|
5633
5633
|
* @public
|
|
@@ -5638,7 +5638,7 @@ export interface GetPublicAccessBlockOutput {
|
|
|
5638
5638
|
* Amazon Web Services account.</p>
|
|
5639
5639
|
* @public
|
|
5640
5640
|
*/
|
|
5641
|
-
PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
|
|
5641
|
+
PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration | undefined;
|
|
5642
5642
|
}
|
|
5643
5643
|
/**
|
|
5644
5644
|
* @public
|
|
@@ -5649,7 +5649,7 @@ export interface GetPublicAccessBlockRequest {
|
|
|
5649
5649
|
* you want to retrieve.</p>
|
|
5650
5650
|
* @public
|
|
5651
5651
|
*/
|
|
5652
|
-
AccountId?: string;
|
|
5652
|
+
AccountId?: string | undefined;
|
|
5653
5653
|
}
|
|
5654
5654
|
/**
|
|
5655
5655
|
* <p>Amazon S3 throws this exception if you make a <code>GetPublicAccessBlock</code> request
|
|
@@ -5660,7 +5660,7 @@ export interface GetPublicAccessBlockRequest {
|
|
|
5660
5660
|
export declare class NoSuchPublicAccessBlockConfiguration extends __BaseException {
|
|
5661
5661
|
readonly name: "NoSuchPublicAccessBlockConfiguration";
|
|
5662
5662
|
readonly $fault: "client";
|
|
5663
|
-
Message?: string;
|
|
5663
|
+
Message?: string | undefined;
|
|
5664
5664
|
/**
|
|
5665
5665
|
* @internal
|
|
5666
5666
|
*/
|
|
@@ -5679,7 +5679,7 @@ export interface GetStorageLensConfigurationRequest {
|
|
|
5679
5679
|
* <p>The account ID of the requester.</p>
|
|
5680
5680
|
* @public
|
|
5681
5681
|
*/
|
|
5682
|
-
AccountId?: string;
|
|
5682
|
+
AccountId?: string | undefined;
|
|
5683
5683
|
}
|
|
5684
5684
|
/**
|
|
5685
5685
|
* <p>The Amazon Web Services organization for your S3 Storage Lens.</p>
|
|
@@ -5741,12 +5741,12 @@ export interface StorageLensDataExportEncryption {
|
|
|
5741
5741
|
* <p></p>
|
|
5742
5742
|
* @public
|
|
5743
5743
|
*/
|
|
5744
|
-
SSES3?: SSES3;
|
|
5744
|
+
SSES3?: SSES3 | undefined;
|
|
5745
5745
|
/**
|
|
5746
5746
|
* <p></p>
|
|
5747
5747
|
* @public
|
|
5748
5748
|
*/
|
|
5749
|
-
SSEKMS?: SSEKMS;
|
|
5749
|
+
SSEKMS?: SSEKMS | undefined;
|
|
5750
5750
|
}
|
|
5751
5751
|
/**
|
|
5752
5752
|
* @public
|
|
@@ -5791,7 +5791,7 @@ export interface S3BucketDestination {
|
|
|
5791
5791
|
* <p>The account ID of the owner of the S3 Storage Lens metrics export bucket.</p>
|
|
5792
5792
|
* @public
|
|
5793
5793
|
*/
|
|
5794
|
-
AccountId?: string;
|
|
5794
|
+
AccountId?: string | undefined;
|
|
5795
5795
|
/**
|
|
5796
5796
|
* <p>The Amazon Resource Name (ARN) of the bucket. This property is read-only and follows the
|
|
5797
5797
|
* following format: <code>
|
|
@@ -5805,12 +5805,12 @@ export interface S3BucketDestination {
|
|
|
5805
5805
|
* <p>The prefix of the destination bucket where the metrics export will be delivered.</p>
|
|
5806
5806
|
* @public
|
|
5807
5807
|
*/
|
|
5808
|
-
Prefix?: string;
|
|
5808
|
+
Prefix?: string | undefined;
|
|
5809
5809
|
/**
|
|
5810
5810
|
* <p>The container for the type encryption of the metrics exports in this bucket.</p>
|
|
5811
5811
|
* @public
|
|
5812
5812
|
*/
|
|
5813
|
-
Encryption?: StorageLensDataExportEncryption;
|
|
5813
|
+
Encryption?: StorageLensDataExportEncryption | undefined;
|
|
5814
5814
|
}
|
|
5815
5815
|
/**
|
|
5816
5816
|
* <p>A container to specify the properties of your S3 Storage Lens metrics export, including the
|
|
@@ -5826,12 +5826,12 @@ export interface StorageLensDataExport {
|
|
|
5826
5826
|
* </note>
|
|
5827
5827
|
* @public
|
|
5828
5828
|
*/
|
|
5829
|
-
S3BucketDestination?: S3BucketDestination;
|
|
5829
|
+
S3BucketDestination?: S3BucketDestination | undefined;
|
|
5830
5830
|
/**
|
|
5831
5831
|
* <p>A container for enabling Amazon CloudWatch publishing for S3 Storage Lens metrics.</p>
|
|
5832
5832
|
* @public
|
|
5833
5833
|
*/
|
|
5834
|
-
CloudWatchMetrics?: CloudWatchMetrics;
|
|
5834
|
+
CloudWatchMetrics?: CloudWatchMetrics | undefined;
|
|
5835
5835
|
}
|
|
5836
5836
|
/**
|
|
5837
5837
|
* <p>A container for what Amazon S3 Storage Lens will exclude.</p>
|
|
@@ -5842,12 +5842,12 @@ export interface _Exclude {
|
|
|
5842
5842
|
* <p>A container for the S3 Storage Lens bucket excludes.</p>
|
|
5843
5843
|
* @public
|
|
5844
5844
|
*/
|
|
5845
|
-
Buckets?: string[];
|
|
5845
|
+
Buckets?: string[] | undefined;
|
|
5846
5846
|
/**
|
|
5847
5847
|
* <p>A container for the S3 Storage Lens Region excludes.</p>
|
|
5848
5848
|
* @public
|
|
5849
5849
|
*/
|
|
5850
|
-
Regions?: string[];
|
|
5850
|
+
Regions?: string[] | undefined;
|
|
5851
5851
|
}
|
|
5852
5852
|
/**
|
|
5853
5853
|
* <p>A container for what Amazon S3 Storage Lens configuration includes.</p>
|
|
@@ -5858,12 +5858,12 @@ export interface Include {
|
|
|
5858
5858
|
* <p>A container for the S3 Storage Lens bucket includes.</p>
|
|
5859
5859
|
* @public
|
|
5860
5860
|
*/
|
|
5861
|
-
Buckets?: string[];
|
|
5861
|
+
Buckets?: string[] | undefined;
|
|
5862
5862
|
/**
|
|
5863
5863
|
* <p>A container for the S3 Storage Lens Region includes.</p>
|
|
5864
5864
|
* @public
|
|
5865
5865
|
*/
|
|
5866
|
-
Regions?: string[];
|
|
5866
|
+
Regions?: string[] | undefined;
|
|
5867
5867
|
}
|
|
5868
5868
|
/**
|
|
5869
5869
|
* <p>A container for the Amazon S3 Storage Lens configuration.</p>
|
|
@@ -5886,19 +5886,19 @@ export interface StorageLensConfiguration {
|
|
|
5886
5886
|
* if there is no <code>Exclude</code> container submitted, and it's not empty. </p>
|
|
5887
5887
|
* @public
|
|
5888
5888
|
*/
|
|
5889
|
-
Include?: Include;
|
|
5889
|
+
Include?: Include | undefined;
|
|
5890
5890
|
/**
|
|
5891
5891
|
* <p>A container for what is excluded in this configuration. This container can only be valid
|
|
5892
5892
|
* if there is no <code>Include</code> container submitted, and it's not empty. </p>
|
|
5893
5893
|
* @public
|
|
5894
5894
|
*/
|
|
5895
|
-
Exclude?: _Exclude;
|
|
5895
|
+
Exclude?: _Exclude | undefined;
|
|
5896
5896
|
/**
|
|
5897
5897
|
* <p>A container to specify the properties of your S3 Storage Lens metrics export including, the
|
|
5898
5898
|
* destination, schema and format.</p>
|
|
5899
5899
|
* @public
|
|
5900
5900
|
*/
|
|
5901
|
-
DataExport?: StorageLensDataExport;
|
|
5901
|
+
DataExport?: StorageLensDataExport | undefined;
|
|
5902
5902
|
/**
|
|
5903
5903
|
* <p>A container for whether the S3 Storage Lens configuration is enabled.</p>
|
|
5904
5904
|
* @public
|
|
@@ -5908,7 +5908,7 @@ export interface StorageLensConfiguration {
|
|
|
5908
5908
|
* <p>A container for the Amazon Web Services organization for this S3 Storage Lens configuration.</p>
|
|
5909
5909
|
* @public
|
|
5910
5910
|
*/
|
|
5911
|
-
AwsOrg?: StorageLensAwsOrg;
|
|
5911
|
+
AwsOrg?: StorageLensAwsOrg | undefined;
|
|
5912
5912
|
/**
|
|
5913
5913
|
* <p>The Amazon Resource Name (ARN) of the S3 Storage Lens configuration. This property is read-only
|
|
5914
5914
|
* and follows the following format: <code>
|
|
@@ -5917,7 +5917,7 @@ export interface StorageLensConfiguration {
|
|
|
5917
5917
|
* </p>
|
|
5918
5918
|
* @public
|
|
5919
5919
|
*/
|
|
5920
|
-
StorageLensArn?: string;
|
|
5920
|
+
StorageLensArn?: string | undefined;
|
|
5921
5921
|
}
|
|
5922
5922
|
/**
|
|
5923
5923
|
* @public
|
|
@@ -5927,7 +5927,7 @@ export interface GetStorageLensConfigurationResult {
|
|
|
5927
5927
|
* <p>The S3 Storage Lens configuration requested.</p>
|
|
5928
5928
|
* @public
|
|
5929
5929
|
*/
|
|
5930
|
-
StorageLensConfiguration?: StorageLensConfiguration;
|
|
5930
|
+
StorageLensConfiguration?: StorageLensConfiguration | undefined;
|
|
5931
5931
|
}
|
|
5932
5932
|
/**
|
|
5933
5933
|
* @public
|
|
@@ -5942,7 +5942,7 @@ export interface GetStorageLensConfigurationTaggingRequest {
|
|
|
5942
5942
|
* <p>The account ID of the requester.</p>
|
|
5943
5943
|
* @public
|
|
5944
5944
|
*/
|
|
5945
|
-
AccountId?: string;
|
|
5945
|
+
AccountId?: string | undefined;
|
|
5946
5946
|
}
|
|
5947
5947
|
/**
|
|
5948
5948
|
* <p></p>
|
|
@@ -5968,7 +5968,7 @@ export interface GetStorageLensConfigurationTaggingResult {
|
|
|
5968
5968
|
* <p>The tags of S3 Storage Lens configuration requested.</p>
|
|
5969
5969
|
* @public
|
|
5970
5970
|
*/
|
|
5971
|
-
Tags?: StorageLensTag[];
|
|
5971
|
+
Tags?: StorageLensTag[] | undefined;
|
|
5972
5972
|
}
|
|
5973
5973
|
/**
|
|
5974
5974
|
* @public
|
|
@@ -5987,7 +5987,7 @@ export interface GetStorageLensGroupRequest {
|
|
|
5987
5987
|
* </p>
|
|
5988
5988
|
* @public
|
|
5989
5989
|
*/
|
|
5990
|
-
AccountId?: string;
|
|
5990
|
+
AccountId?: string | undefined;
|
|
5991
5991
|
}
|
|
5992
5992
|
/**
|
|
5993
5993
|
* @public
|
|
@@ -5999,7 +5999,7 @@ export interface GetStorageLensGroupResult {
|
|
|
5999
5999
|
* </p>
|
|
6000
6000
|
* @public
|
|
6001
6001
|
*/
|
|
6002
|
-
StorageLensGroup?: StorageLensGroup;
|
|
6002
|
+
StorageLensGroup?: StorageLensGroup | undefined;
|
|
6003
6003
|
}
|
|
6004
6004
|
/**
|
|
6005
6005
|
* @public
|
|
@@ -6009,17 +6009,17 @@ export interface ListAccessGrantsRequest {
|
|
|
6009
6009
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
6010
6010
|
* @public
|
|
6011
6011
|
*/
|
|
6012
|
-
AccountId?: string;
|
|
6012
|
+
AccountId?: string | undefined;
|
|
6013
6013
|
/**
|
|
6014
6014
|
* <p>A pagination token to request the next page of results. Pass this value into a subsequent <code>List Access Grants</code> request in order to retrieve the next page of results.</p>
|
|
6015
6015
|
* @public
|
|
6016
6016
|
*/
|
|
6017
|
-
NextToken?: string;
|
|
6017
|
+
NextToken?: string | undefined;
|
|
6018
6018
|
/**
|
|
6019
6019
|
* <p>The maximum number of access grants that you would like returned in the <code>List Access Grants</code> response. If the results include the pagination token <code>NextToken</code>, make another call using the <code>NextToken</code> to determine if there are more results.</p>
|
|
6020
6020
|
* @public
|
|
6021
6021
|
*/
|
|
6022
|
-
MaxResults?: number;
|
|
6022
|
+
MaxResults?: number | undefined;
|
|
6023
6023
|
/**
|
|
6024
6024
|
* <p>The type of the grantee to which access has been granted. It can be one of the following values:</p>
|
|
6025
6025
|
* <ul>
|
|
@@ -6038,12 +6038,12 @@ export interface ListAccessGrantsRequest {
|
|
|
6038
6038
|
* </ul>
|
|
6039
6039
|
* @public
|
|
6040
6040
|
*/
|
|
6041
|
-
GranteeType?: GranteeType;
|
|
6041
|
+
GranteeType?: GranteeType | undefined;
|
|
6042
6042
|
/**
|
|
6043
6043
|
* <p>The unique identifer of the <code>Grantee</code>. If the grantee type is <code>IAM</code>, the identifier is the IAM Amazon Resource Name (ARN) of the user or role. If the grantee type is a directory user or group, the identifier is 128-bit universally unique identifier (UUID) in the format <code>a1b2c3d4-5678-90ab-cdef-EXAMPLE11111</code>. You can obtain this UUID from your Amazon Web Services IAM Identity Center instance.</p>
|
|
6044
6044
|
* @public
|
|
6045
6045
|
*/
|
|
6046
|
-
GranteeIdentifier?: string;
|
|
6046
|
+
GranteeIdentifier?: string | undefined;
|
|
6047
6047
|
/**
|
|
6048
6048
|
* <p>The type of permission granted to your S3 data, which can be set to one of the following values:</p>
|
|
6049
6049
|
* <ul>
|
|
@@ -6062,17 +6062,17 @@ export interface ListAccessGrantsRequest {
|
|
|
6062
6062
|
* </ul>
|
|
6063
6063
|
* @public
|
|
6064
6064
|
*/
|
|
6065
|
-
Permission?: Permission;
|
|
6065
|
+
Permission?: Permission | undefined;
|
|
6066
6066
|
/**
|
|
6067
6067
|
* <p>The S3 path of the data to which you are granting access. It is the result of appending the <code>Subprefix</code> to the location scope.</p>
|
|
6068
6068
|
* @public
|
|
6069
6069
|
*/
|
|
6070
|
-
GrantScope?: string;
|
|
6070
|
+
GrantScope?: string | undefined;
|
|
6071
6071
|
/**
|
|
6072
6072
|
* <p>The Amazon Resource Name (ARN) of an Amazon Web Services IAM Identity Center application associated with your Identity Center instance. If the grant includes an application ARN, the grantee can only access the S3 data through this application. </p>
|
|
6073
6073
|
* @public
|
|
6074
6074
|
*/
|
|
6075
|
-
ApplicationArn?: string;
|
|
6075
|
+
ApplicationArn?: string | undefined;
|
|
6076
6076
|
}
|
|
6077
6077
|
/**
|
|
6078
6078
|
* @public
|
|
@@ -6082,12 +6082,12 @@ export interface ListAccessGrantsResult {
|
|
|
6082
6082
|
* <p>A pagination token to request the next page of results. Pass this value into a subsequent <code>List Access Grants</code> request in order to retrieve the next page of results.</p>
|
|
6083
6083
|
* @public
|
|
6084
6084
|
*/
|
|
6085
|
-
NextToken?: string;
|
|
6085
|
+
NextToken?: string | undefined;
|
|
6086
6086
|
/**
|
|
6087
6087
|
* <p>A container for a list of grants in an S3 Access Grants instance.</p>
|
|
6088
6088
|
* @public
|
|
6089
6089
|
*/
|
|
6090
|
-
AccessGrantsList?: ListAccessGrantEntry[];
|
|
6090
|
+
AccessGrantsList?: ListAccessGrantEntry[] | undefined;
|
|
6091
6091
|
}
|
|
6092
6092
|
/**
|
|
6093
6093
|
* @public
|
|
@@ -6097,17 +6097,17 @@ export interface ListAccessGrantsInstancesRequest {
|
|
|
6097
6097
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
6098
6098
|
* @public
|
|
6099
6099
|
*/
|
|
6100
|
-
AccountId?: string;
|
|
6100
|
+
AccountId?: string | undefined;
|
|
6101
6101
|
/**
|
|
6102
6102
|
* <p>A pagination token to request the next page of results. Pass this value into a subsequent <code>List Access Grants Instances</code> request in order to retrieve the next page of results.</p>
|
|
6103
6103
|
* @public
|
|
6104
6104
|
*/
|
|
6105
|
-
NextToken?: string;
|
|
6105
|
+
NextToken?: string | undefined;
|
|
6106
6106
|
/**
|
|
6107
6107
|
* <p>The maximum number of access grants that you would like returned in the <code>List Access Grants</code> response. If the results include the pagination token <code>NextToken</code>, make another call using the <code>NextToken</code> to determine if there are more results.</p>
|
|
6108
6108
|
* @public
|
|
6109
6109
|
*/
|
|
6110
|
-
MaxResults?: number;
|
|
6110
|
+
MaxResults?: number | undefined;
|
|
6111
6111
|
}
|
|
6112
6112
|
/**
|
|
6113
6113
|
* @public
|
|
@@ -6117,12 +6117,12 @@ export interface ListAccessGrantsInstancesResult {
|
|
|
6117
6117
|
* <p>A pagination token to request the next page of results. Pass this value into a subsequent <code>List Access Grants Instances</code> request in order to retrieve the next page of results.</p>
|
|
6118
6118
|
* @public
|
|
6119
6119
|
*/
|
|
6120
|
-
NextToken?: string;
|
|
6120
|
+
NextToken?: string | undefined;
|
|
6121
6121
|
/**
|
|
6122
6122
|
* <p>A container for a list of S3 Access Grants instances.</p>
|
|
6123
6123
|
* @public
|
|
6124
6124
|
*/
|
|
6125
|
-
AccessGrantsInstancesList?: ListAccessGrantsInstanceEntry[];
|
|
6125
|
+
AccessGrantsInstancesList?: ListAccessGrantsInstanceEntry[] | undefined;
|
|
6126
6126
|
}
|
|
6127
6127
|
/**
|
|
6128
6128
|
* @public
|
|
@@ -6132,22 +6132,22 @@ export interface ListAccessGrantsLocationsRequest {
|
|
|
6132
6132
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
6133
6133
|
* @public
|
|
6134
6134
|
*/
|
|
6135
|
-
AccountId?: string;
|
|
6135
|
+
AccountId?: string | undefined;
|
|
6136
6136
|
/**
|
|
6137
6137
|
* <p>A pagination token to request the next page of results. Pass this value into a subsequent <code>List Access Grants Locations</code> request in order to retrieve the next page of results.</p>
|
|
6138
6138
|
* @public
|
|
6139
6139
|
*/
|
|
6140
|
-
NextToken?: string;
|
|
6140
|
+
NextToken?: string | undefined;
|
|
6141
6141
|
/**
|
|
6142
6142
|
* <p>The maximum number of access grants that you would like returned in the <code>List Access Grants</code> response. If the results include the pagination token <code>NextToken</code>, make another call using the <code>NextToken</code> to determine if there are more results.</p>
|
|
6143
6143
|
* @public
|
|
6144
6144
|
*/
|
|
6145
|
-
MaxResults?: number;
|
|
6145
|
+
MaxResults?: number | undefined;
|
|
6146
6146
|
/**
|
|
6147
6147
|
* <p>The S3 path to the location that you are registering. The location scope can be the default S3 location <code>s3://</code>, the S3 path to a bucket <code>s3://<bucket></code>, or the S3 path to a bucket and prefix <code>s3://<bucket>/<prefix></code>. A prefix in S3 is a string of characters at the beginning of an object key name used to organize the objects that you store in your S3 buckets. For example, object key names that start with the <code>engineering/</code> prefix or object key names that start with the <code>marketing/campaigns/</code> prefix.</p>
|
|
6148
6148
|
* @public
|
|
6149
6149
|
*/
|
|
6150
|
-
LocationScope?: string;
|
|
6150
|
+
LocationScope?: string | undefined;
|
|
6151
6151
|
}
|
|
6152
6152
|
/**
|
|
6153
6153
|
* @public
|
|
@@ -6157,12 +6157,12 @@ export interface ListAccessGrantsLocationsResult {
|
|
|
6157
6157
|
* <p>A pagination token to request the next page of results. Pass this value into a subsequent <code>List Access Grants Locations</code> request in order to retrieve the next page of results.</p>
|
|
6158
6158
|
* @public
|
|
6159
6159
|
*/
|
|
6160
|
-
NextToken?: string;
|
|
6160
|
+
NextToken?: string | undefined;
|
|
6161
6161
|
/**
|
|
6162
6162
|
* <p>A container for a list of registered locations in an S3 Access Grants instance.</p>
|
|
6163
6163
|
* @public
|
|
6164
6164
|
*/
|
|
6165
|
-
AccessGrantsLocationsList?: ListAccessGrantsLocationsEntry[];
|
|
6165
|
+
AccessGrantsLocationsList?: ListAccessGrantsLocationsEntry[] | undefined;
|
|
6166
6166
|
}
|
|
6167
6167
|
/**
|
|
6168
6168
|
* @public
|
|
@@ -6172,21 +6172,21 @@ export interface ListAccessPointsRequest {
|
|
|
6172
6172
|
* <p>The Amazon Web Services account ID for the account that owns the specified access points.</p>
|
|
6173
6173
|
* @public
|
|
6174
6174
|
*/
|
|
6175
|
-
AccountId?: string;
|
|
6175
|
+
AccountId?: string | undefined;
|
|
6176
6176
|
/**
|
|
6177
6177
|
* <p>The name of the bucket whose associated access points you want to list.</p>
|
|
6178
6178
|
* <p>For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.</p>
|
|
6179
6179
|
* <p>For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format <code>arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name></code>. For example, to access the bucket <code>reports</code> through Outpost <code>my-outpost</code> owned by account <code>123456789012</code> in Region <code>us-west-2</code>, use the URL encoding of <code>arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports</code>. The value must be URL encoded. </p>
|
|
6180
6180
|
* @public
|
|
6181
6181
|
*/
|
|
6182
|
-
Bucket?: string;
|
|
6182
|
+
Bucket?: string | undefined;
|
|
6183
6183
|
/**
|
|
6184
6184
|
* <p>A continuation token. If a previous call to <code>ListAccessPoints</code> returned a
|
|
6185
6185
|
* continuation token in the <code>NextToken</code> field, then providing that value here
|
|
6186
6186
|
* causes Amazon S3 to retrieve the next page of results.</p>
|
|
6187
6187
|
* @public
|
|
6188
6188
|
*/
|
|
6189
|
-
NextToken?: string;
|
|
6189
|
+
NextToken?: string | undefined;
|
|
6190
6190
|
/**
|
|
6191
6191
|
* <p>The maximum number of access points that you want to include in the list. If the specified
|
|
6192
6192
|
* bucket has more than this number of access points, then the response will include a continuation
|
|
@@ -6194,7 +6194,7 @@ export interface ListAccessPointsRequest {
|
|
|
6194
6194
|
* access points.</p>
|
|
6195
6195
|
* @public
|
|
6196
6196
|
*/
|
|
6197
|
-
MaxResults?: number;
|
|
6197
|
+
MaxResults?: number | undefined;
|
|
6198
6198
|
}
|
|
6199
6199
|
/**
|
|
6200
6200
|
* @public
|
|
@@ -6205,14 +6205,14 @@ export interface ListAccessPointsResult {
|
|
|
6205
6205
|
* with the specified bucket.</p>
|
|
6206
6206
|
* @public
|
|
6207
6207
|
*/
|
|
6208
|
-
AccessPointList?: AccessPoint[];
|
|
6208
|
+
AccessPointList?: AccessPoint[] | undefined;
|
|
6209
6209
|
/**
|
|
6210
6210
|
* <p>If the specified bucket has more access points than can be returned in one call to this API,
|
|
6211
6211
|
* this field contains a continuation token that you can provide in subsequent calls to this
|
|
6212
6212
|
* API to retrieve additional access points.</p>
|
|
6213
6213
|
* @public
|
|
6214
6214
|
*/
|
|
6215
|
-
NextToken?: string;
|
|
6215
|
+
NextToken?: string | undefined;
|
|
6216
6216
|
}
|
|
6217
6217
|
/**
|
|
6218
6218
|
* @public
|
|
@@ -6222,14 +6222,14 @@ export interface ListAccessPointsForObjectLambdaRequest {
|
|
|
6222
6222
|
* <p>The account ID for the account that owns the specified Object Lambda Access Point.</p>
|
|
6223
6223
|
* @public
|
|
6224
6224
|
*/
|
|
6225
|
-
AccountId?: string;
|
|
6225
|
+
AccountId?: string | undefined;
|
|
6226
6226
|
/**
|
|
6227
6227
|
* <p>If the list has more access points than can be returned in one call to this API, this field
|
|
6228
6228
|
* contains a continuation token that you can provide in subsequent calls to this API to
|
|
6229
6229
|
* retrieve additional access points.</p>
|
|
6230
6230
|
* @public
|
|
6231
6231
|
*/
|
|
6232
|
-
NextToken?: string;
|
|
6232
|
+
NextToken?: string | undefined;
|
|
6233
6233
|
/**
|
|
6234
6234
|
* <p>The maximum number of access points that you want to include in the list. The response may
|
|
6235
6235
|
* contain fewer access points but will never contain more. If there are more than this number of
|
|
@@ -6237,7 +6237,7 @@ export interface ListAccessPointsForObjectLambdaRequest {
|
|
|
6237
6237
|
* field that you can use to retrieve the next page of access points.</p>
|
|
6238
6238
|
* @public
|
|
6239
6239
|
*/
|
|
6240
|
-
MaxResults?: number;
|
|
6240
|
+
MaxResults?: number | undefined;
|
|
6241
6241
|
}
|
|
6242
6242
|
/**
|
|
6243
6243
|
* <p>An access point with an attached Lambda function used to access transformed data from an Amazon S3
|
|
@@ -6254,12 +6254,12 @@ export interface ObjectLambdaAccessPoint {
|
|
|
6254
6254
|
* <p>Specifies the ARN for the Object Lambda Access Point.</p>
|
|
6255
6255
|
* @public
|
|
6256
6256
|
*/
|
|
6257
|
-
ObjectLambdaAccessPointArn?: string;
|
|
6257
|
+
ObjectLambdaAccessPointArn?: string | undefined;
|
|
6258
6258
|
/**
|
|
6259
6259
|
* <p>The alias of the Object Lambda Access Point.</p>
|
|
6260
6260
|
* @public
|
|
6261
6261
|
*/
|
|
6262
|
-
Alias?: ObjectLambdaAccessPointAlias;
|
|
6262
|
+
Alias?: ObjectLambdaAccessPointAlias | undefined;
|
|
6263
6263
|
}
|
|
6264
6264
|
/**
|
|
6265
6265
|
* @public
|
|
@@ -6269,14 +6269,14 @@ export interface ListAccessPointsForObjectLambdaResult {
|
|
|
6269
6269
|
* <p>Returns list of Object Lambda Access Points.</p>
|
|
6270
6270
|
* @public
|
|
6271
6271
|
*/
|
|
6272
|
-
ObjectLambdaAccessPointList?: ObjectLambdaAccessPoint[];
|
|
6272
|
+
ObjectLambdaAccessPointList?: ObjectLambdaAccessPoint[] | undefined;
|
|
6273
6273
|
/**
|
|
6274
6274
|
* <p>If the list has more access points than can be returned in one call to this API, this field
|
|
6275
6275
|
* contains a continuation token that you can provide in subsequent calls to this API to
|
|
6276
6276
|
* retrieve additional access points.</p>
|
|
6277
6277
|
* @public
|
|
6278
6278
|
*/
|
|
6279
|
-
NextToken?: string;
|
|
6279
|
+
NextToken?: string | undefined;
|
|
6280
6280
|
}
|
|
6281
6281
|
/**
|
|
6282
6282
|
* @public
|
|
@@ -6286,27 +6286,27 @@ export interface ListCallerAccessGrantsRequest {
|
|
|
6286
6286
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
6287
6287
|
* @public
|
|
6288
6288
|
*/
|
|
6289
|
-
AccountId?: string;
|
|
6289
|
+
AccountId?: string | undefined;
|
|
6290
6290
|
/**
|
|
6291
6291
|
* <p>The S3 path of the data that you would like to access. Must start with <code>s3://</code>. You can optionally pass only the beginning characters of a path, and S3 Access Grants will search for all applicable grants for the path fragment. </p>
|
|
6292
6292
|
* @public
|
|
6293
6293
|
*/
|
|
6294
|
-
GrantScope?: string;
|
|
6294
|
+
GrantScope?: string | undefined;
|
|
6295
6295
|
/**
|
|
6296
6296
|
* <p>A pagination token to request the next page of results. Pass this value into a subsequent <code>List Caller Access Grants</code> request in order to retrieve the next page of results.</p>
|
|
6297
6297
|
* @public
|
|
6298
6298
|
*/
|
|
6299
|
-
NextToken?: string;
|
|
6299
|
+
NextToken?: string | undefined;
|
|
6300
6300
|
/**
|
|
6301
6301
|
* <p>The maximum number of access grants that you would like returned in the <code>List Caller Access Grants</code> response. If the results include the pagination token <code>NextToken</code>, make another call using the <code>NextToken</code> to determine if there are more results.</p>
|
|
6302
6302
|
* @public
|
|
6303
6303
|
*/
|
|
6304
|
-
MaxResults?: number;
|
|
6304
|
+
MaxResults?: number | undefined;
|
|
6305
6305
|
/**
|
|
6306
6306
|
* <p>If this optional parameter is passed in the request, a filter is applied to the results. The results will include only the access grants for the caller's Identity Center application or for any other applications (<code>ALL</code>).</p>
|
|
6307
6307
|
* @public
|
|
6308
6308
|
*/
|
|
6309
|
-
AllowedByApplication?: boolean;
|
|
6309
|
+
AllowedByApplication?: boolean | undefined;
|
|
6310
6310
|
}
|
|
6311
6311
|
/**
|
|
6312
6312
|
* <p>Part of <code>ListCallerAccessGrantsResult</code>. Each entry includes the
|
|
@@ -6332,17 +6332,17 @@ export interface ListCallerAccessGrantsEntry {
|
|
|
6332
6332
|
* </ul>
|
|
6333
6333
|
* @public
|
|
6334
6334
|
*/
|
|
6335
|
-
Permission?: Permission;
|
|
6335
|
+
Permission?: Permission | undefined;
|
|
6336
6336
|
/**
|
|
6337
6337
|
* <p>The S3 path of the data to which you have been granted access. </p>
|
|
6338
6338
|
* @public
|
|
6339
6339
|
*/
|
|
6340
|
-
GrantScope?: string;
|
|
6340
|
+
GrantScope?: string | undefined;
|
|
6341
6341
|
/**
|
|
6342
6342
|
* <p>The Amazon Resource Name (ARN) of an Amazon Web Services IAM Identity Center application associated with your Identity Center instance. If the grant includes an application ARN, the grantee can only access the S3 data through this application. </p>
|
|
6343
6343
|
* @public
|
|
6344
6344
|
*/
|
|
6345
|
-
ApplicationArn?: string;
|
|
6345
|
+
ApplicationArn?: string | undefined;
|
|
6346
6346
|
}
|
|
6347
6347
|
/**
|
|
6348
6348
|
* @public
|
|
@@ -6352,12 +6352,12 @@ export interface ListCallerAccessGrantsResult {
|
|
|
6352
6352
|
* <p>A pagination token that you can use to request the next page of results. Pass this value into a subsequent <code>List Caller Access Grants</code> request in order to retrieve the next page of results.</p>
|
|
6353
6353
|
* @public
|
|
6354
6354
|
*/
|
|
6355
|
-
NextToken?: string;
|
|
6355
|
+
NextToken?: string | undefined;
|
|
6356
6356
|
/**
|
|
6357
6357
|
* <p>A list of the caller's access grants that were created using S3 Access Grants and that grant the caller access to the S3 data of the Amazon Web Services account ID that was specified in the request. </p>
|
|
6358
6358
|
* @public
|
|
6359
6359
|
*/
|
|
6360
|
-
CallerAccessGrantsList?: ListCallerAccessGrantsEntry[];
|
|
6360
|
+
CallerAccessGrantsList?: ListCallerAccessGrantsEntry[] | undefined;
|
|
6361
6361
|
}
|
|
6362
6362
|
/**
|
|
6363
6363
|
* <p></p>
|
|
@@ -6366,7 +6366,7 @@ export interface ListCallerAccessGrantsResult {
|
|
|
6366
6366
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
6367
6367
|
readonly name: "InvalidNextTokenException";
|
|
6368
6368
|
readonly $fault: "client";
|
|
6369
|
-
Message?: string;
|
|
6369
|
+
Message?: string | undefined;
|
|
6370
6370
|
/**
|
|
6371
6371
|
* @internal
|
|
6372
6372
|
*/
|
|
@@ -6379,7 +6379,7 @@ export declare class InvalidNextTokenException extends __BaseException {
|
|
|
6379
6379
|
export declare class InvalidRequestException extends __BaseException {
|
|
6380
6380
|
readonly name: "InvalidRequestException";
|
|
6381
6381
|
readonly $fault: "client";
|
|
6382
|
-
Message?: string;
|
|
6382
|
+
Message?: string | undefined;
|
|
6383
6383
|
/**
|
|
6384
6384
|
* @internal
|
|
6385
6385
|
*/
|
|
@@ -6393,20 +6393,20 @@ export interface ListJobsRequest {
|
|
|
6393
6393
|
* <p>The Amazon Web Services account ID associated with the S3 Batch Operations job.</p>
|
|
6394
6394
|
* @public
|
|
6395
6395
|
*/
|
|
6396
|
-
AccountId?: string;
|
|
6396
|
+
AccountId?: string | undefined;
|
|
6397
6397
|
/**
|
|
6398
6398
|
* <p>The <code>List Jobs</code> request returns jobs that match the statuses listed in this
|
|
6399
6399
|
* element.</p>
|
|
6400
6400
|
* @public
|
|
6401
6401
|
*/
|
|
6402
|
-
JobStatuses?: JobStatus[];
|
|
6402
|
+
JobStatuses?: JobStatus[] | undefined;
|
|
6403
6403
|
/**
|
|
6404
6404
|
* <p>A pagination token to request the next page of results. Use the token that Amazon S3 returned
|
|
6405
6405
|
* in the <code>NextToken</code> element of the <code>ListJobsResult</code> from the previous
|
|
6406
6406
|
* <code>List Jobs</code> request.</p>
|
|
6407
6407
|
* @public
|
|
6408
6408
|
*/
|
|
6409
|
-
NextToken?: string;
|
|
6409
|
+
NextToken?: string | undefined;
|
|
6410
6410
|
/**
|
|
6411
6411
|
* <p>The maximum number of jobs that Amazon S3 will include in the <code>List Jobs</code>
|
|
6412
6412
|
* response. If there are more jobs than this number, the response will include a pagination
|
|
@@ -6414,7 +6414,7 @@ export interface ListJobsRequest {
|
|
|
6414
6414
|
* results.</p>
|
|
6415
6415
|
* @public
|
|
6416
6416
|
*/
|
|
6417
|
-
MaxResults?: number;
|
|
6417
|
+
MaxResults?: number | undefined;
|
|
6418
6418
|
}
|
|
6419
6419
|
/**
|
|
6420
6420
|
* @public
|
|
@@ -6445,46 +6445,46 @@ export interface JobListDescriptor {
|
|
|
6445
6445
|
* <p>The ID for the specified job.</p>
|
|
6446
6446
|
* @public
|
|
6447
6447
|
*/
|
|
6448
|
-
JobId?: string;
|
|
6448
|
+
JobId?: string | undefined;
|
|
6449
6449
|
/**
|
|
6450
6450
|
* <p>The user-specified description that was included in the specified job's <code>Create
|
|
6451
6451
|
* Job</code> request.</p>
|
|
6452
6452
|
* @public
|
|
6453
6453
|
*/
|
|
6454
|
-
Description?: string;
|
|
6454
|
+
Description?: string | undefined;
|
|
6455
6455
|
/**
|
|
6456
6456
|
* <p>The operation that the specified job is configured to run on every object listed in the
|
|
6457
6457
|
* manifest.</p>
|
|
6458
6458
|
* @public
|
|
6459
6459
|
*/
|
|
6460
|
-
Operation?: OperationName;
|
|
6460
|
+
Operation?: OperationName | undefined;
|
|
6461
6461
|
/**
|
|
6462
6462
|
* <p>The current priority for the specified job.</p>
|
|
6463
6463
|
* @public
|
|
6464
6464
|
*/
|
|
6465
|
-
Priority?: number;
|
|
6465
|
+
Priority?: number | undefined;
|
|
6466
6466
|
/**
|
|
6467
6467
|
* <p>The specified job's current status.</p>
|
|
6468
6468
|
* @public
|
|
6469
6469
|
*/
|
|
6470
|
-
Status?: JobStatus;
|
|
6470
|
+
Status?: JobStatus | undefined;
|
|
6471
6471
|
/**
|
|
6472
6472
|
* <p>A timestamp indicating when the specified job was created.</p>
|
|
6473
6473
|
* @public
|
|
6474
6474
|
*/
|
|
6475
|
-
CreationTime?: Date;
|
|
6475
|
+
CreationTime?: Date | undefined;
|
|
6476
6476
|
/**
|
|
6477
6477
|
* <p>A timestamp indicating when the specified job terminated. A job's termination date is
|
|
6478
6478
|
* the date and time when it succeeded, failed, or was canceled.</p>
|
|
6479
6479
|
* @public
|
|
6480
6480
|
*/
|
|
6481
|
-
TerminationDate?: Date;
|
|
6481
|
+
TerminationDate?: Date | undefined;
|
|
6482
6482
|
/**
|
|
6483
6483
|
* <p>Describes the total number of tasks that the specified job has run, the number of tasks
|
|
6484
6484
|
* that succeeded, and the number of tasks that failed.</p>
|
|
6485
6485
|
* @public
|
|
6486
6486
|
*/
|
|
6487
|
-
ProgressSummary?: JobProgressSummary;
|
|
6487
|
+
ProgressSummary?: JobProgressSummary | undefined;
|
|
6488
6488
|
}
|
|
6489
6489
|
/**
|
|
6490
6490
|
* @public
|
|
@@ -6496,12 +6496,12 @@ export interface ListJobsResult {
|
|
|
6496
6496
|
* retrieve the next page of results.</p>
|
|
6497
6497
|
* @public
|
|
6498
6498
|
*/
|
|
6499
|
-
NextToken?: string;
|
|
6499
|
+
NextToken?: string | undefined;
|
|
6500
6500
|
/**
|
|
6501
6501
|
* <p>The list of current jobs and jobs that have ended within the last 30 days.</p>
|
|
6502
6502
|
* @public
|
|
6503
6503
|
*/
|
|
6504
|
-
Jobs?: JobListDescriptor[];
|
|
6504
|
+
Jobs?: JobListDescriptor[] | undefined;
|
|
6505
6505
|
}
|
|
6506
6506
|
/**
|
|
6507
6507
|
* @public
|
|
@@ -6511,17 +6511,17 @@ export interface ListMultiRegionAccessPointsRequest {
|
|
|
6511
6511
|
* <p>The Amazon Web Services account ID for the owner of the Multi-Region Access Point.</p>
|
|
6512
6512
|
* @public
|
|
6513
6513
|
*/
|
|
6514
|
-
AccountId?: string;
|
|
6514
|
+
AccountId?: string | undefined;
|
|
6515
6515
|
/**
|
|
6516
6516
|
* <p>Not currently used. Do not use this parameter.</p>
|
|
6517
6517
|
* @public
|
|
6518
6518
|
*/
|
|
6519
|
-
NextToken?: string;
|
|
6519
|
+
NextToken?: string | undefined;
|
|
6520
6520
|
/**
|
|
6521
6521
|
* <p>Not currently used. Do not use this parameter.</p>
|
|
6522
6522
|
* @public
|
|
6523
6523
|
*/
|
|
6524
|
-
MaxResults?: number;
|
|
6524
|
+
MaxResults?: number | undefined;
|
|
6525
6525
|
}
|
|
6526
6526
|
/**
|
|
6527
6527
|
* @public
|
|
@@ -6531,14 +6531,14 @@ export interface ListMultiRegionAccessPointsResult {
|
|
|
6531
6531
|
* <p>The list of Multi-Region Access Points associated with the user.</p>
|
|
6532
6532
|
* @public
|
|
6533
6533
|
*/
|
|
6534
|
-
AccessPoints?: MultiRegionAccessPointReport[];
|
|
6534
|
+
AccessPoints?: MultiRegionAccessPointReport[] | undefined;
|
|
6535
6535
|
/**
|
|
6536
6536
|
* <p>If the specified bucket has more Multi-Region Access Points than can be returned in one call to this
|
|
6537
6537
|
* action, this field contains a continuation token. You can use this token tin subsequent
|
|
6538
6538
|
* calls to this action to retrieve additional Multi-Region Access Points.</p>
|
|
6539
6539
|
* @public
|
|
6540
6540
|
*/
|
|
6541
|
-
NextToken?: string;
|
|
6541
|
+
NextToken?: string | undefined;
|
|
6542
6542
|
}
|
|
6543
6543
|
/**
|
|
6544
6544
|
* @public
|
|
@@ -6548,17 +6548,17 @@ export interface ListRegionalBucketsRequest {
|
|
|
6548
6548
|
* <p>The Amazon Web Services account ID of the Outposts bucket.</p>
|
|
6549
6549
|
* @public
|
|
6550
6550
|
*/
|
|
6551
|
-
AccountId?: string;
|
|
6551
|
+
AccountId?: string | undefined;
|
|
6552
6552
|
/**
|
|
6553
6553
|
* <p></p>
|
|
6554
6554
|
* @public
|
|
6555
6555
|
*/
|
|
6556
|
-
NextToken?: string;
|
|
6556
|
+
NextToken?: string | undefined;
|
|
6557
6557
|
/**
|
|
6558
6558
|
* <p></p>
|
|
6559
6559
|
* @public
|
|
6560
6560
|
*/
|
|
6561
|
-
MaxResults?: number;
|
|
6561
|
+
MaxResults?: number | undefined;
|
|
6562
6562
|
/**
|
|
6563
6563
|
* <p>The ID of the Outposts resource.</p>
|
|
6564
6564
|
* <note>
|
|
@@ -6566,7 +6566,7 @@ export interface ListRegionalBucketsRequest {
|
|
|
6566
6566
|
* </note>
|
|
6567
6567
|
* @public
|
|
6568
6568
|
*/
|
|
6569
|
-
OutpostId?: string;
|
|
6569
|
+
OutpostId?: string | undefined;
|
|
6570
6570
|
}
|
|
6571
6571
|
/**
|
|
6572
6572
|
* <p>The container for the regional bucket.</p>
|
|
@@ -6582,7 +6582,7 @@ export interface RegionalBucket {
|
|
|
6582
6582
|
* <p>The Amazon Resource Name (ARN) for the regional bucket.</p>
|
|
6583
6583
|
* @public
|
|
6584
6584
|
*/
|
|
6585
|
-
BucketArn?: string;
|
|
6585
|
+
BucketArn?: string | undefined;
|
|
6586
6586
|
/**
|
|
6587
6587
|
* <p></p>
|
|
6588
6588
|
* @public
|
|
@@ -6597,7 +6597,7 @@ export interface RegionalBucket {
|
|
|
6597
6597
|
* <p>The Outposts ID of the regional bucket.</p>
|
|
6598
6598
|
* @public
|
|
6599
6599
|
*/
|
|
6600
|
-
OutpostId?: string;
|
|
6600
|
+
OutpostId?: string | undefined;
|
|
6601
6601
|
}
|
|
6602
6602
|
/**
|
|
6603
6603
|
* @public
|
|
@@ -6607,7 +6607,7 @@ export interface ListRegionalBucketsResult {
|
|
|
6607
6607
|
* <p></p>
|
|
6608
6608
|
* @public
|
|
6609
6609
|
*/
|
|
6610
|
-
RegionalBucketList?: RegionalBucket[];
|
|
6610
|
+
RegionalBucketList?: RegionalBucket[] | undefined;
|
|
6611
6611
|
/**
|
|
6612
6612
|
* <p>
|
|
6613
6613
|
* <code>NextToken</code> is sent when <code>isTruncated</code> is true, which means there
|
|
@@ -6616,7 +6616,7 @@ export interface ListRegionalBucketsResult {
|
|
|
6616
6616
|
* key.</p>
|
|
6617
6617
|
* @public
|
|
6618
6618
|
*/
|
|
6619
|
-
NextToken?: string;
|
|
6619
|
+
NextToken?: string | undefined;
|
|
6620
6620
|
}
|
|
6621
6621
|
/**
|
|
6622
6622
|
* @public
|
|
@@ -6626,12 +6626,12 @@ export interface ListStorageLensConfigurationsRequest {
|
|
|
6626
6626
|
* <p>The account ID of the requester.</p>
|
|
6627
6627
|
* @public
|
|
6628
6628
|
*/
|
|
6629
|
-
AccountId?: string;
|
|
6629
|
+
AccountId?: string | undefined;
|
|
6630
6630
|
/**
|
|
6631
6631
|
* <p>A pagination token to request the next page of results.</p>
|
|
6632
6632
|
* @public
|
|
6633
6633
|
*/
|
|
6634
|
-
NextToken?: string;
|
|
6634
|
+
NextToken?: string | undefined;
|
|
6635
6635
|
}
|
|
6636
6636
|
/**
|
|
6637
6637
|
* @internal
|