@aws-sdk/client-glacier 3.686.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.
@@ -41,12 +41,12 @@ export declare class InvalidParameterValueException extends __BaseException {
41
41
  * <p>Client</p>
42
42
  * @public
43
43
  */
44
- type?: string;
44
+ type?: string | undefined;
45
45
  /**
46
46
  * <p>400 Bad Request</p>
47
47
  * @public
48
48
  */
49
- code?: string;
49
+ code?: string | undefined;
50
50
  /**
51
51
  * @internal
52
52
  */
@@ -63,12 +63,12 @@ export declare class MissingParameterValueException extends __BaseException {
63
63
  * <p>Client.</p>
64
64
  * @public
65
65
  */
66
- type?: string;
66
+ type?: string | undefined;
67
67
  /**
68
68
  * <p>400 Bad Request</p>
69
69
  * @public
70
70
  */
71
- code?: string;
71
+ code?: string | undefined;
72
72
  /**
73
73
  * @internal
74
74
  */
@@ -86,12 +86,12 @@ export declare class ResourceNotFoundException extends __BaseException {
86
86
  * <p>Client</p>
87
87
  * @public
88
88
  */
89
- type?: string;
89
+ type?: string | undefined;
90
90
  /**
91
91
  * <p>404 Not Found</p>
92
92
  * @public
93
93
  */
94
- code?: string;
94
+ code?: string | undefined;
95
95
  /**
96
96
  * @internal
97
97
  */
@@ -108,12 +108,12 @@ export declare class ServiceUnavailableException extends __BaseException {
108
108
  * <p>Server</p>
109
109
  * @public
110
110
  */
111
- type?: string;
111
+ type?: string | undefined;
112
112
  /**
113
113
  * <p>500 Internal Server Error</p>
114
114
  * @public
115
115
  */
116
- code?: string;
116
+ code?: string | undefined;
117
117
  /**
118
118
  * @internal
119
119
  */
@@ -166,22 +166,22 @@ export interface Grantee {
166
166
  * <p>Screen name of the grantee.</p>
167
167
  * @public
168
168
  */
169
- DisplayName?: string;
169
+ DisplayName?: string | undefined;
170
170
  /**
171
171
  * <p>URI of the grantee group.</p>
172
172
  * @public
173
173
  */
174
- URI?: string;
174
+ URI?: string | undefined;
175
175
  /**
176
176
  * <p>The canonical user ID of the grantee.</p>
177
177
  * @public
178
178
  */
179
- ID?: string;
179
+ ID?: string | undefined;
180
180
  /**
181
181
  * <p>Email address of the grantee.</p>
182
182
  * @public
183
183
  */
184
- EmailAddress?: string;
184
+ EmailAddress?: string | undefined;
185
185
  }
186
186
  /**
187
187
  * @public
@@ -207,12 +207,12 @@ export interface Grant {
207
207
  * <p>The grantee.</p>
208
208
  * @public
209
209
  */
210
- Grantee?: Grantee;
210
+ Grantee?: Grantee | undefined;
211
211
  /**
212
212
  * <p>Specifies the permission given to the grantee. </p>
213
213
  * @public
214
214
  */
215
- Permission?: Permission;
215
+ Permission?: Permission | undefined;
216
216
  }
217
217
  /**
218
218
  * @public
@@ -251,7 +251,7 @@ export interface AddTagsToVaultInput {
251
251
  * can be an empty string.</p>
252
252
  * @public
253
253
  */
254
- Tags?: Record<string, string>;
254
+ Tags?: Record<string, string> | undefined;
255
255
  }
256
256
  /**
257
257
  * <p>Returned if the request results in a vault or account limit being exceeded.</p>
@@ -264,12 +264,12 @@ export declare class LimitExceededException extends __BaseException {
264
264
  * <p>Client</p>
265
265
  * @public
266
266
  */
267
- type?: string;
267
+ type?: string | undefined;
268
268
  /**
269
269
  * <p>400 Bad Request</p>
270
270
  * @public
271
271
  */
272
- code?: string;
272
+ code?: string | undefined;
273
273
  /**
274
274
  * @internal
275
275
  */
@@ -287,17 +287,17 @@ export interface ArchiveCreationOutput {
287
287
  * <p>The relative URI path of the newly added archive resource.</p>
288
288
  * @public
289
289
  */
290
- location?: string;
290
+ location?: string | undefined;
291
291
  /**
292
292
  * <p>The checksum of the archive computed by Amazon S3 Glacier.</p>
293
293
  * @public
294
294
  */
295
- checksum?: string;
295
+ checksum?: string | undefined;
296
296
  /**
297
297
  * <p>The ID of the archive. This value is also included as part of the location.</p>
298
298
  * @public
299
299
  */
300
- archiveId?: string;
300
+ archiveId?: string | undefined;
301
301
  }
302
302
  /**
303
303
  * @public
@@ -348,7 +348,7 @@ export interface CompleteMultipartUploadInput {
348
348
  * the sizes of the individual parts that you uploaded.</p>
349
349
  * @public
350
350
  */
351
- archiveSize?: string;
351
+ archiveSize?: string | undefined;
352
352
  /**
353
353
  * <p>The SHA256 tree hash of the entire archive. It is the tree hash of SHA256 tree hash
354
354
  * of the individual parts. If the value you specify in the request does not match the SHA256
@@ -356,7 +356,7 @@ export interface CompleteMultipartUploadInput {
356
356
  * Glacier returns an error and the request fails.</p>
357
357
  * @public
358
358
  */
359
- checksum?: string;
359
+ checksum?: string | undefined;
360
360
  }
361
361
  /**
362
362
  * <p>The input values for <code>CompleteVaultLock</code>.</p>
@@ -412,7 +412,7 @@ export interface CreateVaultOutput {
412
412
  * <p>The URI of the vault that was created.</p>
413
413
  * @public
414
414
  */
415
- location?: string;
415
+ location?: string | undefined;
416
416
  }
417
417
  /**
418
418
  * @public
@@ -437,35 +437,35 @@ export interface CSVInput {
437
437
  * <code>Ignore</code>, and <code>Use</code>.</p>
438
438
  * @public
439
439
  */
440
- FileHeaderInfo?: FileHeaderInfo;
440
+ FileHeaderInfo?: FileHeaderInfo | undefined;
441
441
  /**
442
442
  * <p>A single character used to indicate that a row should be ignored when the character is
443
443
  * present at the start of that row.</p>
444
444
  * @public
445
445
  */
446
- Comments?: string;
446
+ Comments?: string | undefined;
447
447
  /**
448
448
  * <p>A single character used for escaping the quotation-mark character inside an already
449
449
  * escaped value.</p>
450
450
  * @public
451
451
  */
452
- QuoteEscapeCharacter?: string;
452
+ QuoteEscapeCharacter?: string | undefined;
453
453
  /**
454
454
  * <p>A value used to separate individual records from each other.</p>
455
455
  * @public
456
456
  */
457
- RecordDelimiter?: string;
457
+ RecordDelimiter?: string | undefined;
458
458
  /**
459
459
  * <p>A value used to separate individual fields from each other within a record.</p>
460
460
  * @public
461
461
  */
462
- FieldDelimiter?: string;
462
+ FieldDelimiter?: string | undefined;
463
463
  /**
464
464
  * <p>A value used as an escape character where the field delimiter is part of the
465
465
  * value.</p>
466
466
  * @public
467
467
  */
468
- QuoteCharacter?: string;
468
+ QuoteCharacter?: string | undefined;
469
469
  }
470
470
  /**
471
471
  * @public
@@ -490,29 +490,29 @@ export interface CSVOutput {
490
490
  * marks.</p>
491
491
  * @public
492
492
  */
493
- QuoteFields?: QuoteFields;
493
+ QuoteFields?: QuoteFields | undefined;
494
494
  /**
495
495
  * <p>A single character used for escaping the quotation-mark character inside an already
496
496
  * escaped value.</p>
497
497
  * @public
498
498
  */
499
- QuoteEscapeCharacter?: string;
499
+ QuoteEscapeCharacter?: string | undefined;
500
500
  /**
501
501
  * <p>A value used to separate individual records from each other.</p>
502
502
  * @public
503
503
  */
504
- RecordDelimiter?: string;
504
+ RecordDelimiter?: string | undefined;
505
505
  /**
506
506
  * <p>A value used to separate individual fields from each other within a record.</p>
507
507
  * @public
508
508
  */
509
- FieldDelimiter?: string;
509
+ FieldDelimiter?: string | undefined;
510
510
  /**
511
511
  * <p>A value used as an escape character where the field delimiter is part of the
512
512
  * value.</p>
513
513
  * @public
514
514
  */
515
- QuoteCharacter?: string;
515
+ QuoteCharacter?: string | undefined;
516
516
  }
517
517
  /**
518
518
  * <p>Data retrieval policy rule.</p>
@@ -524,7 +524,7 @@ export interface DataRetrievalRule {
524
524
  * <p>Valid values: BytesPerHour|FreeTier|None</p>
525
525
  * @public
526
526
  */
527
- Strategy?: string;
527
+ Strategy?: string | undefined;
528
528
  /**
529
529
  * <p>The maximum number of bytes that can be retrieved in an hour.</p>
530
530
  * <p>This field is required only if the value of the Strategy field is
@@ -532,7 +532,7 @@ export interface DataRetrievalRule {
532
532
  * not set to <code>BytesPerHour</code> and you set this field.</p>
533
533
  * @public
534
534
  */
535
- BytesPerHour?: number;
535
+ BytesPerHour?: number | undefined;
536
536
  }
537
537
  /**
538
538
  * <p>Data retrieval policy.</p>
@@ -544,7 +544,7 @@ export interface DataRetrievalPolicy {
544
544
  * which contains a Strategy field and optionally a BytesPerHour field.</p>
545
545
  * @public
546
546
  */
547
- Rules?: DataRetrievalRule[];
547
+ Rules?: DataRetrievalRule[] | undefined;
548
548
  }
549
549
  /**
550
550
  * <p>Provides options for deleting an archive from an Amazon S3 Glacier vault.</p>
@@ -667,7 +667,7 @@ export interface InventoryRetrievalJobDescription {
667
667
  * inventory. Valid values are <code>CSV</code> and <code>JSON</code>.</p>
668
668
  * @public
669
669
  */
670
- Format?: string;
670
+ Format?: string | undefined;
671
671
  /**
672
672
  * <p>The start of the date range in Universal Coordinated Time (UTC) for vault inventory
673
673
  * retrieval that includes archives created on or after this date. This value should be a
@@ -675,20 +675,20 @@ export interface InventoryRetrievalJobDescription {
675
675
  * <code>2013-03-20T17:03:43Z</code>.</p>
676
676
  * @public
677
677
  */
678
- StartDate?: string;
678
+ StartDate?: string | undefined;
679
679
  /**
680
680
  * <p>The end of the date range in UTC for vault inventory retrieval that includes
681
681
  * archives created before this date. This value should be a string in the ISO 8601 date
682
682
  * format, for example <code>2013-03-20T17:03:43Z</code>.</p>
683
683
  * @public
684
684
  */
685
- EndDate?: string;
685
+ EndDate?: string | undefined;
686
686
  /**
687
687
  * <p>The maximum number of inventory items returned per vault inventory retrieval
688
688
  * request. This limit is set when initiating the job with the a <b>InitiateJob</b> request. </p>
689
689
  * @public
690
690
  */
691
- Limit?: string;
691
+ Limit?: string | undefined;
692
692
  /**
693
693
  * <p>An opaque string that represents where to continue pagination of the vault
694
694
  * inventory retrieval results. You use the marker in a new <b>InitiateJob</b> request to obtain additional inventory items. If there are
@@ -696,7 +696,7 @@ export interface InventoryRetrievalJobDescription {
696
696
  * <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/api-initiate-job-post.html#api-initiate-job-post-vault-inventory-list-filtering"> Range Inventory Retrieval</a>.</p>
697
697
  * @public
698
698
  */
699
- Marker?: string;
699
+ Marker?: string | undefined;
700
700
  }
701
701
  /**
702
702
  * @public
@@ -720,20 +720,20 @@ export interface Encryption {
720
720
  * example <code>AES256</code> or <code>aws:kms</code>.</p>
721
721
  * @public
722
722
  */
723
- EncryptionType?: EncryptionType;
723
+ EncryptionType?: EncryptionType | undefined;
724
724
  /**
725
725
  * <p>The AWS KMS key ID to use for object encryption. All GET and PUT requests for an
726
726
  * object protected by AWS KMS fail if not made by using Secure Sockets Layer (SSL) or
727
727
  * Signature Version 4. </p>
728
728
  * @public
729
729
  */
730
- KMSKeyId?: string;
730
+ KMSKeyId?: string | undefined;
731
731
  /**
732
732
  * <p>Optional. If the encryption type is <code>aws:kms</code>, you can use this value to
733
733
  * specify the encryption context for the job results.</p>
734
734
  * @public
735
735
  */
736
- KMSContext?: string;
736
+ KMSContext?: string | undefined;
737
737
  }
738
738
  /**
739
739
  * @public
@@ -757,42 +757,42 @@ export interface S3Location {
757
757
  * <p>The name of the Amazon S3 bucket where the job results are stored.</p>
758
758
  * @public
759
759
  */
760
- BucketName?: string;
760
+ BucketName?: string | undefined;
761
761
  /**
762
762
  * <p>The prefix that is prepended to the results for this request.</p>
763
763
  * @public
764
764
  */
765
- Prefix?: string;
765
+ Prefix?: string | undefined;
766
766
  /**
767
767
  * <p>Contains information about the encryption used to store the job results in Amazon S3.</p>
768
768
  * @public
769
769
  */
770
- Encryption?: Encryption;
770
+ Encryption?: Encryption | undefined;
771
771
  /**
772
772
  * <p>The canned access control list (ACL) to apply to the job results.</p>
773
773
  * @public
774
774
  */
775
- CannedACL?: CannedACL;
775
+ CannedACL?: CannedACL | undefined;
776
776
  /**
777
777
  * <p>A list of grants that control access to the staged results.</p>
778
778
  * @public
779
779
  */
780
- AccessControlList?: Grant[];
780
+ AccessControlList?: Grant[] | undefined;
781
781
  /**
782
782
  * <p>The tag-set that is applied to the job results.</p>
783
783
  * @public
784
784
  */
785
- Tagging?: Record<string, string>;
785
+ Tagging?: Record<string, string> | undefined;
786
786
  /**
787
787
  * <p>A map of metadata to store with the job results in Amazon S3.</p>
788
788
  * @public
789
789
  */
790
- UserMetadata?: Record<string, string>;
790
+ UserMetadata?: Record<string, string> | undefined;
791
791
  /**
792
792
  * <p>The storage class used to store the job results.</p>
793
793
  * @public
794
794
  */
795
- StorageClass?: StorageClass;
795
+ StorageClass?: StorageClass | undefined;
796
796
  }
797
797
  /**
798
798
  * <p>Contains information about the location where the select job results are stored.</p>
@@ -803,7 +803,7 @@ export interface OutputLocation {
803
803
  * <p>Describes an S3 location that will receive the results of the job request.</p>
804
804
  * @public
805
805
  */
806
- S3?: S3Location;
806
+ S3?: S3Location | undefined;
807
807
  }
808
808
  /**
809
809
  * @public
@@ -825,7 +825,7 @@ export interface InputSerialization {
825
825
  * <p>Describes the serialization of a CSV-encoded object.</p>
826
826
  * @public
827
827
  */
828
- csv?: CSVInput;
828
+ csv?: CSVInput | undefined;
829
829
  }
830
830
  /**
831
831
  * <p>Describes how the select output is serialized.</p>
@@ -836,7 +836,7 @@ export interface OutputSerialization {
836
836
  * <p>Describes the serialization of CSV-encoded query results.</p>
837
837
  * @public
838
838
  */
839
- csv?: CSVOutput;
839
+ csv?: CSVOutput | undefined;
840
840
  }
841
841
  /**
842
842
  * <p>Contains information about the parameters used for a select.</p>
@@ -847,22 +847,22 @@ export interface SelectParameters {
847
847
  * <p>Describes the serialization format of the object.</p>
848
848
  * @public
849
849
  */
850
- InputSerialization?: InputSerialization;
850
+ InputSerialization?: InputSerialization | undefined;
851
851
  /**
852
852
  * <p>The type of the provided expression, for example <code>SQL</code>.</p>
853
853
  * @public
854
854
  */
855
- ExpressionType?: ExpressionType;
855
+ ExpressionType?: ExpressionType | undefined;
856
856
  /**
857
857
  * <p>The expression that is used to select the object.</p>
858
858
  * @public
859
859
  */
860
- Expression?: string;
860
+ Expression?: string | undefined;
861
861
  /**
862
862
  * <p>Describes how the results of the select job are serialized.</p>
863
863
  * @public
864
864
  */
865
- OutputSerialization?: OutputSerialization;
865
+ OutputSerialization?: OutputSerialization | undefined;
866
866
  }
867
867
  /**
868
868
  * @public
@@ -886,79 +886,79 @@ export interface GlacierJobDescription {
886
886
  * <p>An opaque string that identifies an Amazon S3 Glacier job.</p>
887
887
  * @public
888
888
  */
889
- JobId?: string;
889
+ JobId?: string | undefined;
890
890
  /**
891
891
  * <p>The job description provided when initiating the job.</p>
892
892
  * @public
893
893
  */
894
- JobDescription?: string;
894
+ JobDescription?: string | undefined;
895
895
  /**
896
896
  * <p>The job type. This value is either <code>ArchiveRetrieval</code>,
897
897
  * <code>InventoryRetrieval</code>, or
898
898
  * <code>Select</code>. </p>
899
899
  * @public
900
900
  */
901
- Action?: ActionCode;
901
+ Action?: ActionCode | undefined;
902
902
  /**
903
903
  * <p>The archive ID requested for a select job or archive retrieval. Otherwise, this
904
904
  * field is null.</p>
905
905
  * @public
906
906
  */
907
- ArchiveId?: string;
907
+ ArchiveId?: string | undefined;
908
908
  /**
909
909
  * <p>The Amazon Resource Name (ARN) of the vault from which an archive retrieval was
910
910
  * requested.</p>
911
911
  * @public
912
912
  */
913
- VaultARN?: string;
913
+ VaultARN?: string | undefined;
914
914
  /**
915
915
  * <p>The UTC date when the job was created. This value is a string representation of ISO
916
916
  * 8601 date format, for example <code>"2012-03-20T17:03:43.221Z"</code>.</p>
917
917
  * @public
918
918
  */
919
- CreationDate?: string;
919
+ CreationDate?: string | undefined;
920
920
  /**
921
921
  * <p>The job status. When a job is completed, you get the job's output using Get Job
922
922
  * Output (GET output).</p>
923
923
  * @public
924
924
  */
925
- Completed?: boolean;
925
+ Completed?: boolean | undefined;
926
926
  /**
927
927
  * <p>The status code can be <code>InProgress</code>, <code>Succeeded</code>, or
928
928
  * <code>Failed</code>, and indicates the status of the job.</p>
929
929
  * @public
930
930
  */
931
- StatusCode?: StatusCode;
931
+ StatusCode?: StatusCode | undefined;
932
932
  /**
933
933
  * <p>A friendly message that describes the job status.</p>
934
934
  * @public
935
935
  */
936
- StatusMessage?: string;
936
+ StatusMessage?: string | undefined;
937
937
  /**
938
938
  * <p>For an archive retrieval job, this value is the size in bytes of the archive being
939
939
  * requested for download. For an inventory retrieval or select job, this value is
940
940
  * null.</p>
941
941
  * @public
942
942
  */
943
- ArchiveSizeInBytes?: number;
943
+ ArchiveSizeInBytes?: number | undefined;
944
944
  /**
945
945
  * <p>For an inventory retrieval job, this value is the size in bytes of the inventory
946
946
  * requested for download. For an archive retrieval or select job, this value is
947
947
  * null.</p>
948
948
  * @public
949
949
  */
950
- InventorySizeInBytes?: number;
950
+ InventorySizeInBytes?: number | undefined;
951
951
  /**
952
952
  * <p>An Amazon SNS topic that receives notification.</p>
953
953
  * @public
954
954
  */
955
- SNSTopic?: string;
955
+ SNSTopic?: string | undefined;
956
956
  /**
957
957
  * <p>The UTC time that the job request completed. While the job is in progress, the
958
958
  * value is null.</p>
959
959
  * @public
960
960
  */
961
- CompletionDate?: string;
961
+ CompletionDate?: string | undefined;
962
962
  /**
963
963
  * <p>For an archive retrieval job, this value is the checksum of the archive. Otherwise,
964
964
  * this value is null.</p>
@@ -990,13 +990,13 @@ export interface GlacierJobDescription {
990
990
  * </ul>
991
991
  * @public
992
992
  */
993
- SHA256TreeHash?: string;
993
+ SHA256TreeHash?: string | undefined;
994
994
  /**
995
995
  * <p>The SHA256 tree hash of the entire archive for an archive retrieval. For inventory
996
996
  * retrieval or select jobs, this field is null.</p>
997
997
  * @public
998
998
  */
999
- ArchiveSHA256TreeHash?: string;
999
+ ArchiveSHA256TreeHash?: string | undefined;
1000
1000
  /**
1001
1001
  * <p>The retrieved byte range for archive retrieval jobs in the form
1002
1002
  * <i>StartByteValue</i>-<i>EndByteValue</i>. If no range
@@ -1006,34 +1006,34 @@ export interface GlacierJobDescription {
1006
1006
  * field is null. </p>
1007
1007
  * @public
1008
1008
  */
1009
- RetrievalByteRange?: string;
1009
+ RetrievalByteRange?: string | undefined;
1010
1010
  /**
1011
1011
  * <p>The tier to use for a select or an archive retrieval. Valid values are
1012
1012
  * <code>Expedited</code>, <code>Standard</code>, or <code>Bulk</code>.
1013
1013
  * <code>Standard</code> is the default.</p>
1014
1014
  * @public
1015
1015
  */
1016
- Tier?: string;
1016
+ Tier?: string | undefined;
1017
1017
  /**
1018
1018
  * <p>Parameters used for range inventory retrieval.</p>
1019
1019
  * @public
1020
1020
  */
1021
- InventoryRetrievalParameters?: InventoryRetrievalJobDescription;
1021
+ InventoryRetrievalParameters?: InventoryRetrievalJobDescription | undefined;
1022
1022
  /**
1023
1023
  * <p>Contains the job output location.</p>
1024
1024
  * @public
1025
1025
  */
1026
- JobOutputPath?: string;
1026
+ JobOutputPath?: string | undefined;
1027
1027
  /**
1028
1028
  * <p>Contains the parameters used for a select.</p>
1029
1029
  * @public
1030
1030
  */
1031
- SelectParameters?: SelectParameters;
1031
+ SelectParameters?: SelectParameters | undefined;
1032
1032
  /**
1033
1033
  * <p>Contains the location where the data from the select job is stored.</p>
1034
1034
  * @public
1035
1035
  */
1036
- OutputLocation?: OutputLocation;
1036
+ OutputLocation?: OutputLocation | undefined;
1037
1037
  }
1038
1038
  /**
1039
1039
  * <p>Provides options for retrieving metadata for a specific vault in Amazon
@@ -1065,40 +1065,40 @@ export interface DescribeVaultOutput {
1065
1065
  * <p>The Amazon Resource Name (ARN) of the vault.</p>
1066
1066
  * @public
1067
1067
  */
1068
- VaultARN?: string;
1068
+ VaultARN?: string | undefined;
1069
1069
  /**
1070
1070
  * <p>The name of the vault.</p>
1071
1071
  * @public
1072
1072
  */
1073
- VaultName?: string;
1073
+ VaultName?: string | undefined;
1074
1074
  /**
1075
1075
  * <p>The Universal Coordinated Time (UTC) date when the vault was created. This value
1076
1076
  * should be a string in the ISO 8601 date format, for example
1077
1077
  * <code>2012-03-20T17:03:43.221Z</code>.</p>
1078
1078
  * @public
1079
1079
  */
1080
- CreationDate?: string;
1080
+ CreationDate?: string | undefined;
1081
1081
  /**
1082
1082
  * <p>The Universal Coordinated Time (UTC) date when Amazon S3 Glacier completed the last
1083
1083
  * vault inventory. This value should be a string in the ISO 8601 date format, for example
1084
1084
  * <code>2012-03-20T17:03:43.221Z</code>.</p>
1085
1085
  * @public
1086
1086
  */
1087
- LastInventoryDate?: string;
1087
+ LastInventoryDate?: string | undefined;
1088
1088
  /**
1089
1089
  * <p>The number of archives in the vault as of the last inventory date. This field will
1090
1090
  * return <code>null</code> if an inventory has not yet run on the vault, for example if you
1091
1091
  * just created the vault.</p>
1092
1092
  * @public
1093
1093
  */
1094
- NumberOfArchives?: number;
1094
+ NumberOfArchives?: number | undefined;
1095
1095
  /**
1096
1096
  * <p>Total size, in bytes, of the archives in the vault as of the last inventory date.
1097
1097
  * This field will return null if an inventory has not yet run on the vault, for example if
1098
1098
  * you just created the vault.</p>
1099
1099
  * @public
1100
1100
  */
1101
- SizeInBytes?: number;
1101
+ SizeInBytes?: number | undefined;
1102
1102
  }
1103
1103
  /**
1104
1104
  * <p>Input for GetDataRetrievalPolicy.</p>
@@ -1125,7 +1125,7 @@ export interface GetDataRetrievalPolicyOutput {
1125
1125
  * <p>Contains the returned data retrieval policy in JSON format.</p>
1126
1126
  * @public
1127
1127
  */
1128
- Policy?: DataRetrievalPolicy;
1128
+ Policy?: DataRetrievalPolicy | undefined;
1129
1129
  }
1130
1130
  /**
1131
1131
  * <p>Provides options for downloading output of an Amazon S3 Glacier job.</p>
@@ -1190,7 +1190,7 @@ export interface GetJobOutputInput {
1190
1190
  * </ol>
1191
1191
  * @public
1192
1192
  */
1193
- range?: string;
1193
+ range?: string | undefined;
1194
1194
  }
1195
1195
  /**
1196
1196
  * <p>Contains the Amazon S3 Glacier response to your request.</p>
@@ -1201,7 +1201,7 @@ export interface GetJobOutputOutput {
1201
1201
  * <p>The job data, either archive data or inventory data.</p>
1202
1202
  * @public
1203
1203
  */
1204
- body?: StreamingBlobTypes;
1204
+ body?: StreamingBlobTypes | undefined;
1205
1205
  /**
1206
1206
  * <p>The checksum of the data in the response. This header is returned only when
1207
1207
  * retrieving the output for an archive retrieval job. Furthermore, this header appears only
@@ -1225,25 +1225,25 @@ export interface GetJobOutputOutput {
1225
1225
  * </ul>
1226
1226
  * @public
1227
1227
  */
1228
- checksum?: string;
1228
+ checksum?: string | undefined;
1229
1229
  /**
1230
1230
  * <p>The HTTP response code for a job output request. The value depends on whether a range
1231
1231
  * was specified in the request.</p>
1232
1232
  * @public
1233
1233
  */
1234
- status?: number;
1234
+ status?: number | undefined;
1235
1235
  /**
1236
1236
  * <p>The range of bytes returned by Amazon S3 Glacier. If only partial output is downloaded,
1237
1237
  * the response provides the range of bytes Amazon S3 Glacier returned. For example, bytes
1238
1238
  * 0-1048575/8388608 returns the first 1 MB from 8 MB.</p>
1239
1239
  * @public
1240
1240
  */
1241
- contentRange?: string;
1241
+ contentRange?: string | undefined;
1242
1242
  /**
1243
1243
  * <p>Indicates the range units accepted. For more information, see <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html">RFC2616</a>. </p>
1244
1244
  * @public
1245
1245
  */
1246
- acceptRanges?: string;
1246
+ acceptRanges?: string | undefined;
1247
1247
  /**
1248
1248
  * <p>The Content-Type depends on whether the job output is an archive or a vault
1249
1249
  * inventory. For archive data, the Content-Type is application/octet-stream. For vault
@@ -1252,12 +1252,12 @@ export interface GetJobOutputOutput {
1252
1252
  * is application/json.</p>
1253
1253
  * @public
1254
1254
  */
1255
- contentType?: string;
1255
+ contentType?: string | undefined;
1256
1256
  /**
1257
1257
  * <p>The description of an archive.</p>
1258
1258
  * @public
1259
1259
  */
1260
- archiveDescription?: string;
1260
+ archiveDescription?: string | undefined;
1261
1261
  }
1262
1262
  /**
1263
1263
  * <p>Input for GetVaultAccessPolicy.</p>
@@ -1288,7 +1288,7 @@ export interface VaultAccessPolicy {
1288
1288
  * <p>The vault access policy.</p>
1289
1289
  * @public
1290
1290
  */
1291
- Policy?: string;
1291
+ Policy?: string | undefined;
1292
1292
  }
1293
1293
  /**
1294
1294
  * <p>Output for GetVaultAccessPolicy.</p>
@@ -1299,7 +1299,7 @@ export interface GetVaultAccessPolicyOutput {
1299
1299
  * <p>Contains the returned vault access policy as a JSON string.</p>
1300
1300
  * @public
1301
1301
  */
1302
- policy?: VaultAccessPolicy;
1302
+ policy?: VaultAccessPolicy | undefined;
1303
1303
  }
1304
1304
  /**
1305
1305
  * <p>The input values for <code>GetVaultLock</code>.</p>
@@ -1331,25 +1331,25 @@ export interface GetVaultLockOutput {
1331
1331
  * character.</p>
1332
1332
  * @public
1333
1333
  */
1334
- Policy?: string;
1334
+ Policy?: string | undefined;
1335
1335
  /**
1336
1336
  * <p>The state of the vault lock. <code>InProgress</code> or
1337
1337
  * <code>Locked</code>.</p>
1338
1338
  * @public
1339
1339
  */
1340
- State?: string;
1340
+ State?: string | undefined;
1341
1341
  /**
1342
1342
  * <p>The UTC date and time at which the lock ID expires. This value can be
1343
1343
  * <code>null</code> if the vault lock is in a <code>Locked</code> state.</p>
1344
1344
  * @public
1345
1345
  */
1346
- ExpirationDate?: string;
1346
+ ExpirationDate?: string | undefined;
1347
1347
  /**
1348
1348
  * <p>The UTC date and time at which the vault lock was put into the
1349
1349
  * <code>InProgress</code> state.</p>
1350
1350
  * @public
1351
1351
  */
1352
- CreationDate?: string;
1352
+ CreationDate?: string | undefined;
1353
1353
  }
1354
1354
  /**
1355
1355
  * <p>Provides options for retrieving the notification configuration set on an Amazon
@@ -1382,13 +1382,13 @@ export interface VaultNotificationConfig {
1382
1382
  * (ARN).</p>
1383
1383
  * @public
1384
1384
  */
1385
- SNSTopic?: string;
1385
+ SNSTopic?: string | undefined;
1386
1386
  /**
1387
1387
  * <p>A list of one or more events for which Amazon S3 Glacier will send a notification to the
1388
1388
  * specified Amazon SNS topic.</p>
1389
1389
  * @public
1390
1390
  */
1391
- Events?: string[];
1391
+ Events?: string[] | undefined;
1392
1392
  }
1393
1393
  /**
1394
1394
  * <p>Contains the Amazon S3 Glacier response to your request.</p>
@@ -1399,7 +1399,7 @@ export interface GetVaultNotificationsOutput {
1399
1399
  * <p>Returns the notification configuration set on the vault.</p>
1400
1400
  * @public
1401
1401
  */
1402
- vaultNotificationConfig?: VaultNotificationConfig;
1402
+ vaultNotificationConfig?: VaultNotificationConfig | undefined;
1403
1403
  }
1404
1404
  /**
1405
1405
  * <p>Provides options for specifying a range inventory retrieval job.</p>
@@ -1412,20 +1412,20 @@ export interface InventoryRetrievalJobInput {
1412
1412
  * format, for example <code>2013-03-20T17:03:43Z</code>.</p>
1413
1413
  * @public
1414
1414
  */
1415
- StartDate?: string;
1415
+ StartDate?: string | undefined;
1416
1416
  /**
1417
1417
  * <p>The end of the date range in UTC for vault inventory retrieval that includes archives
1418
1418
  * created before this date. This value should be a string in the ISO 8601 date format, for
1419
1419
  * example <code>2013-03-20T17:03:43Z</code>.</p>
1420
1420
  * @public
1421
1421
  */
1422
- EndDate?: string;
1422
+ EndDate?: string | undefined;
1423
1423
  /**
1424
1424
  * <p>Specifies the maximum number of inventory items returned per vault inventory
1425
1425
  * retrieval request. Valid values are greater than or equal to 1.</p>
1426
1426
  * @public
1427
1427
  */
1428
- Limit?: string;
1428
+ Limit?: string | undefined;
1429
1429
  /**
1430
1430
  * <p>An opaque string that represents where to continue pagination of the vault inventory
1431
1431
  * retrieval results. You use the marker in a new <b>InitiateJob</b>
@@ -1433,7 +1433,7 @@ export interface InventoryRetrievalJobInput {
1433
1433
  * value is <code>null</code>.</p>
1434
1434
  * @public
1435
1435
  */
1436
- Marker?: string;
1436
+ Marker?: string | undefined;
1437
1437
  }
1438
1438
  /**
1439
1439
  * <p>Provides options for defining a job.</p>
@@ -1447,14 +1447,14 @@ export interface JobParameters {
1447
1447
  * and "JSON".</p>
1448
1448
  * @public
1449
1449
  */
1450
- Format?: string;
1450
+ Format?: string | undefined;
1451
1451
  /**
1452
1452
  * <p>The job type. You can initiate a job to perform a select query on an archive,
1453
1453
  * retrieve an archive, or get an inventory of a vault.
1454
1454
  * Valid values are "select", "archive-retrieval" and "inventory-retrieval".</p>
1455
1455
  * @public
1456
1456
  */
1457
- Type?: string;
1457
+ Type?: string | undefined;
1458
1458
  /**
1459
1459
  * <p>The ID of the archive that you want to retrieve. This field is required only if
1460
1460
  * <code>Type</code> is set to <code>select</code> or <code>archive-retrieval</code>code>.
@@ -1462,21 +1462,21 @@ export interface JobParameters {
1462
1462
  * request parameter for an inventory retrieval job request. </p>
1463
1463
  * @public
1464
1464
  */
1465
- ArchiveId?: string;
1465
+ ArchiveId?: string | undefined;
1466
1466
  /**
1467
1467
  * <p>The optional description for the job. The description must be less than or equal to
1468
1468
  * 1,024 bytes. The allowable characters are 7-bit ASCII without control codes-specifically,
1469
1469
  * ASCII values 32-126 decimal or 0x20-0x7E hexadecimal.</p>
1470
1470
  * @public
1471
1471
  */
1472
- Description?: string;
1472
+ Description?: string | undefined;
1473
1473
  /**
1474
1474
  * <p>The Amazon SNS topic ARN to which Amazon S3 Glacier sends a notification when the job is
1475
1475
  * completed and the output is ready for you to download. The specified topic publishes the
1476
1476
  * notification to its subscribers. The SNS topic must exist.</p>
1477
1477
  * @public
1478
1478
  */
1479
- SNSTopic?: string;
1479
+ SNSTopic?: string | undefined;
1480
1480
  /**
1481
1481
  * <p>The byte range to retrieve for an archive retrieval. in the form
1482
1482
  * "<i>StartByteValue</i>-<i>EndByteValue</i>" If not
@@ -1489,29 +1489,29 @@ export interface JobParameters {
1489
1489
  * request.</p>
1490
1490
  * @public
1491
1491
  */
1492
- RetrievalByteRange?: string;
1492
+ RetrievalByteRange?: string | undefined;
1493
1493
  /**
1494
1494
  * <p>The tier to use for a select or an archive retrieval job. Valid values are
1495
1495
  * <code>Expedited</code>, <code>Standard</code>, or <code>Bulk</code>.
1496
1496
  * <code>Standard</code> is the default.</p>
1497
1497
  * @public
1498
1498
  */
1499
- Tier?: string;
1499
+ Tier?: string | undefined;
1500
1500
  /**
1501
1501
  * <p>Input parameters used for range inventory retrieval.</p>
1502
1502
  * @public
1503
1503
  */
1504
- InventoryRetrievalParameters?: InventoryRetrievalJobInput;
1504
+ InventoryRetrievalParameters?: InventoryRetrievalJobInput | undefined;
1505
1505
  /**
1506
1506
  * <p>Contains the parameters that define a job.</p>
1507
1507
  * @public
1508
1508
  */
1509
- SelectParameters?: SelectParameters;
1509
+ SelectParameters?: SelectParameters | undefined;
1510
1510
  /**
1511
1511
  * <p>Contains information about the location where the select job results are stored.</p>
1512
1512
  * @public
1513
1513
  */
1514
- OutputLocation?: OutputLocation;
1514
+ OutputLocation?: OutputLocation | undefined;
1515
1515
  }
1516
1516
  /**
1517
1517
  * <p>Provides options for initiating an Amazon S3 Glacier job.</p>
@@ -1536,7 +1536,7 @@ export interface InitiateJobInput {
1536
1536
  * <p>Provides options for specifying job information.</p>
1537
1537
  * @public
1538
1538
  */
1539
- jobParameters?: JobParameters;
1539
+ jobParameters?: JobParameters | undefined;
1540
1540
  }
1541
1541
  /**
1542
1542
  * <p>Contains the Amazon S3 Glacier response to your request.</p>
@@ -1547,17 +1547,17 @@ export interface InitiateJobOutput {
1547
1547
  * <p>The relative URI path of the job.</p>
1548
1548
  * @public
1549
1549
  */
1550
- location?: string;
1550
+ location?: string | undefined;
1551
1551
  /**
1552
1552
  * <p>The ID of the job.</p>
1553
1553
  * @public
1554
1554
  */
1555
- jobId?: string;
1555
+ jobId?: string | undefined;
1556
1556
  /**
1557
1557
  * <p>The path to the location of where the select results are stored.</p>
1558
1558
  * @public
1559
1559
  */
1560
- jobOutputPath?: string;
1560
+ jobOutputPath?: string | undefined;
1561
1561
  }
1562
1562
  /**
1563
1563
  * <p>Returned if there is insufficient capacity to process this expedited request. This
@@ -1568,8 +1568,8 @@ export interface InitiateJobOutput {
1568
1568
  export declare class InsufficientCapacityException extends __BaseException {
1569
1569
  readonly name: "InsufficientCapacityException";
1570
1570
  readonly $fault: "client";
1571
- type?: string;
1572
- code?: string;
1571
+ type?: string | undefined;
1572
+ code?: string | undefined;
1573
1573
  /**
1574
1574
  * @internal
1575
1575
  */
@@ -1587,12 +1587,12 @@ export declare class PolicyEnforcedException extends __BaseException {
1587
1587
  * <p>Client</p>
1588
1588
  * @public
1589
1589
  */
1590
- type?: string;
1590
+ type?: string | undefined;
1591
1591
  /**
1592
1592
  * <p>PolicyEnforcedException</p>
1593
1593
  * @public
1594
1594
  */
1595
- code?: string;
1595
+ code?: string | undefined;
1596
1596
  /**
1597
1597
  * @internal
1598
1598
  */
@@ -1625,13 +1625,13 @@ export interface InitiateMultipartUploadInput {
1625
1625
  * allowable part size is 1 MB, and the maximum is 4 GB (4096 MB).</p>
1626
1626
  * @public
1627
1627
  */
1628
- archiveDescription?: string;
1628
+ archiveDescription?: string | undefined;
1629
1629
  /**
1630
1630
  * <p>The size of each part except the last, in bytes. The last part can be smaller than
1631
1631
  * this part size.</p>
1632
1632
  * @public
1633
1633
  */
1634
- partSize?: string;
1634
+ partSize?: string | undefined;
1635
1635
  }
1636
1636
  /**
1637
1637
  * <p>The Amazon S3 Glacier response to your request.</p>
@@ -1642,13 +1642,13 @@ export interface InitiateMultipartUploadOutput {
1642
1642
  * <p>The relative URI path of the multipart upload ID Amazon S3 Glacier created.</p>
1643
1643
  * @public
1644
1644
  */
1645
- location?: string;
1645
+ location?: string | undefined;
1646
1646
  /**
1647
1647
  * <p>The ID of the multipart upload. This value is also included as part of the
1648
1648
  * location.</p>
1649
1649
  * @public
1650
1650
  */
1651
- uploadId?: string;
1651
+ uploadId?: string | undefined;
1652
1652
  }
1653
1653
  /**
1654
1654
  * <p>Contains the vault lock policy.</p>
@@ -1659,7 +1659,7 @@ export interface VaultLockPolicy {
1659
1659
  * <p>The vault lock policy.</p>
1660
1660
  * @public
1661
1661
  */
1662
- Policy?: string;
1662
+ Policy?: string | undefined;
1663
1663
  }
1664
1664
  /**
1665
1665
  * <p>The input values for <code>InitiateVaultLock</code>.</p>
@@ -1685,7 +1685,7 @@ export interface InitiateVaultLockInput {
1685
1685
  * character.</p>
1686
1686
  * @public
1687
1687
  */
1688
- policy?: VaultLockPolicy;
1688
+ policy?: VaultLockPolicy | undefined;
1689
1689
  }
1690
1690
  /**
1691
1691
  * <p>Contains the Amazon S3 Glacier response to your request.</p>
@@ -1696,7 +1696,7 @@ export interface InitiateVaultLockOutput {
1696
1696
  * <p>The lock ID, which is used to complete the vault locking process.</p>
1697
1697
  * @public
1698
1698
  */
1699
- lockId?: string;
1699
+ lockId?: string | undefined;
1700
1700
  }
1701
1701
  /**
1702
1702
  * <p>Provides options for retrieving a job list for an Amazon S3 Glacier vault.</p>
@@ -1723,7 +1723,7 @@ export interface ListJobsInput {
1723
1723
  * never exceeds the limit.</p>
1724
1724
  * @public
1725
1725
  */
1726
- limit?: number;
1726
+ limit?: number | undefined;
1727
1727
  /**
1728
1728
  * <p>An opaque string used for pagination. This value specifies the job at which the
1729
1729
  * listing of jobs should begin. Get the marker value from a previous List Jobs response. You
@@ -1731,19 +1731,19 @@ export interface ListJobsInput {
1731
1731
  * a previous List Jobs request.</p>
1732
1732
  * @public
1733
1733
  */
1734
- marker?: string;
1734
+ marker?: string | undefined;
1735
1735
  /**
1736
1736
  * <p>The type of job status to return. You can specify the following values:
1737
1737
  * <code>InProgress</code>, <code>Succeeded</code>, or <code>Failed</code>.</p>
1738
1738
  * @public
1739
1739
  */
1740
- statuscode?: string;
1740
+ statuscode?: string | undefined;
1741
1741
  /**
1742
1742
  * <p>The state of the jobs to return. You can specify <code>true</code> or
1743
1743
  * <code>false</code>.</p>
1744
1744
  * @public
1745
1745
  */
1746
- completed?: string;
1746
+ completed?: string | undefined;
1747
1747
  }
1748
1748
  /**
1749
1749
  * <p>Contains the Amazon S3 Glacier response to your request.</p>
@@ -1755,7 +1755,7 @@ export interface ListJobsOutput {
1755
1755
  * job.</p>
1756
1756
  * @public
1757
1757
  */
1758
- JobList?: GlacierJobDescription[];
1758
+ JobList?: GlacierJobDescription[] | undefined;
1759
1759
  /**
1760
1760
  * <p>
1761
1761
  * An opaque string used for pagination that specifies the job at which the listing of jobs should begin.
@@ -1764,7 +1764,7 @@ export interface ListJobsOutput {
1764
1764
  * previous List Jobs request. </p>
1765
1765
  * @public
1766
1766
  */
1767
- Marker?: string;
1767
+ Marker?: string | undefined;
1768
1768
  }
1769
1769
  /**
1770
1770
  * <p>Provides options for retrieving list of in-progress multipart uploads for an Amazon
@@ -1791,7 +1791,7 @@ export interface ListMultipartUploadsInput {
1791
1791
  * is not specified, the List Uploads operation returns up to 50 uploads.</p>
1792
1792
  * @public
1793
1793
  */
1794
- limit?: number;
1794
+ limit?: number | undefined;
1795
1795
  /**
1796
1796
  * <p>An opaque string used for pagination. This value specifies the upload at which the
1797
1797
  * listing of uploads should begin. Get the marker value from a previous List Uploads
@@ -1799,7 +1799,7 @@ export interface ListMultipartUploadsInput {
1799
1799
  * started in a previous List Uploads request.</p>
1800
1800
  * @public
1801
1801
  */
1802
- marker?: string;
1802
+ marker?: string | undefined;
1803
1803
  }
1804
1804
  /**
1805
1805
  * <p>A list of in-progress multipart uploads for a vault.</p>
@@ -1810,30 +1810,30 @@ export interface UploadListElement {
1810
1810
  * <p>The ID of a multipart upload.</p>
1811
1811
  * @public
1812
1812
  */
1813
- MultipartUploadId?: string;
1813
+ MultipartUploadId?: string | undefined;
1814
1814
  /**
1815
1815
  * <p>The Amazon Resource Name (ARN) of the vault that contains the archive.</p>
1816
1816
  * @public
1817
1817
  */
1818
- VaultARN?: string;
1818
+ VaultARN?: string | undefined;
1819
1819
  /**
1820
1820
  * <p>The description of the archive that was specified in the Initiate Multipart Upload
1821
1821
  * request.</p>
1822
1822
  * @public
1823
1823
  */
1824
- ArchiveDescription?: string;
1824
+ ArchiveDescription?: string | undefined;
1825
1825
  /**
1826
1826
  * <p>The part size, in bytes, specified in the Initiate Multipart Upload request. This is
1827
1827
  * the size of all the parts in the upload except the last part, which may be smaller than
1828
1828
  * this size.</p>
1829
1829
  * @public
1830
1830
  */
1831
- PartSizeInBytes?: number;
1831
+ PartSizeInBytes?: number | undefined;
1832
1832
  /**
1833
1833
  * <p>The UTC time at which the multipart upload was initiated.</p>
1834
1834
  * @public
1835
1835
  */
1836
- CreationDate?: string;
1836
+ CreationDate?: string | undefined;
1837
1837
  }
1838
1838
  /**
1839
1839
  * <p>Contains the Amazon S3 Glacier response to your request.</p>
@@ -1844,14 +1844,14 @@ export interface ListMultipartUploadsOutput {
1844
1844
  * <p>A list of in-progress multipart uploads.</p>
1845
1845
  * @public
1846
1846
  */
1847
- UploadsList?: UploadListElement[];
1847
+ UploadsList?: UploadListElement[] | undefined;
1848
1848
  /**
1849
1849
  * <p>An opaque string that represents where to continue pagination of the results. You use
1850
1850
  * the marker in a new List Multipart Uploads request to obtain more uploads in the list. If
1851
1851
  * there are no more uploads, this value is <code>null</code>.</p>
1852
1852
  * @public
1853
1853
  */
1854
- Marker?: string;
1854
+ Marker?: string | undefined;
1855
1855
  }
1856
1856
  /**
1857
1857
  * <p>Provides options for retrieving a list of parts of an archive that have been uploaded
@@ -1885,14 +1885,14 @@ export interface ListPartsInput {
1885
1885
  * results started in a previous List Parts request.</p>
1886
1886
  * @public
1887
1887
  */
1888
- marker?: string;
1888
+ marker?: string | undefined;
1889
1889
  /**
1890
1890
  * <p>The maximum number of parts to be returned. The default limit is 50. The number of
1891
1891
  * parts returned might be fewer than the specified limit, but the number of returned parts
1892
1892
  * never exceeds the limit.</p>
1893
1893
  * @public
1894
1894
  */
1895
- limit?: number;
1895
+ limit?: number | undefined;
1896
1896
  }
1897
1897
  /**
1898
1898
  * <p>A list of the part sizes of the multipart upload.</p>
@@ -1903,13 +1903,13 @@ export interface PartListElement {
1903
1903
  * <p>The byte range of a part, inclusive of the upper value of the range.</p>
1904
1904
  * @public
1905
1905
  */
1906
- RangeInBytes?: string;
1906
+ RangeInBytes?: string | undefined;
1907
1907
  /**
1908
1908
  * <p>The SHA256 tree hash value that Amazon S3 Glacier calculated for the part. This field is
1909
1909
  * never <code>null</code>.</p>
1910
1910
  * @public
1911
1911
  */
1912
- SHA256TreeHash?: string;
1912
+ SHA256TreeHash?: string | undefined;
1913
1913
  }
1914
1914
  /**
1915
1915
  * <p>Contains the Amazon S3 Glacier response to your request.</p>
@@ -1920,44 +1920,44 @@ export interface ListPartsOutput {
1920
1920
  * <p>The ID of the upload to which the parts are associated.</p>
1921
1921
  * @public
1922
1922
  */
1923
- MultipartUploadId?: string;
1923
+ MultipartUploadId?: string | undefined;
1924
1924
  /**
1925
1925
  * <p>The Amazon Resource Name (ARN) of the vault to which the multipart upload was
1926
1926
  * initiated.</p>
1927
1927
  * @public
1928
1928
  */
1929
- VaultARN?: string;
1929
+ VaultARN?: string | undefined;
1930
1930
  /**
1931
1931
  * <p>The description of the archive that was specified in the Initiate Multipart Upload
1932
1932
  * request.</p>
1933
1933
  * @public
1934
1934
  */
1935
- ArchiveDescription?: string;
1935
+ ArchiveDescription?: string | undefined;
1936
1936
  /**
1937
1937
  * <p>The part size in bytes. This is the same value that you specified in the Initiate
1938
1938
  * Multipart Upload request.</p>
1939
1939
  * @public
1940
1940
  */
1941
- PartSizeInBytes?: number;
1941
+ PartSizeInBytes?: number | undefined;
1942
1942
  /**
1943
1943
  * <p>The UTC time at which the multipart upload was initiated.</p>
1944
1944
  * @public
1945
1945
  */
1946
- CreationDate?: string;
1946
+ CreationDate?: string | undefined;
1947
1947
  /**
1948
1948
  * <p>A list of the part sizes of the multipart upload. Each object in the array contains a
1949
1949
  * <code>RangeBytes</code> and <code>sha256-tree-hash</code> name/value
1950
1950
  * pair.</p>
1951
1951
  * @public
1952
1952
  */
1953
- Parts?: PartListElement[];
1953
+ Parts?: PartListElement[] | undefined;
1954
1954
  /**
1955
1955
  * <p>An opaque string that represents where to continue pagination of the results. You use
1956
1956
  * the marker in a new List Parts request to obtain more jobs in the list. If there are no
1957
1957
  * more parts, this value is <code>null</code>.</p>
1958
1958
  * @public
1959
1959
  */
1960
- Marker?: string;
1960
+ Marker?: string | undefined;
1961
1961
  }
1962
1962
  /**
1963
1963
  * @public
@@ -1981,17 +1981,17 @@ export interface ProvisionedCapacityDescription {
1981
1981
  * <p>The ID that identifies the provisioned capacity unit.</p>
1982
1982
  * @public
1983
1983
  */
1984
- CapacityId?: string;
1984
+ CapacityId?: string | undefined;
1985
1985
  /**
1986
1986
  * <p>The date that the provisioned capacity unit was purchased, in Universal Coordinated Time (UTC).</p>
1987
1987
  * @public
1988
1988
  */
1989
- StartDate?: string;
1989
+ StartDate?: string | undefined;
1990
1990
  /**
1991
1991
  * <p>The date that the provisioned capacity unit expires, in Universal Coordinated Time (UTC).</p>
1992
1992
  * @public
1993
1993
  */
1994
- ExpirationDate?: string;
1994
+ ExpirationDate?: string | undefined;
1995
1995
  }
1996
1996
  /**
1997
1997
  * @public
@@ -2001,7 +2001,7 @@ export interface ListProvisionedCapacityOutput {
2001
2001
  * <p>The response body contains the following JSON fields.</p>
2002
2002
  * @public
2003
2003
  */
2004
- ProvisionedCapacityList?: ProvisionedCapacityDescription[];
2004
+ ProvisionedCapacityList?: ProvisionedCapacityDescription[] | undefined;
2005
2005
  }
2006
2006
  /**
2007
2007
  * <p>The input value for <code>ListTagsForVaultInput</code>.</p>
@@ -2032,7 +2032,7 @@ export interface ListTagsForVaultOutput {
2032
2032
  * <p>The tags attached to the vault. Each tag is composed of a key and a value.</p>
2033
2033
  * @public
2034
2034
  */
2035
- Tags?: Record<string, string>;
2035
+ Tags?: Record<string, string> | undefined;
2036
2036
  }
2037
2037
  /**
2038
2038
  * <p>Provides options to retrieve the vault list owned by the calling user's account. The
@@ -2054,14 +2054,14 @@ export interface ListVaultsInput {
2054
2054
  * listing of vaults should begin.</p>
2055
2055
  * @public
2056
2056
  */
2057
- marker?: string;
2057
+ marker?: string | undefined;
2058
2058
  /**
2059
2059
  * <p>The maximum number of vaults to be returned. The default limit is 10. The number of
2060
2060
  * vaults returned might be fewer than the specified limit, but the number of returned vaults
2061
2061
  * never exceeds the limit.</p>
2062
2062
  * @public
2063
2063
  */
2064
- limit?: number;
2064
+ limit?: number | undefined;
2065
2065
  }
2066
2066
  /**
2067
2067
  * <p>Contains the Amazon S3 Glacier response to your request.</p>
@@ -2072,13 +2072,13 @@ export interface ListVaultsOutput {
2072
2072
  * <p>List of vaults.</p>
2073
2073
  * @public
2074
2074
  */
2075
- VaultList?: DescribeVaultOutput[];
2075
+ VaultList?: DescribeVaultOutput[] | undefined;
2076
2076
  /**
2077
2077
  * <p>The vault ARN at which to continue pagination of the results. You use the marker in
2078
2078
  * another List Vaults request to obtain more vaults in the list.</p>
2079
2079
  * @public
2080
2080
  */
2081
- Marker?: string;
2081
+ Marker?: string | undefined;
2082
2082
  }
2083
2083
  /**
2084
2084
  * @public
@@ -2101,7 +2101,7 @@ export interface PurchaseProvisionedCapacityOutput {
2101
2101
  * <p>The ID that identifies the provisioned capacity unit.</p>
2102
2102
  * @public
2103
2103
  */
2104
- capacityId?: string;
2104
+ capacityId?: string | undefined;
2105
2105
  }
2106
2106
  /**
2107
2107
  * <p>The input value for <code>RemoveTagsFromVaultInput</code>.</p>
@@ -2126,7 +2126,7 @@ export interface RemoveTagsFromVaultInput {
2126
2126
  * <p>A list of tag keys. Each corresponding tag is removed from the vault.</p>
2127
2127
  * @public
2128
2128
  */
2129
- TagKeys?: string[];
2129
+ TagKeys?: string[] | undefined;
2130
2130
  }
2131
2131
  /**
2132
2132
  * <p>SetDataRetrievalPolicy input.</p>
@@ -2146,7 +2146,7 @@ export interface SetDataRetrievalPolicyInput {
2146
2146
  * <p>The data retrieval policy in JSON format.</p>
2147
2147
  * @public
2148
2148
  */
2149
- Policy?: DataRetrievalPolicy;
2149
+ Policy?: DataRetrievalPolicy | undefined;
2150
2150
  }
2151
2151
  /**
2152
2152
  * <p>SetVaultAccessPolicy input.</p>
@@ -2171,7 +2171,7 @@ export interface SetVaultAccessPolicyInput {
2171
2171
  * <p>The vault access policy as a JSON string.</p>
2172
2172
  * @public
2173
2173
  */
2174
- policy?: VaultAccessPolicy;
2174
+ policy?: VaultAccessPolicy | undefined;
2175
2175
  }
2176
2176
  /**
2177
2177
  * <p>Provides options to configure notifications that will be sent when specific events
@@ -2197,7 +2197,7 @@ export interface SetVaultNotificationsInput {
2197
2197
  * <p>Provides options for specifying notification configuration.</p>
2198
2198
  * @public
2199
2199
  */
2200
- vaultNotificationConfig?: VaultNotificationConfig;
2200
+ vaultNotificationConfig?: VaultNotificationConfig | undefined;
2201
2201
  }
2202
2202
  /**
2203
2203
  * <p>Returned if, when uploading an archive, Amazon S3 Glacier times out while receiving the
@@ -2211,12 +2211,12 @@ export declare class RequestTimeoutException extends __BaseException {
2211
2211
  * <p>Client</p>
2212
2212
  * @public
2213
2213
  */
2214
- type?: string;
2214
+ type?: string | undefined;
2215
2215
  /**
2216
2216
  * <p>408 Request Timeout</p>
2217
2217
  * @public
2218
2218
  */
2219
- code?: string;
2219
+ code?: string | undefined;
2220
2220
  /**
2221
2221
  * @internal
2222
2222
  */
@@ -2245,17 +2245,17 @@ export interface UploadArchiveInput {
2245
2245
  * <p>The optional description of the archive you are uploading.</p>
2246
2246
  * @public
2247
2247
  */
2248
- archiveDescription?: string;
2248
+ archiveDescription?: string | undefined;
2249
2249
  /**
2250
2250
  * <p>The SHA256 tree hash of the data being uploaded.</p>
2251
2251
  * @public
2252
2252
  */
2253
- checksum?: string;
2253
+ checksum?: string | undefined;
2254
2254
  /**
2255
2255
  * <p>The data to upload.</p>
2256
2256
  * @public
2257
2257
  */
2258
- body?: StreamingBlobTypes;
2258
+ body?: StreamingBlobTypes | undefined;
2259
2259
  }
2260
2260
  /**
2261
2261
  * <p>Provides options to upload a part of an archive in a multipart upload
@@ -2286,7 +2286,7 @@ export interface UploadMultipartPartInput {
2286
2286
  * <p>The SHA256 tree hash of the data being uploaded.</p>
2287
2287
  * @public
2288
2288
  */
2289
- checksum?: string;
2289
+ checksum?: string | undefined;
2290
2290
  /**
2291
2291
  * <p>Identifies the range of bytes in the assembled archive that will be uploaded in this
2292
2292
  * part. Amazon S3 Glacier uses this information to assemble the archive in the proper sequence.
@@ -2294,12 +2294,12 @@ export interface UploadMultipartPartInput {
2294
2294
  * 0-4194303/*.</p>
2295
2295
  * @public
2296
2296
  */
2297
- range?: string;
2297
+ range?: string | undefined;
2298
2298
  /**
2299
2299
  * <p>The data to upload.</p>
2300
2300
  * @public
2301
2301
  */
2302
- body?: StreamingBlobTypes;
2302
+ body?: StreamingBlobTypes | undefined;
2303
2303
  }
2304
2304
  /**
2305
2305
  * <p>Contains the Amazon S3 Glacier response to your request.</p>
@@ -2310,7 +2310,7 @@ export interface UploadMultipartPartOutput {
2310
2310
  * <p>The SHA256 tree hash that Amazon S3 Glacier computed for the uploaded part.</p>
2311
2311
  * @public
2312
2312
  */
2313
- checksum?: string;
2313
+ checksum?: string | undefined;
2314
2314
  }
2315
2315
  /**
2316
2316
  * @internal