@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.
@@ -1,7 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { S3ControlServiceException as __BaseException } from "./S3ControlServiceException";
3
3
  export interface AbortIncompleteMultipartUpload {
4
- DaysAfterInitiation?: number;
4
+ DaysAfterInitiation?: number | undefined;
5
5
  }
6
6
  export declare const OwnerOverride: {
7
7
  readonly Destination: "Destination";
@@ -11,15 +11,15 @@ export interface AccessControlTranslation {
11
11
  Owner: OwnerOverride | undefined;
12
12
  }
13
13
  export interface ListAccessGrantsInstanceEntry {
14
- AccessGrantsInstanceId?: string;
15
- AccessGrantsInstanceArn?: string;
16
- CreatedAt?: Date;
17
- IdentityCenterArn?: string;
18
- IdentityCenterInstanceArn?: string;
19
- IdentityCenterApplicationArn?: string;
14
+ AccessGrantsInstanceId?: string | undefined;
15
+ AccessGrantsInstanceArn?: string | undefined;
16
+ CreatedAt?: Date | undefined;
17
+ IdentityCenterArn?: string | undefined;
18
+ IdentityCenterInstanceArn?: string | undefined;
19
+ IdentityCenterApplicationArn?: string | undefined;
20
20
  }
21
21
  export interface AccessGrantsLocationConfiguration {
22
- S3SubPrefix?: string;
22
+ S3SubPrefix?: string | undefined;
23
23
  }
24
24
  export declare const GranteeType: {
25
25
  readonly DIRECTORY_GROUP: "DIRECTORY_GROUP";
@@ -28,8 +28,8 @@ export declare const GranteeType: {
28
28
  };
29
29
  export type GranteeType = (typeof GranteeType)[keyof typeof GranteeType];
30
30
  export interface Grantee {
31
- GranteeType?: GranteeType;
32
- GranteeIdentifier?: string;
31
+ GranteeType?: GranteeType | undefined;
32
+ GranteeIdentifier?: string | undefined;
33
33
  }
34
34
  export declare const Permission: {
35
35
  readonly READ: "READ";
@@ -38,22 +38,24 @@ export declare const Permission: {
38
38
  };
39
39
  export type Permission = (typeof Permission)[keyof typeof Permission];
40
40
  export interface ListAccessGrantEntry {
41
- CreatedAt?: Date;
42
- AccessGrantId?: string;
43
- AccessGrantArn?: string;
44
- Grantee?: Grantee;
45
- Permission?: Permission;
46
- AccessGrantsLocationId?: string;
47
- AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
48
- GrantScope?: string;
49
- ApplicationArn?: string;
41
+ CreatedAt?: Date | undefined;
42
+ AccessGrantId?: string | undefined;
43
+ AccessGrantArn?: string | undefined;
44
+ Grantee?: Grantee | undefined;
45
+ Permission?: Permission | undefined;
46
+ AccessGrantsLocationId?: string | undefined;
47
+ AccessGrantsLocationConfiguration?:
48
+ | AccessGrantsLocationConfiguration
49
+ | undefined;
50
+ GrantScope?: string | undefined;
51
+ ApplicationArn?: string | undefined;
50
52
  }
51
53
  export interface ListAccessGrantsLocationsEntry {
52
- CreatedAt?: Date;
53
- AccessGrantsLocationId?: string;
54
- AccessGrantsLocationArn?: string;
55
- LocationScope?: string;
56
- IAMRoleArn?: string;
54
+ CreatedAt?: Date | undefined;
55
+ AccessGrantsLocationId?: string | undefined;
56
+ AccessGrantsLocationArn?: string | undefined;
57
+ LocationScope?: string | undefined;
58
+ IAMRoleArn?: string | undefined;
57
59
  }
58
60
  export declare const NetworkOrigin: {
59
61
  readonly Internet: "Internet";
@@ -66,67 +68,67 @@ export interface VpcConfiguration {
66
68
  export interface AccessPoint {
67
69
  Name: string | undefined;
68
70
  NetworkOrigin: NetworkOrigin | undefined;
69
- VpcConfiguration?: VpcConfiguration;
71
+ VpcConfiguration?: VpcConfiguration | undefined;
70
72
  Bucket: string | undefined;
71
- AccessPointArn?: string;
72
- Alias?: string;
73
- BucketAccountId?: string;
73
+ AccessPointArn?: string | undefined;
74
+ Alias?: string | undefined;
75
+ BucketAccountId?: string | undefined;
74
76
  }
75
77
  export interface ActivityMetrics {
76
- IsEnabled?: boolean;
78
+ IsEnabled?: boolean | undefined;
77
79
  }
78
80
  export interface AdvancedCostOptimizationMetrics {
79
- IsEnabled?: boolean;
81
+ IsEnabled?: boolean | undefined;
80
82
  }
81
83
  export interface AdvancedDataProtectionMetrics {
82
- IsEnabled?: boolean;
84
+ IsEnabled?: boolean | undefined;
83
85
  }
84
86
  export interface DetailedStatusCodesMetrics {
85
- IsEnabled?: boolean;
87
+ IsEnabled?: boolean | undefined;
86
88
  }
87
89
  export interface SelectionCriteria {
88
- Delimiter?: string;
89
- MaxDepth?: number;
90
- MinStorageBytesPercentage?: number;
90
+ Delimiter?: string | undefined;
91
+ MaxDepth?: number | undefined;
92
+ MinStorageBytesPercentage?: number | undefined;
91
93
  }
92
94
  export interface PrefixLevelStorageMetrics {
93
- IsEnabled?: boolean;
94
- SelectionCriteria?: SelectionCriteria;
95
+ IsEnabled?: boolean | undefined;
96
+ SelectionCriteria?: SelectionCriteria | undefined;
95
97
  }
96
98
  export interface PrefixLevel {
97
99
  StorageMetrics: PrefixLevelStorageMetrics | undefined;
98
100
  }
99
101
  export interface BucketLevel {
100
- ActivityMetrics?: ActivityMetrics;
101
- PrefixLevel?: PrefixLevel;
102
- AdvancedCostOptimizationMetrics?: AdvancedCostOptimizationMetrics;
103
- AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics;
104
- DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics;
102
+ ActivityMetrics?: ActivityMetrics | undefined;
103
+ PrefixLevel?: PrefixLevel | undefined;
104
+ AdvancedCostOptimizationMetrics?: AdvancedCostOptimizationMetrics | undefined;
105
+ AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics | undefined;
106
+ DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics | undefined;
105
107
  }
106
108
  export interface StorageLensGroupLevelSelectionCriteria {
107
- Include?: string[];
108
- Exclude?: string[];
109
+ Include?: string[] | undefined;
110
+ Exclude?: string[] | undefined;
109
111
  }
110
112
  export interface StorageLensGroupLevel {
111
- SelectionCriteria?: StorageLensGroupLevelSelectionCriteria;
113
+ SelectionCriteria?: StorageLensGroupLevelSelectionCriteria | undefined;
112
114
  }
113
115
  export interface AccountLevel {
114
- ActivityMetrics?: ActivityMetrics;
116
+ ActivityMetrics?: ActivityMetrics | undefined;
115
117
  BucketLevel: BucketLevel | undefined;
116
- AdvancedCostOptimizationMetrics?: AdvancedCostOptimizationMetrics;
117
- AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics;
118
- DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics;
119
- StorageLensGroupLevel?: StorageLensGroupLevel;
118
+ AdvancedCostOptimizationMetrics?: AdvancedCostOptimizationMetrics | undefined;
119
+ AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics | undefined;
120
+ DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics | undefined;
121
+ StorageLensGroupLevel?: StorageLensGroupLevel | undefined;
120
122
  }
121
123
  export interface AssociateAccessGrantsIdentityCenterRequest {
122
- AccountId?: string;
124
+ AccountId?: string | undefined;
123
125
  IdentityCenterArn: string | undefined;
124
126
  }
125
127
  export interface AsyncErrorDetails {
126
- Code?: string;
127
- Message?: string;
128
- Resource?: string;
129
- RequestId?: string;
128
+ Code?: string | undefined;
129
+ Message?: string | undefined;
130
+ Resource?: string | undefined;
131
+ RequestId?: string | undefined;
130
132
  }
131
133
  export declare const AsyncOperationName: {
132
134
  readonly CreateMultiRegionAccessPoint: "CreateMultiRegionAccessPoint";
@@ -136,18 +138,18 @@ export declare const AsyncOperationName: {
136
138
  export type AsyncOperationName =
137
139
  (typeof AsyncOperationName)[keyof typeof AsyncOperationName];
138
140
  export interface PublicAccessBlockConfiguration {
139
- BlockPublicAcls?: boolean;
140
- IgnorePublicAcls?: boolean;
141
- BlockPublicPolicy?: boolean;
142
- RestrictPublicBuckets?: boolean;
141
+ BlockPublicAcls?: boolean | undefined;
142
+ IgnorePublicAcls?: boolean | undefined;
143
+ BlockPublicPolicy?: boolean | undefined;
144
+ RestrictPublicBuckets?: boolean | undefined;
143
145
  }
144
146
  export interface Region {
145
147
  Bucket: string | undefined;
146
- BucketAccountId?: string;
148
+ BucketAccountId?: string | undefined;
147
149
  }
148
150
  export interface CreateMultiRegionAccessPointInput {
149
151
  Name: string | undefined;
150
- PublicAccessBlock?: PublicAccessBlockConfiguration;
152
+ PublicAccessBlock?: PublicAccessBlockConfiguration | undefined;
151
153
  Regions: Region[] | undefined;
152
154
  }
153
155
  export interface DeleteMultiRegionAccessPointInput {
@@ -158,32 +160,40 @@ export interface PutMultiRegionAccessPointPolicyInput {
158
160
  Policy: string | undefined;
159
161
  }
160
162
  export interface AsyncRequestParameters {
161
- CreateMultiRegionAccessPointRequest?: CreateMultiRegionAccessPointInput;
162
- DeleteMultiRegionAccessPointRequest?: DeleteMultiRegionAccessPointInput;
163
- PutMultiRegionAccessPointPolicyRequest?: PutMultiRegionAccessPointPolicyInput;
163
+ CreateMultiRegionAccessPointRequest?:
164
+ | CreateMultiRegionAccessPointInput
165
+ | undefined;
166
+ DeleteMultiRegionAccessPointRequest?:
167
+ | DeleteMultiRegionAccessPointInput
168
+ | undefined;
169
+ PutMultiRegionAccessPointPolicyRequest?:
170
+ | PutMultiRegionAccessPointPolicyInput
171
+ | undefined;
164
172
  }
165
173
  export interface MultiRegionAccessPointRegionalResponse {
166
- Name?: string;
167
- RequestStatus?: string;
174
+ Name?: string | undefined;
175
+ RequestStatus?: string | undefined;
168
176
  }
169
177
  export interface MultiRegionAccessPointsAsyncResponse {
170
- Regions?: MultiRegionAccessPointRegionalResponse[];
178
+ Regions?: MultiRegionAccessPointRegionalResponse[] | undefined;
171
179
  }
172
180
  export interface AsyncResponseDetails {
173
- MultiRegionAccessPointDetails?: MultiRegionAccessPointsAsyncResponse;
174
- ErrorDetails?: AsyncErrorDetails;
181
+ MultiRegionAccessPointDetails?:
182
+ | MultiRegionAccessPointsAsyncResponse
183
+ | undefined;
184
+ ErrorDetails?: AsyncErrorDetails | undefined;
175
185
  }
176
186
  export interface AsyncOperation {
177
- CreationTime?: Date;
178
- Operation?: AsyncOperationName;
179
- RequestTokenARN?: string;
180
- RequestParameters?: AsyncRequestParameters;
181
- RequestStatus?: string;
182
- ResponseDetails?: AsyncResponseDetails;
187
+ CreationTime?: Date | undefined;
188
+ Operation?: AsyncOperationName | undefined;
189
+ RequestTokenARN?: string | undefined;
190
+ RequestParameters?: AsyncRequestParameters | undefined;
191
+ RequestStatus?: string | undefined;
192
+ ResponseDetails?: AsyncResponseDetails | undefined;
183
193
  }
184
194
  export interface AwsLambdaTransformation {
185
195
  FunctionArn: string | undefined;
186
- FunctionPayload?: string;
196
+ FunctionPayload?: string | undefined;
187
197
  }
188
198
  export declare const S3PrefixType: {
189
199
  readonly Object: "Object";
@@ -194,63 +204,67 @@ export interface Tag {
194
204
  Value: string | undefined;
195
205
  }
196
206
  export interface CreateAccessGrantRequest {
197
- AccountId?: string;
207
+ AccountId?: string | undefined;
198
208
  AccessGrantsLocationId: string | undefined;
199
- AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
209
+ AccessGrantsLocationConfiguration?:
210
+ | AccessGrantsLocationConfiguration
211
+ | undefined;
200
212
  Grantee: Grantee | undefined;
201
213
  Permission: Permission | undefined;
202
- ApplicationArn?: string;
203
- S3PrefixType?: S3PrefixType;
204
- Tags?: Tag[];
214
+ ApplicationArn?: string | undefined;
215
+ S3PrefixType?: S3PrefixType | undefined;
216
+ Tags?: Tag[] | undefined;
205
217
  }
206
218
  export interface CreateAccessGrantResult {
207
- CreatedAt?: Date;
208
- AccessGrantId?: string;
209
- AccessGrantArn?: string;
210
- Grantee?: Grantee;
211
- AccessGrantsLocationId?: string;
212
- AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
213
- Permission?: Permission;
214
- ApplicationArn?: string;
215
- GrantScope?: string;
219
+ CreatedAt?: Date | undefined;
220
+ AccessGrantId?: string | undefined;
221
+ AccessGrantArn?: string | undefined;
222
+ Grantee?: Grantee | undefined;
223
+ AccessGrantsLocationId?: string | undefined;
224
+ AccessGrantsLocationConfiguration?:
225
+ | AccessGrantsLocationConfiguration
226
+ | undefined;
227
+ Permission?: Permission | undefined;
228
+ ApplicationArn?: string | undefined;
229
+ GrantScope?: string | undefined;
216
230
  }
217
231
  export interface CreateAccessGrantsInstanceRequest {
218
- AccountId?: string;
219
- IdentityCenterArn?: string;
220
- Tags?: Tag[];
232
+ AccountId?: string | undefined;
233
+ IdentityCenterArn?: string | undefined;
234
+ Tags?: Tag[] | undefined;
221
235
  }
222
236
  export interface CreateAccessGrantsInstanceResult {
223
- CreatedAt?: Date;
224
- AccessGrantsInstanceId?: string;
225
- AccessGrantsInstanceArn?: string;
226
- IdentityCenterArn?: string;
227
- IdentityCenterInstanceArn?: string;
228
- IdentityCenterApplicationArn?: string;
237
+ CreatedAt?: Date | undefined;
238
+ AccessGrantsInstanceId?: string | undefined;
239
+ AccessGrantsInstanceArn?: string | undefined;
240
+ IdentityCenterArn?: string | undefined;
241
+ IdentityCenterInstanceArn?: string | undefined;
242
+ IdentityCenterApplicationArn?: string | undefined;
229
243
  }
230
244
  export interface CreateAccessGrantsLocationRequest {
231
- AccountId?: string;
245
+ AccountId?: string | undefined;
232
246
  LocationScope: string | undefined;
233
247
  IAMRoleArn: string | undefined;
234
- Tags?: Tag[];
248
+ Tags?: Tag[] | undefined;
235
249
  }
236
250
  export interface CreateAccessGrantsLocationResult {
237
- CreatedAt?: Date;
238
- AccessGrantsLocationId?: string;
239
- AccessGrantsLocationArn?: string;
240
- LocationScope?: string;
241
- IAMRoleArn?: string;
251
+ CreatedAt?: Date | undefined;
252
+ AccessGrantsLocationId?: string | undefined;
253
+ AccessGrantsLocationArn?: string | undefined;
254
+ LocationScope?: string | undefined;
255
+ IAMRoleArn?: string | undefined;
242
256
  }
243
257
  export interface CreateAccessPointRequest {
244
- AccountId?: string;
258
+ AccountId?: string | undefined;
245
259
  Name: string | undefined;
246
260
  Bucket: string | undefined;
247
- VpcConfiguration?: VpcConfiguration;
248
- PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
249
- BucketAccountId?: string;
261
+ VpcConfiguration?: VpcConfiguration | undefined;
262
+ PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration | undefined;
263
+ BucketAccountId?: string | undefined;
250
264
  }
251
265
  export interface CreateAccessPointResult {
252
- AccessPointArn?: string;
253
- Alias?: string;
266
+ AccessPointArn?: string | undefined;
267
+ Alias?: string | undefined;
254
268
  }
255
269
  export declare const ObjectLambdaAllowedFeature: {
256
270
  readonly GetObjectPartNumber: "GetObject-PartNumber";
@@ -295,14 +309,14 @@ export interface ObjectLambdaTransformationConfiguration {
295
309
  }
296
310
  export interface ObjectLambdaConfiguration {
297
311
  SupportingAccessPoint: string | undefined;
298
- CloudWatchMetricsEnabled?: boolean;
299
- AllowedFeatures?: ObjectLambdaAllowedFeature[];
312
+ CloudWatchMetricsEnabled?: boolean | undefined;
313
+ AllowedFeatures?: ObjectLambdaAllowedFeature[] | undefined;
300
314
  TransformationConfigurations:
301
315
  | ObjectLambdaTransformationConfiguration[]
302
316
  | undefined;
303
317
  }
304
318
  export interface CreateAccessPointForObjectLambdaRequest {
305
- AccountId?: string;
319
+ AccountId?: string | undefined;
306
320
  Name: string | undefined;
307
321
  Configuration: ObjectLambdaConfiguration | undefined;
308
322
  }
@@ -313,12 +327,12 @@ export declare const ObjectLambdaAccessPointAliasStatus: {
313
327
  export type ObjectLambdaAccessPointAliasStatus =
314
328
  (typeof ObjectLambdaAccessPointAliasStatus)[keyof typeof ObjectLambdaAccessPointAliasStatus];
315
329
  export interface ObjectLambdaAccessPointAlias {
316
- Value?: string;
317
- Status?: ObjectLambdaAccessPointAliasStatus;
330
+ Value?: string | undefined;
331
+ Status?: ObjectLambdaAccessPointAliasStatus | undefined;
318
332
  }
319
333
  export interface CreateAccessPointForObjectLambdaResult {
320
- ObjectLambdaAccessPointArn?: string;
321
- Alias?: ObjectLambdaAccessPointAlias;
334
+ ObjectLambdaAccessPointArn?: string | undefined;
335
+ Alias?: ObjectLambdaAccessPointAlias | undefined;
322
336
  }
323
337
  export declare class BucketAlreadyExists extends __BaseException {
324
338
  readonly name: "BucketAlreadyExists";
@@ -358,35 +372,35 @@ export declare const BucketLocationConstraint: {
358
372
  export type BucketLocationConstraint =
359
373
  (typeof BucketLocationConstraint)[keyof typeof BucketLocationConstraint];
360
374
  export interface CreateBucketConfiguration {
361
- LocationConstraint?: BucketLocationConstraint;
375
+ LocationConstraint?: BucketLocationConstraint | undefined;
362
376
  }
363
377
  export interface CreateBucketRequest {
364
- ACL?: BucketCannedACL;
378
+ ACL?: BucketCannedACL | undefined;
365
379
  Bucket: string | undefined;
366
- CreateBucketConfiguration?: CreateBucketConfiguration;
367
- GrantFullControl?: string;
368
- GrantRead?: string;
369
- GrantReadACP?: string;
370
- GrantWrite?: string;
371
- GrantWriteACP?: string;
372
- ObjectLockEnabledForBucket?: boolean;
373
- OutpostId?: string;
380
+ CreateBucketConfiguration?: CreateBucketConfiguration | undefined;
381
+ GrantFullControl?: string | undefined;
382
+ GrantRead?: string | undefined;
383
+ GrantReadACP?: string | undefined;
384
+ GrantWrite?: string | undefined;
385
+ GrantWriteACP?: string | undefined;
386
+ ObjectLockEnabledForBucket?: boolean | undefined;
387
+ OutpostId?: string | undefined;
374
388
  }
375
389
  export interface CreateBucketResult {
376
- Location?: string;
377
- BucketArn?: string;
390
+ Location?: string | undefined;
391
+ BucketArn?: string | undefined;
378
392
  }
379
393
  export declare class BadRequestException extends __BaseException {
380
394
  readonly name: "BadRequestException";
381
395
  readonly $fault: "client";
382
- Message?: string;
396
+ Message?: string | undefined;
383
397
  constructor(
384
398
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
385
399
  );
386
400
  }
387
401
  export interface JobManifestLocation {
388
402
  ObjectArn: string | undefined;
389
- ObjectVersionId?: string;
403
+ ObjectVersionId?: string | undefined;
390
404
  ETag: string | undefined;
391
405
  }
392
406
  export declare const JobManifestFieldName: {
@@ -405,16 +419,16 @@ export type JobManifestFormat =
405
419
  (typeof JobManifestFormat)[keyof typeof JobManifestFormat];
406
420
  export interface JobManifestSpec {
407
421
  Format: JobManifestFormat | undefined;
408
- Fields?: JobManifestFieldName[];
422
+ Fields?: JobManifestFieldName[] | undefined;
409
423
  }
410
424
  export interface JobManifest {
411
425
  Spec: JobManifestSpec | undefined;
412
426
  Location: JobManifestLocation | undefined;
413
427
  }
414
428
  export interface KeyNameConstraint {
415
- MatchAnyPrefix?: string[];
416
- MatchAnySuffix?: string[];
417
- MatchAnySubstring?: string[];
429
+ MatchAnyPrefix?: string[] | undefined;
430
+ MatchAnySuffix?: string[] | undefined;
431
+ MatchAnySubstring?: string[] | undefined;
418
432
  }
419
433
  export declare const S3StorageClass: {
420
434
  readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
@@ -436,22 +450,22 @@ export declare const ReplicationStatus: {
436
450
  export type ReplicationStatus =
437
451
  (typeof ReplicationStatus)[keyof typeof ReplicationStatus];
438
452
  export interface JobManifestGeneratorFilter {
439
- EligibleForReplication?: boolean;
440
- CreatedAfter?: Date;
441
- CreatedBefore?: Date;
442
- ObjectReplicationStatuses?: ReplicationStatus[];
443
- KeyNameConstraint?: KeyNameConstraint;
444
- ObjectSizeGreaterThanBytes?: number;
445
- ObjectSizeLessThanBytes?: number;
446
- MatchAnyStorageClass?: S3StorageClass[];
453
+ EligibleForReplication?: boolean | undefined;
454
+ CreatedAfter?: Date | undefined;
455
+ CreatedBefore?: Date | undefined;
456
+ ObjectReplicationStatuses?: ReplicationStatus[] | undefined;
457
+ KeyNameConstraint?: KeyNameConstraint | undefined;
458
+ ObjectSizeGreaterThanBytes?: number | undefined;
459
+ ObjectSizeLessThanBytes?: number | undefined;
460
+ MatchAnyStorageClass?: S3StorageClass[] | undefined;
447
461
  }
448
462
  export interface SSEKMSEncryption {
449
463
  KeyId: string | undefined;
450
464
  }
451
465
  export interface SSES3Encryption {}
452
466
  export interface GeneratedManifestEncryption {
453
- SSES3?: SSES3Encryption;
454
- SSEKMS?: SSEKMSEncryption;
467
+ SSES3?: SSES3Encryption | undefined;
468
+ SSEKMS?: SSEKMSEncryption | undefined;
455
469
  }
456
470
  export declare const GeneratedManifestFormat: {
457
471
  readonly S3InventoryReport_CSV_20211130: "S3InventoryReport_CSV_20211130";
@@ -459,17 +473,17 @@ export declare const GeneratedManifestFormat: {
459
473
  export type GeneratedManifestFormat =
460
474
  (typeof GeneratedManifestFormat)[keyof typeof GeneratedManifestFormat];
461
475
  export interface S3ManifestOutputLocation {
462
- ExpectedManifestBucketOwner?: string;
476
+ ExpectedManifestBucketOwner?: string | undefined;
463
477
  Bucket: string | undefined;
464
- ManifestPrefix?: string;
465
- ManifestEncryption?: GeneratedManifestEncryption;
478
+ ManifestPrefix?: string | undefined;
479
+ ManifestEncryption?: GeneratedManifestEncryption | undefined;
466
480
  ManifestFormat: GeneratedManifestFormat | undefined;
467
481
  }
468
482
  export interface S3JobManifestGenerator {
469
- ExpectedBucketOwner?: string;
483
+ ExpectedBucketOwner?: string | undefined;
470
484
  SourceBucket: string | undefined;
471
- ManifestOutputLocation?: S3ManifestOutputLocation;
472
- Filter?: JobManifestGeneratorFilter;
485
+ ManifestOutputLocation?: S3ManifestOutputLocation | undefined;
486
+ Filter?: JobManifestGeneratorFilter | undefined;
473
487
  EnableManifestOutput: boolean | undefined;
474
488
  }
475
489
  export type JobManifestGenerator =
@@ -491,9 +505,9 @@ export declare namespace JobManifestGenerator {
491
505
  const visit: <T>(value: JobManifestGenerator, visitor: Visitor<T>) => T;
492
506
  }
493
507
  export interface LambdaInvokeOperation {
494
- FunctionArn?: string;
495
- InvocationSchemaVersion?: string;
496
- UserArguments?: Record<string, string>;
508
+ FunctionArn?: string | undefined;
509
+ InvocationSchemaVersion?: string | undefined;
510
+ UserArguments?: Record<string, string> | undefined;
497
511
  }
498
512
  export interface S3DeleteObjectTaggingOperation {}
499
513
  export declare const S3GlacierJobTier: {
@@ -503,8 +517,8 @@ export declare const S3GlacierJobTier: {
503
517
  export type S3GlacierJobTier =
504
518
  (typeof S3GlacierJobTier)[keyof typeof S3GlacierJobTier];
505
519
  export interface S3InitiateRestoreObjectOperation {
506
- ExpirationInDays?: number;
507
- GlacierJobTier?: S3GlacierJobTier;
520
+ ExpirationInDays?: number | undefined;
521
+ GlacierJobTier?: S3GlacierJobTier | undefined;
508
522
  }
509
523
  export declare const S3GranteeTypeIdentifier: {
510
524
  readonly CANONICAL: "id";
@@ -514,9 +528,9 @@ export declare const S3GranteeTypeIdentifier: {
514
528
  export type S3GranteeTypeIdentifier =
515
529
  (typeof S3GranteeTypeIdentifier)[keyof typeof S3GranteeTypeIdentifier];
516
530
  export interface S3Grantee {
517
- TypeIdentifier?: S3GranteeTypeIdentifier;
518
- Identifier?: string;
519
- DisplayName?: string;
531
+ TypeIdentifier?: S3GranteeTypeIdentifier | undefined;
532
+ Identifier?: string | undefined;
533
+ DisplayName?: string | undefined;
520
534
  }
521
535
  export declare const S3Permission: {
522
536
  readonly FULL_CONTROL: "FULL_CONTROL";
@@ -527,16 +541,16 @@ export declare const S3Permission: {
527
541
  };
528
542
  export type S3Permission = (typeof S3Permission)[keyof typeof S3Permission];
529
543
  export interface S3Grant {
530
- Grantee?: S3Grantee;
531
- Permission?: S3Permission;
544
+ Grantee?: S3Grantee | undefined;
545
+ Permission?: S3Permission | undefined;
532
546
  }
533
547
  export interface S3ObjectOwner {
534
- ID?: string;
535
- DisplayName?: string;
548
+ ID?: string | undefined;
549
+ DisplayName?: string | undefined;
536
550
  }
537
551
  export interface S3AccessControlList {
538
552
  Owner: S3ObjectOwner | undefined;
539
- Grants?: S3Grant[];
553
+ Grants?: S3Grant[] | undefined;
540
554
  }
541
555
  export declare const S3CannedAccessControlList: {
542
556
  readonly AUTHENTICATED_READ: "authenticated-read";
@@ -550,11 +564,11 @@ export declare const S3CannedAccessControlList: {
550
564
  export type S3CannedAccessControlList =
551
565
  (typeof S3CannedAccessControlList)[keyof typeof S3CannedAccessControlList];
552
566
  export interface S3AccessControlPolicy {
553
- AccessControlList?: S3AccessControlList;
554
- CannedAccessControlList?: S3CannedAccessControlList;
567
+ AccessControlList?: S3AccessControlList | undefined;
568
+ CannedAccessControlList?: S3CannedAccessControlList | undefined;
555
569
  }
556
570
  export interface S3SetObjectAclOperation {
557
- AccessControlPolicy?: S3AccessControlPolicy;
571
+ AccessControlPolicy?: S3AccessControlPolicy | undefined;
558
572
  }
559
573
  export declare const S3ChecksumAlgorithm: {
560
574
  readonly CRC32: "CRC32";
@@ -577,17 +591,17 @@ export declare const S3SSEAlgorithm: {
577
591
  export type S3SSEAlgorithm =
578
592
  (typeof S3SSEAlgorithm)[keyof typeof S3SSEAlgorithm];
579
593
  export interface S3ObjectMetadata {
580
- CacheControl?: string;
581
- ContentDisposition?: string;
582
- ContentEncoding?: string;
583
- ContentLanguage?: string;
584
- UserMetadata?: Record<string, string>;
585
- ContentLength?: number;
586
- ContentMD5?: string;
587
- ContentType?: string;
588
- HttpExpiresDate?: Date;
589
- RequesterCharged?: boolean;
590
- SSEAlgorithm?: S3SSEAlgorithm;
594
+ CacheControl?: string | undefined;
595
+ ContentDisposition?: string | undefined;
596
+ ContentEncoding?: string | undefined;
597
+ ContentLanguage?: string | undefined;
598
+ UserMetadata?: Record<string, string> | undefined;
599
+ ContentLength?: number | undefined;
600
+ ContentMD5?: string | undefined;
601
+ ContentType?: string | undefined;
602
+ HttpExpiresDate?: Date | undefined;
603
+ RequesterCharged?: boolean | undefined;
604
+ SSEAlgorithm?: S3SSEAlgorithm | undefined;
591
605
  }
592
606
  export interface S3Tag {
593
607
  Key: string | undefined;
@@ -606,24 +620,24 @@ export declare const S3ObjectLockMode: {
606
620
  export type S3ObjectLockMode =
607
621
  (typeof S3ObjectLockMode)[keyof typeof S3ObjectLockMode];
608
622
  export interface S3CopyObjectOperation {
609
- TargetResource?: string;
610
- CannedAccessControlList?: S3CannedAccessControlList;
611
- AccessControlGrants?: S3Grant[];
612
- MetadataDirective?: S3MetadataDirective;
613
- ModifiedSinceConstraint?: Date;
614
- NewObjectMetadata?: S3ObjectMetadata;
615
- NewObjectTagging?: S3Tag[];
616
- RedirectLocation?: string;
617
- RequesterPays?: boolean;
618
- StorageClass?: S3StorageClass;
619
- UnModifiedSinceConstraint?: Date;
620
- SSEAwsKmsKeyId?: string;
621
- TargetKeyPrefix?: string;
622
- ObjectLockLegalHoldStatus?: S3ObjectLockLegalHoldStatus;
623
- ObjectLockMode?: S3ObjectLockMode;
624
- ObjectLockRetainUntilDate?: Date;
625
- BucketKeyEnabled?: boolean;
626
- ChecksumAlgorithm?: S3ChecksumAlgorithm;
623
+ TargetResource?: string | undefined;
624
+ CannedAccessControlList?: S3CannedAccessControlList | undefined;
625
+ AccessControlGrants?: S3Grant[] | undefined;
626
+ MetadataDirective?: S3MetadataDirective | undefined;
627
+ ModifiedSinceConstraint?: Date | undefined;
628
+ NewObjectMetadata?: S3ObjectMetadata | undefined;
629
+ NewObjectTagging?: S3Tag[] | undefined;
630
+ RedirectLocation?: string | undefined;
631
+ RequesterPays?: boolean | undefined;
632
+ StorageClass?: S3StorageClass | undefined;
633
+ UnModifiedSinceConstraint?: Date | undefined;
634
+ SSEAwsKmsKeyId?: string | undefined;
635
+ TargetKeyPrefix?: string | undefined;
636
+ ObjectLockLegalHoldStatus?: S3ObjectLockLegalHoldStatus | undefined;
637
+ ObjectLockMode?: S3ObjectLockMode | undefined;
638
+ ObjectLockRetainUntilDate?: Date | undefined;
639
+ BucketKeyEnabled?: boolean | undefined;
640
+ ChecksumAlgorithm?: S3ChecksumAlgorithm | undefined;
627
641
  }
628
642
  export interface S3ObjectLockLegalHold {
629
643
  Status: S3ObjectLockLegalHoldStatus | undefined;
@@ -638,27 +652,27 @@ export declare const S3ObjectLockRetentionMode: {
638
652
  export type S3ObjectLockRetentionMode =
639
653
  (typeof S3ObjectLockRetentionMode)[keyof typeof S3ObjectLockRetentionMode];
640
654
  export interface S3Retention {
641
- RetainUntilDate?: Date;
642
- Mode?: S3ObjectLockRetentionMode;
655
+ RetainUntilDate?: Date | undefined;
656
+ Mode?: S3ObjectLockRetentionMode | undefined;
643
657
  }
644
658
  export interface S3SetObjectRetentionOperation {
645
- BypassGovernanceRetention?: boolean;
659
+ BypassGovernanceRetention?: boolean | undefined;
646
660
  Retention: S3Retention | undefined;
647
661
  }
648
662
  export interface S3SetObjectTaggingOperation {
649
- TagSet?: S3Tag[];
663
+ TagSet?: S3Tag[] | undefined;
650
664
  }
651
665
  export interface S3ReplicateObjectOperation {}
652
666
  export interface JobOperation {
653
- LambdaInvoke?: LambdaInvokeOperation;
654
- S3PutObjectCopy?: S3CopyObjectOperation;
655
- S3PutObjectAcl?: S3SetObjectAclOperation;
656
- S3PutObjectTagging?: S3SetObjectTaggingOperation;
657
- S3DeleteObjectTagging?: S3DeleteObjectTaggingOperation;
658
- S3InitiateRestoreObject?: S3InitiateRestoreObjectOperation;
659
- S3PutObjectLegalHold?: S3SetObjectLegalHoldOperation;
660
- S3PutObjectRetention?: S3SetObjectRetentionOperation;
661
- S3ReplicateObject?: S3ReplicateObjectOperation;
667
+ LambdaInvoke?: LambdaInvokeOperation | undefined;
668
+ S3PutObjectCopy?: S3CopyObjectOperation | undefined;
669
+ S3PutObjectAcl?: S3SetObjectAclOperation | undefined;
670
+ S3PutObjectTagging?: S3SetObjectTaggingOperation | undefined;
671
+ S3DeleteObjectTagging?: S3DeleteObjectTaggingOperation | undefined;
672
+ S3InitiateRestoreObject?: S3InitiateRestoreObjectOperation | undefined;
673
+ S3PutObjectLegalHold?: S3SetObjectLegalHoldOperation | undefined;
674
+ S3PutObjectRetention?: S3SetObjectRetentionOperation | undefined;
675
+ S3ReplicateObject?: S3ReplicateObjectOperation | undefined;
662
676
  }
663
677
  export declare const JobReportFormat: {
664
678
  readonly Report_CSV_20180820: "Report_CSV_20180820";
@@ -672,32 +686,32 @@ export declare const JobReportScope: {
672
686
  export type JobReportScope =
673
687
  (typeof JobReportScope)[keyof typeof JobReportScope];
674
688
  export interface JobReport {
675
- Bucket?: string;
676
- Format?: JobReportFormat;
689
+ Bucket?: string | undefined;
690
+ Format?: JobReportFormat | undefined;
677
691
  Enabled: boolean | undefined;
678
- Prefix?: string;
679
- ReportScope?: JobReportScope;
692
+ Prefix?: string | undefined;
693
+ ReportScope?: JobReportScope | undefined;
680
694
  }
681
695
  export interface CreateJobRequest {
682
- AccountId?: string;
683
- ConfirmationRequired?: boolean;
696
+ AccountId?: string | undefined;
697
+ ConfirmationRequired?: boolean | undefined;
684
698
  Operation: JobOperation | undefined;
685
699
  Report: JobReport | undefined;
686
- ClientRequestToken?: string;
687
- Manifest?: JobManifest;
688
- Description?: string;
700
+ ClientRequestToken?: string | undefined;
701
+ Manifest?: JobManifest | undefined;
702
+ Description?: string | undefined;
689
703
  Priority: number | undefined;
690
704
  RoleArn: string | undefined;
691
- Tags?: S3Tag[];
692
- ManifestGenerator?: JobManifestGenerator;
705
+ Tags?: S3Tag[] | undefined;
706
+ ManifestGenerator?: JobManifestGenerator | undefined;
693
707
  }
694
708
  export interface CreateJobResult {
695
- JobId?: string;
709
+ JobId?: string | undefined;
696
710
  }
697
711
  export declare class IdempotencyException extends __BaseException {
698
712
  readonly name: "IdempotencyException";
699
713
  readonly $fault: "client";
700
- Message?: string;
714
+ Message?: string | undefined;
701
715
  constructor(
702
716
  opts: __ExceptionOptionType<IdempotencyException, __BaseException>
703
717
  );
@@ -705,7 +719,7 @@ export declare class IdempotencyException extends __BaseException {
705
719
  export declare class InternalServiceException extends __BaseException {
706
720
  readonly name: "InternalServiceException";
707
721
  readonly $fault: "server";
708
- Message?: string;
722
+ Message?: string | undefined;
709
723
  constructor(
710
724
  opts: __ExceptionOptionType<InternalServiceException, __BaseException>
711
725
  );
@@ -713,165 +727,165 @@ export declare class InternalServiceException extends __BaseException {
713
727
  export declare class TooManyRequestsException extends __BaseException {
714
728
  readonly name: "TooManyRequestsException";
715
729
  readonly $fault: "client";
716
- Message?: string;
730
+ Message?: string | undefined;
717
731
  constructor(
718
732
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
719
733
  );
720
734
  }
721
735
  export interface CreateMultiRegionAccessPointRequest {
722
- AccountId?: string;
723
- ClientToken?: string;
736
+ AccountId?: string | undefined;
737
+ ClientToken?: string | undefined;
724
738
  Details: CreateMultiRegionAccessPointInput | undefined;
725
739
  }
726
740
  export interface CreateMultiRegionAccessPointResult {
727
- RequestTokenARN?: string;
741
+ RequestTokenARN?: string | undefined;
728
742
  }
729
743
  export interface MatchObjectAge {
730
- DaysGreaterThan?: number;
731
- DaysLessThan?: number;
744
+ DaysGreaterThan?: number | undefined;
745
+ DaysLessThan?: number | undefined;
732
746
  }
733
747
  export interface MatchObjectSize {
734
- BytesGreaterThan?: number;
735
- BytesLessThan?: number;
748
+ BytesGreaterThan?: number | undefined;
749
+ BytesLessThan?: number | undefined;
736
750
  }
737
751
  export interface StorageLensGroupAndOperator {
738
- MatchAnyPrefix?: string[];
739
- MatchAnySuffix?: string[];
740
- MatchAnyTag?: S3Tag[];
741
- MatchObjectAge?: MatchObjectAge;
742
- MatchObjectSize?: MatchObjectSize;
752
+ MatchAnyPrefix?: string[] | undefined;
753
+ MatchAnySuffix?: string[] | undefined;
754
+ MatchAnyTag?: S3Tag[] | undefined;
755
+ MatchObjectAge?: MatchObjectAge | undefined;
756
+ MatchObjectSize?: MatchObjectSize | undefined;
743
757
  }
744
758
  export interface StorageLensGroupOrOperator {
745
- MatchAnyPrefix?: string[];
746
- MatchAnySuffix?: string[];
747
- MatchAnyTag?: S3Tag[];
748
- MatchObjectAge?: MatchObjectAge;
749
- MatchObjectSize?: MatchObjectSize;
759
+ MatchAnyPrefix?: string[] | undefined;
760
+ MatchAnySuffix?: string[] | undefined;
761
+ MatchAnyTag?: S3Tag[] | undefined;
762
+ MatchObjectAge?: MatchObjectAge | undefined;
763
+ MatchObjectSize?: MatchObjectSize | undefined;
750
764
  }
751
765
  export interface StorageLensGroupFilter {
752
- MatchAnyPrefix?: string[];
753
- MatchAnySuffix?: string[];
754
- MatchAnyTag?: S3Tag[];
755
- MatchObjectAge?: MatchObjectAge;
756
- MatchObjectSize?: MatchObjectSize;
757
- And?: StorageLensGroupAndOperator;
758
- Or?: StorageLensGroupOrOperator;
766
+ MatchAnyPrefix?: string[] | undefined;
767
+ MatchAnySuffix?: string[] | undefined;
768
+ MatchAnyTag?: S3Tag[] | undefined;
769
+ MatchObjectAge?: MatchObjectAge | undefined;
770
+ MatchObjectSize?: MatchObjectSize | undefined;
771
+ And?: StorageLensGroupAndOperator | undefined;
772
+ Or?: StorageLensGroupOrOperator | undefined;
759
773
  }
760
774
  export interface StorageLensGroup {
761
775
  Name: string | undefined;
762
776
  Filter: StorageLensGroupFilter | undefined;
763
- StorageLensGroupArn?: string;
777
+ StorageLensGroupArn?: string | undefined;
764
778
  }
765
779
  export interface CreateStorageLensGroupRequest {
766
- AccountId?: string;
780
+ AccountId?: string | undefined;
767
781
  StorageLensGroup: StorageLensGroup | undefined;
768
- Tags?: Tag[];
782
+ Tags?: Tag[] | undefined;
769
783
  }
770
784
  export interface DeleteAccessGrantRequest {
771
- AccountId?: string;
785
+ AccountId?: string | undefined;
772
786
  AccessGrantId: string | undefined;
773
787
  }
774
788
  export interface DeleteAccessGrantsInstanceRequest {
775
- AccountId?: string;
789
+ AccountId?: string | undefined;
776
790
  }
777
791
  export interface DeleteAccessGrantsInstanceResourcePolicyRequest {
778
- AccountId?: string;
792
+ AccountId?: string | undefined;
779
793
  }
780
794
  export interface DeleteAccessGrantsLocationRequest {
781
- AccountId?: string;
795
+ AccountId?: string | undefined;
782
796
  AccessGrantsLocationId: string | undefined;
783
797
  }
784
798
  export interface DeleteAccessPointRequest {
785
- AccountId?: string;
799
+ AccountId?: string | undefined;
786
800
  Name: string | undefined;
787
801
  }
788
802
  export interface DeleteAccessPointForObjectLambdaRequest {
789
- AccountId?: string;
803
+ AccountId?: string | undefined;
790
804
  Name: string | undefined;
791
805
  }
792
806
  export interface DeleteAccessPointPolicyRequest {
793
- AccountId?: string;
807
+ AccountId?: string | undefined;
794
808
  Name: string | undefined;
795
809
  }
796
810
  export interface DeleteAccessPointPolicyForObjectLambdaRequest {
797
- AccountId?: string;
811
+ AccountId?: string | undefined;
798
812
  Name: string | undefined;
799
813
  }
800
814
  export interface DeleteBucketRequest {
801
- AccountId?: string;
815
+ AccountId?: string | undefined;
802
816
  Bucket: string | undefined;
803
817
  }
804
818
  export interface DeleteBucketLifecycleConfigurationRequest {
805
- AccountId?: string;
819
+ AccountId?: string | undefined;
806
820
  Bucket: string | undefined;
807
821
  }
808
822
  export interface DeleteBucketPolicyRequest {
809
- AccountId?: string;
823
+ AccountId?: string | undefined;
810
824
  Bucket: string | undefined;
811
825
  }
812
826
  export interface DeleteBucketReplicationRequest {
813
- AccountId?: string;
827
+ AccountId?: string | undefined;
814
828
  Bucket: string | undefined;
815
829
  }
816
830
  export interface DeleteBucketTaggingRequest {
817
- AccountId?: string;
831
+ AccountId?: string | undefined;
818
832
  Bucket: string | undefined;
819
833
  }
820
834
  export interface DeleteJobTaggingRequest {
821
- AccountId?: string;
835
+ AccountId?: string | undefined;
822
836
  JobId: string | undefined;
823
837
  }
824
838
  export interface DeleteJobTaggingResult {}
825
839
  export declare class NotFoundException extends __BaseException {
826
840
  readonly name: "NotFoundException";
827
841
  readonly $fault: "client";
828
- Message?: string;
842
+ Message?: string | undefined;
829
843
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
830
844
  }
831
845
  export interface DeleteMultiRegionAccessPointRequest {
832
- AccountId?: string;
833
- ClientToken?: string;
846
+ AccountId?: string | undefined;
847
+ ClientToken?: string | undefined;
834
848
  Details: DeleteMultiRegionAccessPointInput | undefined;
835
849
  }
836
850
  export interface DeleteMultiRegionAccessPointResult {
837
- RequestTokenARN?: string;
851
+ RequestTokenARN?: string | undefined;
838
852
  }
839
853
  export interface DeletePublicAccessBlockRequest {
840
- AccountId?: string;
854
+ AccountId?: string | undefined;
841
855
  }
842
856
  export interface DeleteStorageLensConfigurationRequest {
843
857
  ConfigId: string | undefined;
844
- AccountId?: string;
858
+ AccountId?: string | undefined;
845
859
  }
846
860
  export interface DeleteStorageLensConfigurationTaggingRequest {
847
861
  ConfigId: string | undefined;
848
- AccountId?: string;
862
+ AccountId?: string | undefined;
849
863
  }
850
864
  export interface DeleteStorageLensConfigurationTaggingResult {}
851
865
  export interface DeleteStorageLensGroupRequest {
852
866
  Name: string | undefined;
853
- AccountId?: string;
867
+ AccountId?: string | undefined;
854
868
  }
855
869
  export interface DescribeJobRequest {
856
- AccountId?: string;
870
+ AccountId?: string | undefined;
857
871
  JobId: string | undefined;
858
872
  }
859
873
  export interface JobFailure {
860
- FailureCode?: string;
861
- FailureReason?: string;
874
+ FailureCode?: string | undefined;
875
+ FailureReason?: string | undefined;
862
876
  }
863
877
  export interface S3GeneratedManifestDescriptor {
864
- Format?: GeneratedManifestFormat;
865
- Location?: JobManifestLocation;
878
+ Format?: GeneratedManifestFormat | undefined;
879
+ Location?: JobManifestLocation | undefined;
866
880
  }
867
881
  export interface JobTimers {
868
- ElapsedTimeInActiveSeconds?: number;
882
+ ElapsedTimeInActiveSeconds?: number | undefined;
869
883
  }
870
884
  export interface JobProgressSummary {
871
- TotalNumberOfTasks?: number;
872
- NumberOfTasksSucceeded?: number;
873
- NumberOfTasksFailed?: number;
874
- Timers?: JobTimers;
885
+ TotalNumberOfTasks?: number | undefined;
886
+ NumberOfTasksSucceeded?: number | undefined;
887
+ NumberOfTasksFailed?: number | undefined;
888
+ Timers?: JobTimers | undefined;
875
889
  }
876
890
  export declare const JobStatus: {
877
891
  readonly Active: "Active";
@@ -890,190 +904,192 @@ export declare const JobStatus: {
890
904
  };
891
905
  export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
892
906
  export interface JobDescriptor {
893
- JobId?: string;
894
- ConfirmationRequired?: boolean;
895
- Description?: string;
896
- JobArn?: string;
897
- Status?: JobStatus;
898
- Manifest?: JobManifest;
899
- Operation?: JobOperation;
900
- Priority?: number;
901
- ProgressSummary?: JobProgressSummary;
902
- StatusUpdateReason?: string;
903
- FailureReasons?: JobFailure[];
904
- Report?: JobReport;
905
- CreationTime?: Date;
906
- TerminationDate?: Date;
907
- RoleArn?: string;
908
- SuspendedDate?: Date;
909
- SuspendedCause?: string;
910
- ManifestGenerator?: JobManifestGenerator;
911
- GeneratedManifestDescriptor?: S3GeneratedManifestDescriptor;
907
+ JobId?: string | undefined;
908
+ ConfirmationRequired?: boolean | undefined;
909
+ Description?: string | undefined;
910
+ JobArn?: string | undefined;
911
+ Status?: JobStatus | undefined;
912
+ Manifest?: JobManifest | undefined;
913
+ Operation?: JobOperation | undefined;
914
+ Priority?: number | undefined;
915
+ ProgressSummary?: JobProgressSummary | undefined;
916
+ StatusUpdateReason?: string | undefined;
917
+ FailureReasons?: JobFailure[] | undefined;
918
+ Report?: JobReport | undefined;
919
+ CreationTime?: Date | undefined;
920
+ TerminationDate?: Date | undefined;
921
+ RoleArn?: string | undefined;
922
+ SuspendedDate?: Date | undefined;
923
+ SuspendedCause?: string | undefined;
924
+ ManifestGenerator?: JobManifestGenerator | undefined;
925
+ GeneratedManifestDescriptor?: S3GeneratedManifestDescriptor | undefined;
912
926
  }
913
927
  export interface DescribeJobResult {
914
- Job?: JobDescriptor;
928
+ Job?: JobDescriptor | undefined;
915
929
  }
916
930
  export interface DescribeMultiRegionAccessPointOperationRequest {
917
- AccountId?: string;
931
+ AccountId?: string | undefined;
918
932
  RequestTokenARN: string | undefined;
919
933
  }
920
934
  export interface DescribeMultiRegionAccessPointOperationResult {
921
- AsyncOperation?: AsyncOperation;
935
+ AsyncOperation?: AsyncOperation | undefined;
922
936
  }
923
937
  export interface DissociateAccessGrantsIdentityCenterRequest {
924
- AccountId?: string;
938
+ AccountId?: string | undefined;
925
939
  }
926
940
  export interface GetAccessGrantRequest {
927
- AccountId?: string;
941
+ AccountId?: string | undefined;
928
942
  AccessGrantId: string | undefined;
929
943
  }
930
944
  export interface GetAccessGrantResult {
931
- CreatedAt?: Date;
932
- AccessGrantId?: string;
933
- AccessGrantArn?: string;
934
- Grantee?: Grantee;
935
- Permission?: Permission;
936
- AccessGrantsLocationId?: string;
937
- AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
938
- GrantScope?: string;
939
- ApplicationArn?: string;
945
+ CreatedAt?: Date | undefined;
946
+ AccessGrantId?: string | undefined;
947
+ AccessGrantArn?: string | undefined;
948
+ Grantee?: Grantee | undefined;
949
+ Permission?: Permission | undefined;
950
+ AccessGrantsLocationId?: string | undefined;
951
+ AccessGrantsLocationConfiguration?:
952
+ | AccessGrantsLocationConfiguration
953
+ | undefined;
954
+ GrantScope?: string | undefined;
955
+ ApplicationArn?: string | undefined;
940
956
  }
941
957
  export interface GetAccessGrantsInstanceRequest {
942
- AccountId?: string;
958
+ AccountId?: string | undefined;
943
959
  }
944
960
  export interface GetAccessGrantsInstanceResult {
945
- AccessGrantsInstanceArn?: string;
946
- AccessGrantsInstanceId?: string;
947
- IdentityCenterArn?: string;
948
- IdentityCenterInstanceArn?: string;
949
- IdentityCenterApplicationArn?: string;
950
- CreatedAt?: Date;
961
+ AccessGrantsInstanceArn?: string | undefined;
962
+ AccessGrantsInstanceId?: string | undefined;
963
+ IdentityCenterArn?: string | undefined;
964
+ IdentityCenterInstanceArn?: string | undefined;
965
+ IdentityCenterApplicationArn?: string | undefined;
966
+ CreatedAt?: Date | undefined;
951
967
  }
952
968
  export interface GetAccessGrantsInstanceForPrefixRequest {
953
- AccountId?: string;
969
+ AccountId?: string | undefined;
954
970
  S3Prefix: string | undefined;
955
971
  }
956
972
  export interface GetAccessGrantsInstanceForPrefixResult {
957
- AccessGrantsInstanceArn?: string;
958
- AccessGrantsInstanceId?: string;
973
+ AccessGrantsInstanceArn?: string | undefined;
974
+ AccessGrantsInstanceId?: string | undefined;
959
975
  }
960
976
  export interface GetAccessGrantsInstanceResourcePolicyRequest {
961
- AccountId?: string;
977
+ AccountId?: string | undefined;
962
978
  }
963
979
  export interface GetAccessGrantsInstanceResourcePolicyResult {
964
- Policy?: string;
965
- Organization?: string;
966
- CreatedAt?: Date;
980
+ Policy?: string | undefined;
981
+ Organization?: string | undefined;
982
+ CreatedAt?: Date | undefined;
967
983
  }
968
984
  export interface GetAccessGrantsLocationRequest {
969
- AccountId?: string;
985
+ AccountId?: string | undefined;
970
986
  AccessGrantsLocationId: string | undefined;
971
987
  }
972
988
  export interface GetAccessGrantsLocationResult {
973
- CreatedAt?: Date;
974
- AccessGrantsLocationId?: string;
975
- AccessGrantsLocationArn?: string;
976
- LocationScope?: string;
977
- IAMRoleArn?: string;
989
+ CreatedAt?: Date | undefined;
990
+ AccessGrantsLocationId?: string | undefined;
991
+ AccessGrantsLocationArn?: string | undefined;
992
+ LocationScope?: string | undefined;
993
+ IAMRoleArn?: string | undefined;
978
994
  }
979
995
  export interface GetAccessPointRequest {
980
- AccountId?: string;
996
+ AccountId?: string | undefined;
981
997
  Name: string | undefined;
982
998
  }
983
999
  export interface GetAccessPointResult {
984
- Name?: string;
985
- Bucket?: string;
986
- NetworkOrigin?: NetworkOrigin;
987
- VpcConfiguration?: VpcConfiguration;
988
- PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
989
- CreationDate?: Date;
990
- Alias?: string;
991
- AccessPointArn?: string;
992
- Endpoints?: Record<string, string>;
993
- BucketAccountId?: string;
1000
+ Name?: string | undefined;
1001
+ Bucket?: string | undefined;
1002
+ NetworkOrigin?: NetworkOrigin | undefined;
1003
+ VpcConfiguration?: VpcConfiguration | undefined;
1004
+ PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration | undefined;
1005
+ CreationDate?: Date | undefined;
1006
+ Alias?: string | undefined;
1007
+ AccessPointArn?: string | undefined;
1008
+ Endpoints?: Record<string, string> | undefined;
1009
+ BucketAccountId?: string | undefined;
994
1010
  }
995
1011
  export interface GetAccessPointConfigurationForObjectLambdaRequest {
996
- AccountId?: string;
1012
+ AccountId?: string | undefined;
997
1013
  Name: string | undefined;
998
1014
  }
999
1015
  export interface GetAccessPointConfigurationForObjectLambdaResult {
1000
- Configuration?: ObjectLambdaConfiguration;
1016
+ Configuration?: ObjectLambdaConfiguration | undefined;
1001
1017
  }
1002
1018
  export interface GetAccessPointForObjectLambdaRequest {
1003
- AccountId?: string;
1019
+ AccountId?: string | undefined;
1004
1020
  Name: string | undefined;
1005
1021
  }
1006
1022
  export interface GetAccessPointForObjectLambdaResult {
1007
- Name?: string;
1008
- PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
1009
- CreationDate?: Date;
1010
- Alias?: ObjectLambdaAccessPointAlias;
1023
+ Name?: string | undefined;
1024
+ PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration | undefined;
1025
+ CreationDate?: Date | undefined;
1026
+ Alias?: ObjectLambdaAccessPointAlias | undefined;
1011
1027
  }
1012
1028
  export interface GetAccessPointPolicyRequest {
1013
- AccountId?: string;
1029
+ AccountId?: string | undefined;
1014
1030
  Name: string | undefined;
1015
1031
  }
1016
1032
  export interface GetAccessPointPolicyResult {
1017
- Policy?: string;
1033
+ Policy?: string | undefined;
1018
1034
  }
1019
1035
  export interface GetAccessPointPolicyForObjectLambdaRequest {
1020
- AccountId?: string;
1036
+ AccountId?: string | undefined;
1021
1037
  Name: string | undefined;
1022
1038
  }
1023
1039
  export interface GetAccessPointPolicyForObjectLambdaResult {
1024
- Policy?: string;
1040
+ Policy?: string | undefined;
1025
1041
  }
1026
1042
  export interface GetAccessPointPolicyStatusRequest {
1027
- AccountId?: string;
1043
+ AccountId?: string | undefined;
1028
1044
  Name: string | undefined;
1029
1045
  }
1030
1046
  export interface PolicyStatus {
1031
- IsPublic?: boolean;
1047
+ IsPublic?: boolean | undefined;
1032
1048
  }
1033
1049
  export interface GetAccessPointPolicyStatusResult {
1034
- PolicyStatus?: PolicyStatus;
1050
+ PolicyStatus?: PolicyStatus | undefined;
1035
1051
  }
1036
1052
  export interface GetAccessPointPolicyStatusForObjectLambdaRequest {
1037
- AccountId?: string;
1053
+ AccountId?: string | undefined;
1038
1054
  Name: string | undefined;
1039
1055
  }
1040
1056
  export interface GetAccessPointPolicyStatusForObjectLambdaResult {
1041
- PolicyStatus?: PolicyStatus;
1057
+ PolicyStatus?: PolicyStatus | undefined;
1042
1058
  }
1043
1059
  export interface GetBucketRequest {
1044
- AccountId?: string;
1060
+ AccountId?: string | undefined;
1045
1061
  Bucket: string | undefined;
1046
1062
  }
1047
1063
  export interface GetBucketResult {
1048
- Bucket?: string;
1049
- PublicAccessBlockEnabled?: boolean;
1050
- CreationDate?: Date;
1064
+ Bucket?: string | undefined;
1065
+ PublicAccessBlockEnabled?: boolean | undefined;
1066
+ CreationDate?: Date | undefined;
1051
1067
  }
1052
1068
  export interface GetBucketLifecycleConfigurationRequest {
1053
- AccountId?: string;
1069
+ AccountId?: string | undefined;
1054
1070
  Bucket: string | undefined;
1055
1071
  }
1056
1072
  export interface LifecycleExpiration {
1057
- Date?: Date;
1058
- Days?: number;
1059
- ExpiredObjectDeleteMarker?: boolean;
1073
+ Date?: Date | undefined;
1074
+ Days?: number | undefined;
1075
+ ExpiredObjectDeleteMarker?: boolean | undefined;
1060
1076
  }
1061
1077
  export interface LifecycleRuleAndOperator {
1062
- Prefix?: string;
1063
- Tags?: S3Tag[];
1064
- ObjectSizeGreaterThan?: number;
1065
- ObjectSizeLessThan?: number;
1078
+ Prefix?: string | undefined;
1079
+ Tags?: S3Tag[] | undefined;
1080
+ ObjectSizeGreaterThan?: number | undefined;
1081
+ ObjectSizeLessThan?: number | undefined;
1066
1082
  }
1067
1083
  export interface LifecycleRuleFilter {
1068
- Prefix?: string;
1069
- Tag?: S3Tag;
1070
- And?: LifecycleRuleAndOperator;
1071
- ObjectSizeGreaterThan?: number;
1072
- ObjectSizeLessThan?: number;
1084
+ Prefix?: string | undefined;
1085
+ Tag?: S3Tag | undefined;
1086
+ And?: LifecycleRuleAndOperator | undefined;
1087
+ ObjectSizeGreaterThan?: number | undefined;
1088
+ ObjectSizeLessThan?: number | undefined;
1073
1089
  }
1074
1090
  export interface NoncurrentVersionExpiration {
1075
- NoncurrentDays?: number;
1076
- NewerNoncurrentVersions?: number;
1091
+ NoncurrentDays?: number | undefined;
1092
+ NewerNoncurrentVersions?: number | undefined;
1077
1093
  }
1078
1094
  export declare const TransitionStorageClass: {
1079
1095
  readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
@@ -1085,8 +1101,8 @@ export declare const TransitionStorageClass: {
1085
1101
  export type TransitionStorageClass =
1086
1102
  (typeof TransitionStorageClass)[keyof typeof TransitionStorageClass];
1087
1103
  export interface NoncurrentVersionTransition {
1088
- NoncurrentDays?: number;
1089
- StorageClass?: TransitionStorageClass;
1104
+ NoncurrentDays?: number | undefined;
1105
+ StorageClass?: TransitionStorageClass | undefined;
1090
1106
  }
1091
1107
  export declare const ExpirationStatus: {
1092
1108
  readonly Disabled: "Disabled";
@@ -1095,32 +1111,32 @@ export declare const ExpirationStatus: {
1095
1111
  export type ExpirationStatus =
1096
1112
  (typeof ExpirationStatus)[keyof typeof ExpirationStatus];
1097
1113
  export interface Transition {
1098
- Date?: Date;
1099
- Days?: number;
1100
- StorageClass?: TransitionStorageClass;
1114
+ Date?: Date | undefined;
1115
+ Days?: number | undefined;
1116
+ StorageClass?: TransitionStorageClass | undefined;
1101
1117
  }
1102
1118
  export interface LifecycleRule {
1103
- Expiration?: LifecycleExpiration;
1104
- ID?: string;
1105
- Filter?: LifecycleRuleFilter;
1119
+ Expiration?: LifecycleExpiration | undefined;
1120
+ ID?: string | undefined;
1121
+ Filter?: LifecycleRuleFilter | undefined;
1106
1122
  Status: ExpirationStatus | undefined;
1107
- Transitions?: Transition[];
1108
- NoncurrentVersionTransitions?: NoncurrentVersionTransition[];
1109
- NoncurrentVersionExpiration?: NoncurrentVersionExpiration;
1110
- AbortIncompleteMultipartUpload?: AbortIncompleteMultipartUpload;
1123
+ Transitions?: Transition[] | undefined;
1124
+ NoncurrentVersionTransitions?: NoncurrentVersionTransition[] | undefined;
1125
+ NoncurrentVersionExpiration?: NoncurrentVersionExpiration | undefined;
1126
+ AbortIncompleteMultipartUpload?: AbortIncompleteMultipartUpload | undefined;
1111
1127
  }
1112
1128
  export interface GetBucketLifecycleConfigurationResult {
1113
- Rules?: LifecycleRule[];
1129
+ Rules?: LifecycleRule[] | undefined;
1114
1130
  }
1115
1131
  export interface GetBucketPolicyRequest {
1116
- AccountId?: string;
1132
+ AccountId?: string | undefined;
1117
1133
  Bucket: string | undefined;
1118
1134
  }
1119
1135
  export interface GetBucketPolicyResult {
1120
- Policy?: string;
1136
+ Policy?: string | undefined;
1121
1137
  }
1122
1138
  export interface GetBucketReplicationRequest {
1123
- AccountId?: string;
1139
+ AccountId?: string | undefined;
1124
1140
  Bucket: string | undefined;
1125
1141
  }
1126
1142
  export declare const DeleteMarkerReplicationStatus: {
@@ -1133,10 +1149,10 @@ export interface DeleteMarkerReplication {
1133
1149
  Status: DeleteMarkerReplicationStatus | undefined;
1134
1150
  }
1135
1151
  export interface EncryptionConfiguration {
1136
- ReplicaKmsKeyID?: string;
1152
+ ReplicaKmsKeyID?: string | undefined;
1137
1153
  }
1138
1154
  export interface ReplicationTimeValue {
1139
- Minutes?: number;
1155
+ Minutes?: number | undefined;
1140
1156
  }
1141
1157
  export declare const MetricsStatus: {
1142
1158
  readonly Disabled: "Disabled";
@@ -1145,7 +1161,7 @@ export declare const MetricsStatus: {
1145
1161
  export type MetricsStatus = (typeof MetricsStatus)[keyof typeof MetricsStatus];
1146
1162
  export interface Metrics {
1147
1163
  Status: MetricsStatus | undefined;
1148
- EventThreshold?: ReplicationTimeValue;
1164
+ EventThreshold?: ReplicationTimeValue | undefined;
1149
1165
  }
1150
1166
  export declare const ReplicationTimeStatus: {
1151
1167
  readonly Disabled: "Disabled";
@@ -1171,13 +1187,13 @@ export declare const ReplicationStorageClass: {
1171
1187
  export type ReplicationStorageClass =
1172
1188
  (typeof ReplicationStorageClass)[keyof typeof ReplicationStorageClass];
1173
1189
  export interface Destination {
1174
- Account?: string;
1190
+ Account?: string | undefined;
1175
1191
  Bucket: string | undefined;
1176
- ReplicationTime?: ReplicationTime;
1177
- AccessControlTranslation?: AccessControlTranslation;
1178
- EncryptionConfiguration?: EncryptionConfiguration;
1179
- Metrics?: Metrics;
1180
- StorageClass?: ReplicationStorageClass;
1192
+ ReplicationTime?: ReplicationTime | undefined;
1193
+ AccessControlTranslation?: AccessControlTranslation | undefined;
1194
+ EncryptionConfiguration?: EncryptionConfiguration | undefined;
1195
+ Metrics?: Metrics | undefined;
1196
+ StorageClass?: ReplicationStorageClass | undefined;
1181
1197
  }
1182
1198
  export declare const ExistingObjectReplicationStatus: {
1183
1199
  readonly Disabled: "Disabled";
@@ -1189,13 +1205,13 @@ export interface ExistingObjectReplication {
1189
1205
  Status: ExistingObjectReplicationStatus | undefined;
1190
1206
  }
1191
1207
  export interface ReplicationRuleAndOperator {
1192
- Prefix?: string;
1193
- Tags?: S3Tag[];
1208
+ Prefix?: string | undefined;
1209
+ Tags?: S3Tag[] | undefined;
1194
1210
  }
1195
1211
  export interface ReplicationRuleFilter {
1196
- Prefix?: string;
1197
- Tag?: S3Tag;
1198
- And?: ReplicationRuleAndOperator;
1212
+ Prefix?: string | undefined;
1213
+ Tag?: S3Tag | undefined;
1214
+ And?: ReplicationRuleAndOperator | undefined;
1199
1215
  }
1200
1216
  export declare const ReplicaModificationsStatus: {
1201
1217
  readonly Disabled: "Disabled";
@@ -1216,8 +1232,8 @@ export interface SseKmsEncryptedObjects {
1216
1232
  Status: SseKmsEncryptedObjectsStatus | undefined;
1217
1233
  }
1218
1234
  export interface SourceSelectionCriteria {
1219
- SseKmsEncryptedObjects?: SseKmsEncryptedObjects;
1220
- ReplicaModifications?: ReplicaModifications;
1235
+ SseKmsEncryptedObjects?: SseKmsEncryptedObjects | undefined;
1236
+ ReplicaModifications?: ReplicaModifications | undefined;
1221
1237
  }
1222
1238
  export declare const ReplicationRuleStatus: {
1223
1239
  readonly Disabled: "Disabled";
@@ -1226,15 +1242,15 @@ export declare const ReplicationRuleStatus: {
1226
1242
  export type ReplicationRuleStatus =
1227
1243
  (typeof ReplicationRuleStatus)[keyof typeof ReplicationRuleStatus];
1228
1244
  export interface ReplicationRule {
1229
- ID?: string;
1230
- Priority?: number;
1231
- Prefix?: string;
1232
- Filter?: ReplicationRuleFilter;
1245
+ ID?: string | undefined;
1246
+ Priority?: number | undefined;
1247
+ Prefix?: string | undefined;
1248
+ Filter?: ReplicationRuleFilter | undefined;
1233
1249
  Status: ReplicationRuleStatus | undefined;
1234
- SourceSelectionCriteria?: SourceSelectionCriteria;
1235
- ExistingObjectReplication?: ExistingObjectReplication;
1250
+ SourceSelectionCriteria?: SourceSelectionCriteria | undefined;
1251
+ ExistingObjectReplication?: ExistingObjectReplication | undefined;
1236
1252
  Destination: Destination | undefined;
1237
- DeleteMarkerReplication?: DeleteMarkerReplication;
1253
+ DeleteMarkerReplication?: DeleteMarkerReplication | undefined;
1238
1254
  Bucket: string | undefined;
1239
1255
  }
1240
1256
  export interface ReplicationConfiguration {
@@ -1242,17 +1258,17 @@ export interface ReplicationConfiguration {
1242
1258
  Rules: ReplicationRule[] | undefined;
1243
1259
  }
1244
1260
  export interface GetBucketReplicationResult {
1245
- ReplicationConfiguration?: ReplicationConfiguration;
1261
+ ReplicationConfiguration?: ReplicationConfiguration | undefined;
1246
1262
  }
1247
1263
  export interface GetBucketTaggingRequest {
1248
- AccountId?: string;
1264
+ AccountId?: string | undefined;
1249
1265
  Bucket: string | undefined;
1250
1266
  }
1251
1267
  export interface GetBucketTaggingResult {
1252
1268
  TagSet: S3Tag[] | undefined;
1253
1269
  }
1254
1270
  export interface GetBucketVersioningRequest {
1255
- AccountId?: string;
1271
+ AccountId?: string | undefined;
1256
1272
  Bucket: string | undefined;
1257
1273
  }
1258
1274
  export declare const MFADeleteStatus: {
@@ -1268,8 +1284,8 @@ export declare const BucketVersioningStatus: {
1268
1284
  export type BucketVersioningStatus =
1269
1285
  (typeof BucketVersioningStatus)[keyof typeof BucketVersioningStatus];
1270
1286
  export interface GetBucketVersioningResult {
1271
- Status?: BucketVersioningStatus;
1272
- MFADelete?: MFADeleteStatus;
1287
+ Status?: BucketVersioningStatus | undefined;
1288
+ MFADelete?: MFADeleteStatus | undefined;
1273
1289
  }
1274
1290
  export declare const Privilege: {
1275
1291
  readonly Default: "Default";
@@ -1277,38 +1293,38 @@ export declare const Privilege: {
1277
1293
  };
1278
1294
  export type Privilege = (typeof Privilege)[keyof typeof Privilege];
1279
1295
  export interface GetDataAccessRequest {
1280
- AccountId?: string;
1296
+ AccountId?: string | undefined;
1281
1297
  Target: string | undefined;
1282
1298
  Permission: Permission | undefined;
1283
- DurationSeconds?: number;
1284
- Privilege?: Privilege;
1285
- TargetType?: S3PrefixType;
1299
+ DurationSeconds?: number | undefined;
1300
+ Privilege?: Privilege | undefined;
1301
+ TargetType?: S3PrefixType | undefined;
1286
1302
  }
1287
1303
  export interface Credentials {
1288
- AccessKeyId?: string;
1289
- SecretAccessKey?: string;
1290
- SessionToken?: string;
1291
- Expiration?: Date;
1304
+ AccessKeyId?: string | undefined;
1305
+ SecretAccessKey?: string | undefined;
1306
+ SessionToken?: string | undefined;
1307
+ Expiration?: Date | undefined;
1292
1308
  }
1293
1309
  export interface GetDataAccessResult {
1294
- Credentials?: Credentials;
1295
- MatchedGrantTarget?: string;
1310
+ Credentials?: Credentials | undefined;
1311
+ MatchedGrantTarget?: string | undefined;
1296
1312
  }
1297
1313
  export interface GetJobTaggingRequest {
1298
- AccountId?: string;
1314
+ AccountId?: string | undefined;
1299
1315
  JobId: string | undefined;
1300
1316
  }
1301
1317
  export interface GetJobTaggingResult {
1302
- Tags?: S3Tag[];
1318
+ Tags?: S3Tag[] | undefined;
1303
1319
  }
1304
1320
  export interface GetMultiRegionAccessPointRequest {
1305
- AccountId?: string;
1321
+ AccountId?: string | undefined;
1306
1322
  Name: string | undefined;
1307
1323
  }
1308
1324
  export interface RegionReport {
1309
- Bucket?: string;
1310
- Region?: string;
1311
- BucketAccountId?: string;
1325
+ Bucket?: string | undefined;
1326
+ Region?: string | undefined;
1327
+ BucketAccountId?: string | undefined;
1312
1328
  }
1313
1329
  export declare const MultiRegionAccessPointStatus: {
1314
1330
  readonly CREATING: "CREATING";
@@ -1321,63 +1337,63 @@ export declare const MultiRegionAccessPointStatus: {
1321
1337
  export type MultiRegionAccessPointStatus =
1322
1338
  (typeof MultiRegionAccessPointStatus)[keyof typeof MultiRegionAccessPointStatus];
1323
1339
  export interface MultiRegionAccessPointReport {
1324
- Name?: string;
1325
- Alias?: string;
1326
- CreatedAt?: Date;
1327
- PublicAccessBlock?: PublicAccessBlockConfiguration;
1328
- Status?: MultiRegionAccessPointStatus;
1329
- Regions?: RegionReport[];
1340
+ Name?: string | undefined;
1341
+ Alias?: string | undefined;
1342
+ CreatedAt?: Date | undefined;
1343
+ PublicAccessBlock?: PublicAccessBlockConfiguration | undefined;
1344
+ Status?: MultiRegionAccessPointStatus | undefined;
1345
+ Regions?: RegionReport[] | undefined;
1330
1346
  }
1331
1347
  export interface GetMultiRegionAccessPointResult {
1332
- AccessPoint?: MultiRegionAccessPointReport;
1348
+ AccessPoint?: MultiRegionAccessPointReport | undefined;
1333
1349
  }
1334
1350
  export interface GetMultiRegionAccessPointPolicyRequest {
1335
- AccountId?: string;
1351
+ AccountId?: string | undefined;
1336
1352
  Name: string | undefined;
1337
1353
  }
1338
1354
  export interface EstablishedMultiRegionAccessPointPolicy {
1339
- Policy?: string;
1355
+ Policy?: string | undefined;
1340
1356
  }
1341
1357
  export interface ProposedMultiRegionAccessPointPolicy {
1342
- Policy?: string;
1358
+ Policy?: string | undefined;
1343
1359
  }
1344
1360
  export interface MultiRegionAccessPointPolicyDocument {
1345
- Established?: EstablishedMultiRegionAccessPointPolicy;
1346
- Proposed?: ProposedMultiRegionAccessPointPolicy;
1361
+ Established?: EstablishedMultiRegionAccessPointPolicy | undefined;
1362
+ Proposed?: ProposedMultiRegionAccessPointPolicy | undefined;
1347
1363
  }
1348
1364
  export interface GetMultiRegionAccessPointPolicyResult {
1349
- Policy?: MultiRegionAccessPointPolicyDocument;
1365
+ Policy?: MultiRegionAccessPointPolicyDocument | undefined;
1350
1366
  }
1351
1367
  export interface GetMultiRegionAccessPointPolicyStatusRequest {
1352
- AccountId?: string;
1368
+ AccountId?: string | undefined;
1353
1369
  Name: string | undefined;
1354
1370
  }
1355
1371
  export interface GetMultiRegionAccessPointPolicyStatusResult {
1356
- Established?: PolicyStatus;
1372
+ Established?: PolicyStatus | undefined;
1357
1373
  }
1358
1374
  export interface GetMultiRegionAccessPointRoutesRequest {
1359
- AccountId?: string;
1375
+ AccountId?: string | undefined;
1360
1376
  Mrap: string | undefined;
1361
1377
  }
1362
1378
  export interface MultiRegionAccessPointRoute {
1363
- Bucket?: string;
1364
- Region?: string;
1379
+ Bucket?: string | undefined;
1380
+ Region?: string | undefined;
1365
1381
  TrafficDialPercentage: number | undefined;
1366
1382
  }
1367
1383
  export interface GetMultiRegionAccessPointRoutesResult {
1368
- Mrap?: string;
1369
- Routes?: MultiRegionAccessPointRoute[];
1384
+ Mrap?: string | undefined;
1385
+ Routes?: MultiRegionAccessPointRoute[] | undefined;
1370
1386
  }
1371
1387
  export interface GetPublicAccessBlockOutput {
1372
- PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
1388
+ PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration | undefined;
1373
1389
  }
1374
1390
  export interface GetPublicAccessBlockRequest {
1375
- AccountId?: string;
1391
+ AccountId?: string | undefined;
1376
1392
  }
1377
1393
  export declare class NoSuchPublicAccessBlockConfiguration extends __BaseException {
1378
1394
  readonly name: "NoSuchPublicAccessBlockConfiguration";
1379
1395
  readonly $fault: "client";
1380
- Message?: string;
1396
+ Message?: string | undefined;
1381
1397
  constructor(
1382
1398
  opts: __ExceptionOptionType<
1383
1399
  NoSuchPublicAccessBlockConfiguration,
@@ -1387,7 +1403,7 @@ export declare class NoSuchPublicAccessBlockConfiguration extends __BaseExceptio
1387
1403
  }
1388
1404
  export interface GetStorageLensConfigurationRequest {
1389
1405
  ConfigId: string | undefined;
1390
- AccountId?: string;
1406
+ AccountId?: string | undefined;
1391
1407
  }
1392
1408
  export interface StorageLensAwsOrg {
1393
1409
  Arn: string | undefined;
@@ -1400,8 +1416,8 @@ export interface SSEKMS {
1400
1416
  }
1401
1417
  export interface SSES3 {}
1402
1418
  export interface StorageLensDataExportEncryption {
1403
- SSES3?: SSES3;
1404
- SSEKMS?: SSEKMS;
1419
+ SSES3?: SSES3 | undefined;
1420
+ SSEKMS?: SSEKMS | undefined;
1405
1421
  }
1406
1422
  export declare const Format: {
1407
1423
  readonly CSV: "CSV";
@@ -1416,131 +1432,131 @@ export type OutputSchemaVersion =
1416
1432
  export interface S3BucketDestination {
1417
1433
  Format: Format | undefined;
1418
1434
  OutputSchemaVersion: OutputSchemaVersion | undefined;
1419
- AccountId?: string;
1435
+ AccountId?: string | undefined;
1420
1436
  Arn: string | undefined;
1421
- Prefix?: string;
1422
- Encryption?: StorageLensDataExportEncryption;
1437
+ Prefix?: string | undefined;
1438
+ Encryption?: StorageLensDataExportEncryption | undefined;
1423
1439
  }
1424
1440
  export interface StorageLensDataExport {
1425
- S3BucketDestination?: S3BucketDestination;
1426
- CloudWatchMetrics?: CloudWatchMetrics;
1441
+ S3BucketDestination?: S3BucketDestination | undefined;
1442
+ CloudWatchMetrics?: CloudWatchMetrics | undefined;
1427
1443
  }
1428
1444
  export interface _Exclude {
1429
- Buckets?: string[];
1430
- Regions?: string[];
1445
+ Buckets?: string[] | undefined;
1446
+ Regions?: string[] | undefined;
1431
1447
  }
1432
1448
  export interface Include {
1433
- Buckets?: string[];
1434
- Regions?: string[];
1449
+ Buckets?: string[] | undefined;
1450
+ Regions?: string[] | undefined;
1435
1451
  }
1436
1452
  export interface StorageLensConfiguration {
1437
1453
  Id: string | undefined;
1438
1454
  AccountLevel: AccountLevel | undefined;
1439
- Include?: Include;
1440
- Exclude?: _Exclude;
1441
- DataExport?: StorageLensDataExport;
1455
+ Include?: Include | undefined;
1456
+ Exclude?: _Exclude | undefined;
1457
+ DataExport?: StorageLensDataExport | undefined;
1442
1458
  IsEnabled: boolean | undefined;
1443
- AwsOrg?: StorageLensAwsOrg;
1444
- StorageLensArn?: string;
1459
+ AwsOrg?: StorageLensAwsOrg | undefined;
1460
+ StorageLensArn?: string | undefined;
1445
1461
  }
1446
1462
  export interface GetStorageLensConfigurationResult {
1447
- StorageLensConfiguration?: StorageLensConfiguration;
1463
+ StorageLensConfiguration?: StorageLensConfiguration | undefined;
1448
1464
  }
1449
1465
  export interface GetStorageLensConfigurationTaggingRequest {
1450
1466
  ConfigId: string | undefined;
1451
- AccountId?: string;
1467
+ AccountId?: string | undefined;
1452
1468
  }
1453
1469
  export interface StorageLensTag {
1454
1470
  Key: string | undefined;
1455
1471
  Value: string | undefined;
1456
1472
  }
1457
1473
  export interface GetStorageLensConfigurationTaggingResult {
1458
- Tags?: StorageLensTag[];
1474
+ Tags?: StorageLensTag[] | undefined;
1459
1475
  }
1460
1476
  export interface GetStorageLensGroupRequest {
1461
1477
  Name: string | undefined;
1462
- AccountId?: string;
1478
+ AccountId?: string | undefined;
1463
1479
  }
1464
1480
  export interface GetStorageLensGroupResult {
1465
- StorageLensGroup?: StorageLensGroup;
1481
+ StorageLensGroup?: StorageLensGroup | undefined;
1466
1482
  }
1467
1483
  export interface ListAccessGrantsRequest {
1468
- AccountId?: string;
1469
- NextToken?: string;
1470
- MaxResults?: number;
1471
- GranteeType?: GranteeType;
1472
- GranteeIdentifier?: string;
1473
- Permission?: Permission;
1474
- GrantScope?: string;
1475
- ApplicationArn?: string;
1484
+ AccountId?: string | undefined;
1485
+ NextToken?: string | undefined;
1486
+ MaxResults?: number | undefined;
1487
+ GranteeType?: GranteeType | undefined;
1488
+ GranteeIdentifier?: string | undefined;
1489
+ Permission?: Permission | undefined;
1490
+ GrantScope?: string | undefined;
1491
+ ApplicationArn?: string | undefined;
1476
1492
  }
1477
1493
  export interface ListAccessGrantsResult {
1478
- NextToken?: string;
1479
- AccessGrantsList?: ListAccessGrantEntry[];
1494
+ NextToken?: string | undefined;
1495
+ AccessGrantsList?: ListAccessGrantEntry[] | undefined;
1480
1496
  }
1481
1497
  export interface ListAccessGrantsInstancesRequest {
1482
- AccountId?: string;
1483
- NextToken?: string;
1484
- MaxResults?: number;
1498
+ AccountId?: string | undefined;
1499
+ NextToken?: string | undefined;
1500
+ MaxResults?: number | undefined;
1485
1501
  }
1486
1502
  export interface ListAccessGrantsInstancesResult {
1487
- NextToken?: string;
1488
- AccessGrantsInstancesList?: ListAccessGrantsInstanceEntry[];
1503
+ NextToken?: string | undefined;
1504
+ AccessGrantsInstancesList?: ListAccessGrantsInstanceEntry[] | undefined;
1489
1505
  }
1490
1506
  export interface ListAccessGrantsLocationsRequest {
1491
- AccountId?: string;
1492
- NextToken?: string;
1493
- MaxResults?: number;
1494
- LocationScope?: string;
1507
+ AccountId?: string | undefined;
1508
+ NextToken?: string | undefined;
1509
+ MaxResults?: number | undefined;
1510
+ LocationScope?: string | undefined;
1495
1511
  }
1496
1512
  export interface ListAccessGrantsLocationsResult {
1497
- NextToken?: string;
1498
- AccessGrantsLocationsList?: ListAccessGrantsLocationsEntry[];
1513
+ NextToken?: string | undefined;
1514
+ AccessGrantsLocationsList?: ListAccessGrantsLocationsEntry[] | undefined;
1499
1515
  }
1500
1516
  export interface ListAccessPointsRequest {
1501
- AccountId?: string;
1502
- Bucket?: string;
1503
- NextToken?: string;
1504
- MaxResults?: number;
1517
+ AccountId?: string | undefined;
1518
+ Bucket?: string | undefined;
1519
+ NextToken?: string | undefined;
1520
+ MaxResults?: number | undefined;
1505
1521
  }
1506
1522
  export interface ListAccessPointsResult {
1507
- AccessPointList?: AccessPoint[];
1508
- NextToken?: string;
1523
+ AccessPointList?: AccessPoint[] | undefined;
1524
+ NextToken?: string | undefined;
1509
1525
  }
1510
1526
  export interface ListAccessPointsForObjectLambdaRequest {
1511
- AccountId?: string;
1512
- NextToken?: string;
1513
- MaxResults?: number;
1527
+ AccountId?: string | undefined;
1528
+ NextToken?: string | undefined;
1529
+ MaxResults?: number | undefined;
1514
1530
  }
1515
1531
  export interface ObjectLambdaAccessPoint {
1516
1532
  Name: string | undefined;
1517
- ObjectLambdaAccessPointArn?: string;
1518
- Alias?: ObjectLambdaAccessPointAlias;
1533
+ ObjectLambdaAccessPointArn?: string | undefined;
1534
+ Alias?: ObjectLambdaAccessPointAlias | undefined;
1519
1535
  }
1520
1536
  export interface ListAccessPointsForObjectLambdaResult {
1521
- ObjectLambdaAccessPointList?: ObjectLambdaAccessPoint[];
1522
- NextToken?: string;
1537
+ ObjectLambdaAccessPointList?: ObjectLambdaAccessPoint[] | undefined;
1538
+ NextToken?: string | undefined;
1523
1539
  }
1524
1540
  export interface ListCallerAccessGrantsRequest {
1525
- AccountId?: string;
1526
- GrantScope?: string;
1527
- NextToken?: string;
1528
- MaxResults?: number;
1529
- AllowedByApplication?: boolean;
1541
+ AccountId?: string | undefined;
1542
+ GrantScope?: string | undefined;
1543
+ NextToken?: string | undefined;
1544
+ MaxResults?: number | undefined;
1545
+ AllowedByApplication?: boolean | undefined;
1530
1546
  }
1531
1547
  export interface ListCallerAccessGrantsEntry {
1532
- Permission?: Permission;
1533
- GrantScope?: string;
1534
- ApplicationArn?: string;
1548
+ Permission?: Permission | undefined;
1549
+ GrantScope?: string | undefined;
1550
+ ApplicationArn?: string | undefined;
1535
1551
  }
1536
1552
  export interface ListCallerAccessGrantsResult {
1537
- NextToken?: string;
1538
- CallerAccessGrantsList?: ListCallerAccessGrantsEntry[];
1553
+ NextToken?: string | undefined;
1554
+ CallerAccessGrantsList?: ListCallerAccessGrantsEntry[] | undefined;
1539
1555
  }
1540
1556
  export declare class InvalidNextTokenException extends __BaseException {
1541
1557
  readonly name: "InvalidNextTokenException";
1542
1558
  readonly $fault: "client";
1543
- Message?: string;
1559
+ Message?: string | undefined;
1544
1560
  constructor(
1545
1561
  opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
1546
1562
  );
@@ -1548,16 +1564,16 @@ export declare class InvalidNextTokenException extends __BaseException {
1548
1564
  export declare class InvalidRequestException extends __BaseException {
1549
1565
  readonly name: "InvalidRequestException";
1550
1566
  readonly $fault: "client";
1551
- Message?: string;
1567
+ Message?: string | undefined;
1552
1568
  constructor(
1553
1569
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
1554
1570
  );
1555
1571
  }
1556
1572
  export interface ListJobsRequest {
1557
- AccountId?: string;
1558
- JobStatuses?: JobStatus[];
1559
- NextToken?: string;
1560
- MaxResults?: number;
1573
+ AccountId?: string | undefined;
1574
+ JobStatuses?: JobStatus[] | undefined;
1575
+ NextToken?: string | undefined;
1576
+ MaxResults?: number | undefined;
1561
1577
  }
1562
1578
  export declare const OperationName: {
1563
1579
  readonly LambdaInvoke: "LambdaInvoke";
@@ -1572,48 +1588,48 @@ export declare const OperationName: {
1572
1588
  };
1573
1589
  export type OperationName = (typeof OperationName)[keyof typeof OperationName];
1574
1590
  export interface JobListDescriptor {
1575
- JobId?: string;
1576
- Description?: string;
1577
- Operation?: OperationName;
1578
- Priority?: number;
1579
- Status?: JobStatus;
1580
- CreationTime?: Date;
1581
- TerminationDate?: Date;
1582
- ProgressSummary?: JobProgressSummary;
1591
+ JobId?: string | undefined;
1592
+ Description?: string | undefined;
1593
+ Operation?: OperationName | undefined;
1594
+ Priority?: number | undefined;
1595
+ Status?: JobStatus | undefined;
1596
+ CreationTime?: Date | undefined;
1597
+ TerminationDate?: Date | undefined;
1598
+ ProgressSummary?: JobProgressSummary | undefined;
1583
1599
  }
1584
1600
  export interface ListJobsResult {
1585
- NextToken?: string;
1586
- Jobs?: JobListDescriptor[];
1601
+ NextToken?: string | undefined;
1602
+ Jobs?: JobListDescriptor[] | undefined;
1587
1603
  }
1588
1604
  export interface ListMultiRegionAccessPointsRequest {
1589
- AccountId?: string;
1590
- NextToken?: string;
1591
- MaxResults?: number;
1605
+ AccountId?: string | undefined;
1606
+ NextToken?: string | undefined;
1607
+ MaxResults?: number | undefined;
1592
1608
  }
1593
1609
  export interface ListMultiRegionAccessPointsResult {
1594
- AccessPoints?: MultiRegionAccessPointReport[];
1595
- NextToken?: string;
1610
+ AccessPoints?: MultiRegionAccessPointReport[] | undefined;
1611
+ NextToken?: string | undefined;
1596
1612
  }
1597
1613
  export interface ListRegionalBucketsRequest {
1598
- AccountId?: string;
1599
- NextToken?: string;
1600
- MaxResults?: number;
1601
- OutpostId?: string;
1614
+ AccountId?: string | undefined;
1615
+ NextToken?: string | undefined;
1616
+ MaxResults?: number | undefined;
1617
+ OutpostId?: string | undefined;
1602
1618
  }
1603
1619
  export interface RegionalBucket {
1604
1620
  Bucket: string | undefined;
1605
- BucketArn?: string;
1621
+ BucketArn?: string | undefined;
1606
1622
  PublicAccessBlockEnabled: boolean | undefined;
1607
1623
  CreationDate: Date | undefined;
1608
- OutpostId?: string;
1624
+ OutpostId?: string | undefined;
1609
1625
  }
1610
1626
  export interface ListRegionalBucketsResult {
1611
- RegionalBucketList?: RegionalBucket[];
1612
- NextToken?: string;
1627
+ RegionalBucketList?: RegionalBucket[] | undefined;
1628
+ NextToken?: string | undefined;
1613
1629
  }
1614
1630
  export interface ListStorageLensConfigurationsRequest {
1615
- AccountId?: string;
1616
- NextToken?: string;
1631
+ AccountId?: string | undefined;
1632
+ NextToken?: string | undefined;
1617
1633
  }
1618
1634
  export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
1619
1635
  export declare const GetDataAccessResultFilterSensitiveLog: (