@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.
|
@@ -29,7 +29,7 @@ export interface ListStorageLensConfigurationEntry {
|
|
|
29
29
|
* required.</p>
|
|
30
30
|
* @public
|
|
31
31
|
*/
|
|
32
|
-
IsEnabled?: boolean;
|
|
32
|
+
IsEnabled?: boolean | undefined;
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
35
|
* @public
|
|
@@ -41,12 +41,12 @@ export interface ListStorageLensConfigurationsResult {
|
|
|
41
41
|
* results.</p>
|
|
42
42
|
* @public
|
|
43
43
|
*/
|
|
44
|
-
NextToken?: string;
|
|
44
|
+
NextToken?: string | undefined;
|
|
45
45
|
/**
|
|
46
46
|
* <p>A list of S3 Storage Lens configurations.</p>
|
|
47
47
|
* @public
|
|
48
48
|
*/
|
|
49
|
-
StorageLensConfigurationList?: ListStorageLensConfigurationEntry[];
|
|
49
|
+
StorageLensConfigurationList?: ListStorageLensConfigurationEntry[] | undefined;
|
|
50
50
|
}
|
|
51
51
|
/**
|
|
52
52
|
* @public
|
|
@@ -58,13 +58,13 @@ export interface ListStorageLensGroupsRequest {
|
|
|
58
58
|
* </p>
|
|
59
59
|
* @public
|
|
60
60
|
*/
|
|
61
|
-
AccountId?: string;
|
|
61
|
+
AccountId?: string | undefined;
|
|
62
62
|
/**
|
|
63
63
|
* <p>The token for the next set of results, or <code>null</code> if there are no more results.
|
|
64
64
|
* </p>
|
|
65
65
|
* @public
|
|
66
66
|
*/
|
|
67
|
-
NextToken?: string;
|
|
67
|
+
NextToken?: string | undefined;
|
|
68
68
|
}
|
|
69
69
|
/**
|
|
70
70
|
* <p>
|
|
@@ -108,14 +108,14 @@ export interface ListStorageLensGroupsResult {
|
|
|
108
108
|
* </p>
|
|
109
109
|
* @public
|
|
110
110
|
*/
|
|
111
|
-
NextToken?: string;
|
|
111
|
+
NextToken?: string | undefined;
|
|
112
112
|
/**
|
|
113
113
|
* <p>
|
|
114
114
|
* The list of Storage Lens groups that exist in the specified home Region.
|
|
115
115
|
* </p>
|
|
116
116
|
* @public
|
|
117
117
|
*/
|
|
118
|
-
StorageLensGroupList?: ListStorageLensGroupEntry[];
|
|
118
|
+
StorageLensGroupList?: ListStorageLensGroupEntry[] | undefined;
|
|
119
119
|
}
|
|
120
120
|
/**
|
|
121
121
|
* @public
|
|
@@ -127,7 +127,7 @@ export interface ListTagsForResourceRequest {
|
|
|
127
127
|
* </p>
|
|
128
128
|
* @public
|
|
129
129
|
*/
|
|
130
|
-
AccountId?: string;
|
|
130
|
+
AccountId?: string | undefined;
|
|
131
131
|
/**
|
|
132
132
|
* <p>
|
|
133
133
|
* The Amazon Resource Name (ARN) of the S3 resource that you want to list the tags for. The tagged resource can be an S3 Storage Lens group or S3 Access Grants instance, registered location, or grant.
|
|
@@ -146,7 +146,7 @@ export interface ListTagsForResourceResult {
|
|
|
146
146
|
* </p>
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
Tags?: Tag[];
|
|
149
|
+
Tags?: Tag[] | undefined;
|
|
150
150
|
}
|
|
151
151
|
/**
|
|
152
152
|
* @public
|
|
@@ -156,7 +156,7 @@ export interface PutAccessGrantsInstanceResourcePolicyRequest {
|
|
|
156
156
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
157
157
|
* @public
|
|
158
158
|
*/
|
|
159
|
-
AccountId?: string;
|
|
159
|
+
AccountId?: string | undefined;
|
|
160
160
|
/**
|
|
161
161
|
* <p>The resource policy of the S3 Access Grants instance that you are updating.</p>
|
|
162
162
|
* @public
|
|
@@ -166,7 +166,7 @@ export interface PutAccessGrantsInstanceResourcePolicyRequest {
|
|
|
166
166
|
* <p>The Organization of the resource policy of the S3 Access Grants instance.</p>
|
|
167
167
|
* @public
|
|
168
168
|
*/
|
|
169
|
-
Organization?: string;
|
|
169
|
+
Organization?: string | undefined;
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
172
|
* @public
|
|
@@ -176,17 +176,17 @@ export interface PutAccessGrantsInstanceResourcePolicyResult {
|
|
|
176
176
|
* <p>The updated resource policy of the S3 Access Grants instance.</p>
|
|
177
177
|
* @public
|
|
178
178
|
*/
|
|
179
|
-
Policy?: string;
|
|
179
|
+
Policy?: string | undefined;
|
|
180
180
|
/**
|
|
181
181
|
* <p>The Organization of the resource policy of the S3 Access Grants instance.</p>
|
|
182
182
|
* @public
|
|
183
183
|
*/
|
|
184
|
-
Organization?: string;
|
|
184
|
+
Organization?: string | undefined;
|
|
185
185
|
/**
|
|
186
186
|
* <p>The date and time when you created the S3 Access Grants instance resource policy. </p>
|
|
187
187
|
* @public
|
|
188
188
|
*/
|
|
189
|
-
CreatedAt?: Date;
|
|
189
|
+
CreatedAt?: Date | undefined;
|
|
190
190
|
}
|
|
191
191
|
/**
|
|
192
192
|
* @public
|
|
@@ -196,7 +196,7 @@ export interface PutAccessPointConfigurationForObjectLambdaRequest {
|
|
|
196
196
|
* <p>The account ID for the account that owns the specified Object Lambda Access Point.</p>
|
|
197
197
|
* @public
|
|
198
198
|
*/
|
|
199
|
-
AccountId?: string;
|
|
199
|
+
AccountId?: string | undefined;
|
|
200
200
|
/**
|
|
201
201
|
* <p>The name of the Object Lambda Access Point.</p>
|
|
202
202
|
* @public
|
|
@@ -216,7 +216,7 @@ export interface PutAccessPointPolicyRequest {
|
|
|
216
216
|
* <p>The Amazon Web Services account ID for owner of the bucket associated with the specified access point.</p>
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
AccountId?: string;
|
|
219
|
+
AccountId?: string | undefined;
|
|
220
220
|
/**
|
|
221
221
|
* <p>The name of the access point that you want to associate with the specified policy.</p>
|
|
222
222
|
* <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>
|
|
@@ -240,7 +240,7 @@ export interface PutAccessPointPolicyForObjectLambdaRequest {
|
|
|
240
240
|
* <p>The account ID for the account that owns the specified Object Lambda Access Point.</p>
|
|
241
241
|
* @public
|
|
242
242
|
*/
|
|
243
|
-
AccountId?: string;
|
|
243
|
+
AccountId?: string | undefined;
|
|
244
244
|
/**
|
|
245
245
|
* <p>The name of the Object Lambda Access Point.</p>
|
|
246
246
|
* @public
|
|
@@ -261,7 +261,7 @@ export interface LifecycleConfiguration {
|
|
|
261
261
|
* <p>A lifecycle rule for individual objects in an Outposts bucket. </p>
|
|
262
262
|
* @public
|
|
263
263
|
*/
|
|
264
|
-
Rules?: LifecycleRule[];
|
|
264
|
+
Rules?: LifecycleRule[] | undefined;
|
|
265
265
|
}
|
|
266
266
|
/**
|
|
267
267
|
* @public
|
|
@@ -271,7 +271,7 @@ export interface PutBucketLifecycleConfigurationRequest {
|
|
|
271
271
|
* <p>The Amazon Web Services account ID of the Outposts bucket.</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
AccountId?: string;
|
|
274
|
+
AccountId?: string | undefined;
|
|
275
275
|
/**
|
|
276
276
|
* <p>The name of the bucket for which to set the configuration.</p>
|
|
277
277
|
* @public
|
|
@@ -281,7 +281,7 @@ export interface PutBucketLifecycleConfigurationRequest {
|
|
|
281
281
|
* <p>Container for lifecycle rules. You can add as many as 1,000 rules.</p>
|
|
282
282
|
* @public
|
|
283
283
|
*/
|
|
284
|
-
LifecycleConfiguration?: LifecycleConfiguration;
|
|
284
|
+
LifecycleConfiguration?: LifecycleConfiguration | undefined;
|
|
285
285
|
}
|
|
286
286
|
/**
|
|
287
287
|
* @public
|
|
@@ -291,7 +291,7 @@ export interface PutBucketPolicyRequest {
|
|
|
291
291
|
* <p>The Amazon Web Services account ID of the Outposts bucket.</p>
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
AccountId?: string;
|
|
294
|
+
AccountId?: string | undefined;
|
|
295
295
|
/**
|
|
296
296
|
* <p>Specifies the bucket.</p>
|
|
297
297
|
* <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>
|
|
@@ -307,7 +307,7 @@ export interface PutBucketPolicyRequest {
|
|
|
307
307
|
* </note>
|
|
308
308
|
* @public
|
|
309
309
|
*/
|
|
310
|
-
ConfirmRemoveSelfBucketAccess?: boolean;
|
|
310
|
+
ConfirmRemoveSelfBucketAccess?: boolean | undefined;
|
|
311
311
|
/**
|
|
312
312
|
* <p>The bucket policy as a JSON document.</p>
|
|
313
313
|
* @public
|
|
@@ -322,7 +322,7 @@ export interface PutBucketReplicationRequest {
|
|
|
322
322
|
* <p>The Amazon Web Services account ID of the Outposts bucket.</p>
|
|
323
323
|
* @public
|
|
324
324
|
*/
|
|
325
|
-
AccountId?: string;
|
|
325
|
+
AccountId?: string | undefined;
|
|
326
326
|
/**
|
|
327
327
|
* <p>Specifies the S3 on Outposts bucket to set the configuration for.</p>
|
|
328
328
|
* <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>
|
|
@@ -355,7 +355,7 @@ export interface PutBucketTaggingRequest {
|
|
|
355
355
|
* <p>The Amazon Web Services account ID of the Outposts bucket.</p>
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
AccountId?: string;
|
|
358
|
+
AccountId?: string | undefined;
|
|
359
359
|
/**
|
|
360
360
|
* <p>The Amazon Resource Name (ARN) of the bucket.</p>
|
|
361
361
|
* <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>
|
|
@@ -392,12 +392,12 @@ export interface VersioningConfiguration {
|
|
|
392
392
|
* configuration for the S3 on Outposts bucket.</p>
|
|
393
393
|
* @public
|
|
394
394
|
*/
|
|
395
|
-
MFADelete?: MFADelete;
|
|
395
|
+
MFADelete?: MFADelete | undefined;
|
|
396
396
|
/**
|
|
397
397
|
* <p>Sets the versioning state of the S3 on Outposts bucket.</p>
|
|
398
398
|
* @public
|
|
399
399
|
*/
|
|
400
|
-
Status?: BucketVersioningStatus;
|
|
400
|
+
Status?: BucketVersioningStatus | undefined;
|
|
401
401
|
}
|
|
402
402
|
/**
|
|
403
403
|
* @public
|
|
@@ -407,7 +407,7 @@ export interface PutBucketVersioningRequest {
|
|
|
407
407
|
* <p>The Amazon Web Services account ID of the S3 on Outposts bucket.</p>
|
|
408
408
|
* @public
|
|
409
409
|
*/
|
|
410
|
-
AccountId?: string;
|
|
410
|
+
AccountId?: string | undefined;
|
|
411
411
|
/**
|
|
412
412
|
* <p>The S3 on Outposts bucket to set the versioning state for.</p>
|
|
413
413
|
* @public
|
|
@@ -418,7 +418,7 @@ export interface PutBucketVersioningRequest {
|
|
|
418
418
|
* that is displayed on your authentication device.</p>
|
|
419
419
|
* @public
|
|
420
420
|
*/
|
|
421
|
-
MFA?: string;
|
|
421
|
+
MFA?: string | undefined;
|
|
422
422
|
/**
|
|
423
423
|
* <p>The root-level tag for the <code>VersioningConfiguration</code> parameters.</p>
|
|
424
424
|
* @public
|
|
@@ -433,7 +433,7 @@ export interface PutJobTaggingRequest {
|
|
|
433
433
|
* <p>The Amazon Web Services account ID associated with the S3 Batch Operations job.</p>
|
|
434
434
|
* @public
|
|
435
435
|
*/
|
|
436
|
-
AccountId?: string;
|
|
436
|
+
AccountId?: string | undefined;
|
|
437
437
|
/**
|
|
438
438
|
* <p>The ID for the S3 Batch Operations job whose tags you want to replace.</p>
|
|
439
439
|
* @public
|
|
@@ -457,7 +457,7 @@ export interface PutJobTaggingResult {
|
|
|
457
457
|
export declare class TooManyTagsException extends __BaseException {
|
|
458
458
|
readonly name: "TooManyTagsException";
|
|
459
459
|
readonly $fault: "client";
|
|
460
|
-
Message?: string;
|
|
460
|
+
Message?: string | undefined;
|
|
461
461
|
/**
|
|
462
462
|
* @internal
|
|
463
463
|
*/
|
|
@@ -471,13 +471,13 @@ export interface PutMultiRegionAccessPointPolicyRequest {
|
|
|
471
471
|
* <p>The Amazon Web Services account ID for the owner of the Multi-Region Access Point.</p>
|
|
472
472
|
* @public
|
|
473
473
|
*/
|
|
474
|
-
AccountId?: string;
|
|
474
|
+
AccountId?: string | undefined;
|
|
475
475
|
/**
|
|
476
476
|
* <p>An idempotency token used to identify the request and guarantee that requests are
|
|
477
477
|
* unique.</p>
|
|
478
478
|
* @public
|
|
479
479
|
*/
|
|
480
|
-
ClientToken?: string;
|
|
480
|
+
ClientToken?: string | undefined;
|
|
481
481
|
/**
|
|
482
482
|
* <p>A container element containing the details of the policy for the Multi-Region Access Point.</p>
|
|
483
483
|
* @public
|
|
@@ -493,7 +493,7 @@ export interface PutMultiRegionAccessPointPolicyResult {
|
|
|
493
493
|
* requests.</p>
|
|
494
494
|
* @public
|
|
495
495
|
*/
|
|
496
|
-
RequestTokenARN?: string;
|
|
496
|
+
RequestTokenARN?: string | undefined;
|
|
497
497
|
}
|
|
498
498
|
/**
|
|
499
499
|
* @public
|
|
@@ -510,7 +510,7 @@ export interface PutPublicAccessBlockRequest {
|
|
|
510
510
|
* you want to set.</p>
|
|
511
511
|
* @public
|
|
512
512
|
*/
|
|
513
|
-
AccountId?: string;
|
|
513
|
+
AccountId?: string | undefined;
|
|
514
514
|
}
|
|
515
515
|
/**
|
|
516
516
|
* @public
|
|
@@ -525,7 +525,7 @@ export interface PutStorageLensConfigurationRequest {
|
|
|
525
525
|
* <p>The account ID of the requester.</p>
|
|
526
526
|
* @public
|
|
527
527
|
*/
|
|
528
|
-
AccountId?: string;
|
|
528
|
+
AccountId?: string | undefined;
|
|
529
529
|
/**
|
|
530
530
|
* <p>The S3 Storage Lens configuration.</p>
|
|
531
531
|
* @public
|
|
@@ -538,7 +538,7 @@ export interface PutStorageLensConfigurationRequest {
|
|
|
538
538
|
* </note>
|
|
539
539
|
* @public
|
|
540
540
|
*/
|
|
541
|
-
Tags?: StorageLensTag[];
|
|
541
|
+
Tags?: StorageLensTag[] | undefined;
|
|
542
542
|
}
|
|
543
543
|
/**
|
|
544
544
|
* @public
|
|
@@ -553,7 +553,7 @@ export interface PutStorageLensConfigurationTaggingRequest {
|
|
|
553
553
|
* <p>The account ID of the requester.</p>
|
|
554
554
|
* @public
|
|
555
555
|
*/
|
|
556
|
-
AccountId?: string;
|
|
556
|
+
AccountId?: string | undefined;
|
|
557
557
|
/**
|
|
558
558
|
* <p>The tag set of the S3 Storage Lens configuration.</p>
|
|
559
559
|
* <note>
|
|
@@ -576,7 +576,7 @@ export interface SubmitMultiRegionAccessPointRoutesRequest {
|
|
|
576
576
|
* <p>The Amazon Web Services account ID for the owner of the Multi-Region Access Point.</p>
|
|
577
577
|
* @public
|
|
578
578
|
*/
|
|
579
|
-
AccountId?: string;
|
|
579
|
+
AccountId?: string | undefined;
|
|
580
580
|
/**
|
|
581
581
|
* <p>The Multi-Region Access Point ARN.</p>
|
|
582
582
|
* @public
|
|
@@ -604,7 +604,7 @@ export interface TagResourceRequest {
|
|
|
604
604
|
* </p>
|
|
605
605
|
* @public
|
|
606
606
|
*/
|
|
607
|
-
AccountId?: string;
|
|
607
|
+
AccountId?: string | undefined;
|
|
608
608
|
/**
|
|
609
609
|
* <p>The Amazon Resource Name (ARN) of the S3 resource that you're trying to add tags to. The tagged resource can be an S3 Storage Lens group or S3 Access Grants instance, registered location, or grant.</p>
|
|
610
610
|
* @public
|
|
@@ -633,7 +633,7 @@ export interface UntagResourceRequest {
|
|
|
633
633
|
* </p>
|
|
634
634
|
* @public
|
|
635
635
|
*/
|
|
636
|
-
AccountId?: string;
|
|
636
|
+
AccountId?: string | undefined;
|
|
637
637
|
/**
|
|
638
638
|
* <p>
|
|
639
639
|
* The Amazon Resource Name (ARN) of the S3 resource that you're trying to remove the tags from.
|
|
@@ -662,7 +662,7 @@ export interface UpdateAccessGrantsLocationRequest {
|
|
|
662
662
|
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
663
663
|
* @public
|
|
664
664
|
*/
|
|
665
|
-
AccountId?: string;
|
|
665
|
+
AccountId?: string | undefined;
|
|
666
666
|
/**
|
|
667
667
|
* <p>The ID of the registered location that you are updating. 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>
|
|
668
668
|
* <p>The ID of the registered location to which you are granting access. 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>
|
|
@@ -684,27 +684,27 @@ export interface UpdateAccessGrantsLocationResult {
|
|
|
684
684
|
* <p>The date and time when you registered the location. </p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
CreatedAt?: Date;
|
|
687
|
+
CreatedAt?: Date | undefined;
|
|
688
688
|
/**
|
|
689
689
|
* <p>The ID of the registered location to which you are granting access. 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>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
AccessGrantsLocationId?: string;
|
|
692
|
+
AccessGrantsLocationId?: string | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <p>The Amazon Resource Name (ARN) of the registered location that you are updating. </p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
AccessGrantsLocationArn?: string;
|
|
697
|
+
AccessGrantsLocationArn?: string | undefined;
|
|
698
698
|
/**
|
|
699
699
|
* <p>The S3 URI path of the location that you are updating. You cannot update the scope of the registered location. 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>. </p>
|
|
700
700
|
* @public
|
|
701
701
|
*/
|
|
702
|
-
LocationScope?: string;
|
|
702
|
+
LocationScope?: string | undefined;
|
|
703
703
|
/**
|
|
704
704
|
* <p>The Amazon Resource Name (ARN) of the IAM role of the registered location. S3 Access Grants assumes this role to manage access to the registered location. </p>
|
|
705
705
|
* @public
|
|
706
706
|
*/
|
|
707
|
-
IAMRoleArn?: string;
|
|
707
|
+
IAMRoleArn?: string | undefined;
|
|
708
708
|
}
|
|
709
709
|
/**
|
|
710
710
|
* @public
|
|
@@ -714,7 +714,7 @@ export interface UpdateJobPriorityRequest {
|
|
|
714
714
|
* <p>The Amazon Web Services account ID associated with the S3 Batch Operations job.</p>
|
|
715
715
|
* @public
|
|
716
716
|
*/
|
|
717
|
-
AccountId?: string;
|
|
717
|
+
AccountId?: string | undefined;
|
|
718
718
|
/**
|
|
719
719
|
* <p>The ID for the job whose priority you want to update.</p>
|
|
720
720
|
* @public
|
|
@@ -748,7 +748,7 @@ export interface UpdateJobPriorityResult {
|
|
|
748
748
|
export declare class JobStatusException extends __BaseException {
|
|
749
749
|
readonly name: "JobStatusException";
|
|
750
750
|
readonly $fault: "client";
|
|
751
|
-
Message?: string;
|
|
751
|
+
Message?: string | undefined;
|
|
752
752
|
/**
|
|
753
753
|
* @internal
|
|
754
754
|
*/
|
|
@@ -774,7 +774,7 @@ export interface UpdateJobStatusRequest {
|
|
|
774
774
|
* <p>The Amazon Web Services account ID associated with the S3 Batch Operations job.</p>
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
|
-
AccountId?: string;
|
|
777
|
+
AccountId?: string | undefined;
|
|
778
778
|
/**
|
|
779
779
|
* <p>The ID of the job whose status you want to update.</p>
|
|
780
780
|
* @public
|
|
@@ -790,7 +790,7 @@ export interface UpdateJobStatusRequest {
|
|
|
790
790
|
* field can be any string up to the maximum length.</p>
|
|
791
791
|
* @public
|
|
792
792
|
*/
|
|
793
|
-
StatusUpdateReason?: string;
|
|
793
|
+
StatusUpdateReason?: string | undefined;
|
|
794
794
|
}
|
|
795
795
|
/**
|
|
796
796
|
* @public
|
|
@@ -800,17 +800,17 @@ export interface UpdateJobStatusResult {
|
|
|
800
800
|
* <p>The ID for the job whose status was updated.</p>
|
|
801
801
|
* @public
|
|
802
802
|
*/
|
|
803
|
-
JobId?: string;
|
|
803
|
+
JobId?: string | undefined;
|
|
804
804
|
/**
|
|
805
805
|
* <p>The current status for the specified job.</p>
|
|
806
806
|
* @public
|
|
807
807
|
*/
|
|
808
|
-
Status?: JobStatus;
|
|
808
|
+
Status?: JobStatus | undefined;
|
|
809
809
|
/**
|
|
810
810
|
* <p>The reason that the specified job's status was updated.</p>
|
|
811
811
|
* @public
|
|
812
812
|
*/
|
|
813
|
-
StatusUpdateReason?: string;
|
|
813
|
+
StatusUpdateReason?: string | undefined;
|
|
814
814
|
}
|
|
815
815
|
/**
|
|
816
816
|
* @public
|
|
@@ -829,7 +829,7 @@ export interface UpdateStorageLensGroupRequest {
|
|
|
829
829
|
* </p>
|
|
830
830
|
* @public
|
|
831
831
|
*/
|
|
832
|
-
AccountId?: string;
|
|
832
|
+
AccountId?: string | undefined;
|
|
833
833
|
/**
|
|
834
834
|
* <p>
|
|
835
835
|
* The JSON file that contains the Storage Lens group configuration.
|