aws-sdk-s3 1.188.0 → 1.195.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.
data/lib/aws-sdk-s3.rb CHANGED
@@ -75,7 +75,7 @@ module Aws::S3
75
75
  autoload :ObjectVersion, 'aws-sdk-s3/object_version'
76
76
  autoload :EventStreams, 'aws-sdk-s3/event_streams'
77
77
 
78
- GEM_VERSION = '1.188.0'
78
+ GEM_VERSION = '1.195.0'
79
79
 
80
80
  end
81
81
 
data/sig/bucket.rbs CHANGED
@@ -23,6 +23,9 @@ module Aws
23
23
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#bucket_region-instance_method
24
24
  def bucket_region: () -> ::String
25
25
 
26
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#bucket_arn-instance_method
27
+ def bucket_arn: () -> ::String
28
+
26
29
  def client: () -> Client
27
30
 
28
31
 
@@ -56,7 +59,13 @@ module Aws
56
59
  bucket: {
57
60
  data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
58
61
  type: ("Directory")?
59
- }?
62
+ }?,
63
+ tags: Array[
64
+ {
65
+ key: ::String,
66
+ value: ::String
67
+ },
68
+ ]?
60
69
  },
61
70
  ?grant_full_control: ::String,
62
71
  ?grant_read: ::String,
@@ -123,8 +132,8 @@ module Aws
123
132
  key: ::String,
124
133
  ?write_offset_bytes: ::Integer,
125
134
  ?metadata: Hash[::String, ::String],
126
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
127
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
135
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
136
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
128
137
  ?website_redirect_location: ::String,
129
138
  ?sse_customer_algorithm: ::String,
130
139
  ?sse_customer_key: ::String,
data/sig/client.rbs CHANGED
@@ -20,6 +20,7 @@ module Aws
20
20
  ?account_id: String,
21
21
  ?active_endpoint_cache: bool,
22
22
  ?adaptive_retry_wait_to_fill: bool,
23
+ ?auth_scheme_preference: Array[String],
23
24
  ?client_side_monitoring: bool,
24
25
  ?client_side_monitoring_client_id: String,
25
26
  ?client_side_monitoring_host: String,
@@ -120,7 +121,7 @@ module Aws
120
121
  def checksum_sha1: () -> ::String
121
122
  def checksum_sha256: () -> ::String
122
123
  def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
123
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
124
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
124
125
  def version_id: () -> ::String
125
126
  def ssekms_key_id: () -> ::String
126
127
  def bucket_key_enabled: () -> bool
@@ -167,7 +168,7 @@ module Aws
167
168
  def expiration: () -> ::String
168
169
  def copy_source_version_id: () -> ::String
169
170
  def version_id: () -> ::String
170
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
171
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
171
172
  def sse_customer_algorithm: () -> ::String
172
173
  def sse_customer_key_md5: () -> ::String
173
174
  def ssekms_key_id: () -> ::String
@@ -199,8 +200,8 @@ module Aws
199
200
  ?metadata: Hash[::String, ::String],
200
201
  ?metadata_directive: ("COPY" | "REPLACE"),
201
202
  ?tagging_directive: ("COPY" | "REPLACE"),
202
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
203
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
203
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
204
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
204
205
  ?website_redirect_location: ::String,
205
206
  ?sse_customer_algorithm: ::String,
206
207
  ?sse_customer_key: ::String,
@@ -224,6 +225,7 @@ module Aws
224
225
  interface _CreateBucketResponseSuccess
225
226
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateBucketOutput]
226
227
  def location: () -> ::String
228
+ def bucket_arn: () -> ::String
227
229
  end
228
230
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket-instance_method
229
231
  def create_bucket: (
@@ -238,7 +240,13 @@ module Aws
238
240
  bucket: {
239
241
  data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
240
242
  type: ("Directory")?
241
- }?
243
+ }?,
244
+ tags: Array[
245
+ {
246
+ key: ::String,
247
+ value: ::String
248
+ },
249
+ ]?
242
250
  },
243
251
  ?grant_full_control: ::String,
244
252
  ?grant_read: ::String,
@@ -250,6 +258,34 @@ module Aws
250
258
  ) -> _CreateBucketResponseSuccess
251
259
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBucketResponseSuccess
252
260
 
261
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket_metadata_configuration-instance_method
262
+ def create_bucket_metadata_configuration: (
263
+ bucket: ::String,
264
+ ?content_md5: ::String,
265
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
266
+ metadata_configuration: {
267
+ journal_table_configuration: {
268
+ record_expiration: {
269
+ expiration: ("ENABLED" | "DISABLED"),
270
+ days: ::Integer?
271
+ },
272
+ encryption_configuration: {
273
+ sse_algorithm: ("aws:kms" | "AES256"),
274
+ kms_key_arn: ::String?
275
+ }?
276
+ },
277
+ inventory_table_configuration: {
278
+ configuration_state: ("ENABLED" | "DISABLED"),
279
+ encryption_configuration: {
280
+ sse_algorithm: ("aws:kms" | "AES256"),
281
+ kms_key_arn: ::String?
282
+ }?
283
+ }?
284
+ },
285
+ ?expected_bucket_owner: ::String
286
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
287
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
288
+
253
289
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_bucket_metadata_table_configuration-instance_method
254
290
  def create_bucket_metadata_table_configuration: (
255
291
  bucket: ::String,
@@ -272,7 +308,7 @@ module Aws
272
308
  def bucket: () -> ::String
273
309
  def key: () -> ::String
274
310
  def upload_id: () -> ::String
275
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
311
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
276
312
  def sse_customer_algorithm: () -> ::String
277
313
  def sse_customer_key_md5: () -> ::String
278
314
  def ssekms_key_id: () -> ::String
@@ -298,8 +334,8 @@ module Aws
298
334
  ?grant_write_acp: ::String,
299
335
  key: ::String,
300
336
  ?metadata: Hash[::String, ::String],
301
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
302
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
337
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
338
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
303
339
  ?website_redirect_location: ::String,
304
340
  ?sse_customer_algorithm: ::String,
305
341
  ?sse_customer_key: ::String,
@@ -320,7 +356,7 @@ module Aws
320
356
 
321
357
  interface _CreateSessionResponseSuccess
322
358
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateSessionOutput]
323
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
359
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
324
360
  def ssekms_key_id: () -> ::String
325
361
  def ssekms_encryption_context: () -> ::String
326
362
  def bucket_key_enabled: () -> bool
@@ -330,7 +366,7 @@ module Aws
330
366
  def create_session: (
331
367
  ?session_mode: ("ReadOnly" | "ReadWrite"),
332
368
  bucket: ::String,
333
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
369
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
334
370
  ?ssekms_key_id: ::String,
335
371
  ?ssekms_encryption_context: ::String,
336
372
  ?bucket_key_enabled: bool
@@ -369,7 +405,8 @@ module Aws
369
405
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_intelligent_tiering_configuration-instance_method
370
406
  def delete_bucket_intelligent_tiering_configuration: (
371
407
  bucket: ::String,
372
- id: ::String
408
+ id: ::String,
409
+ ?expected_bucket_owner: ::String
373
410
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
374
411
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
375
412
 
@@ -388,6 +425,13 @@ module Aws
388
425
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
389
426
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
390
427
 
428
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metadata_configuration-instance_method
429
+ def delete_bucket_metadata_configuration: (
430
+ bucket: ::String,
431
+ ?expected_bucket_owner: ::String
432
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
433
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
434
+
391
435
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#delete_bucket_metadata_table_configuration-instance_method
392
436
  def delete_bucket_metadata_table_configuration: (
393
437
  bucket: ::String,
@@ -574,7 +618,8 @@ module Aws
574
618
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_intelligent_tiering_configuration-instance_method
575
619
  def get_bucket_intelligent_tiering_configuration: (
576
620
  bucket: ::String,
577
- id: ::String
621
+ id: ::String,
622
+ ?expected_bucket_owner: ::String
578
623
  ) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
579
624
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketIntelligentTieringConfigurationResponseSuccess
580
625
 
@@ -635,6 +680,17 @@ module Aws
635
680
  ) -> _GetBucketLoggingResponseSuccess
636
681
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketLoggingResponseSuccess
637
682
 
683
+ interface _GetBucketMetadataConfigurationResponseSuccess
684
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetadataConfigurationOutput]
685
+ def get_bucket_metadata_configuration_result: () -> Types::GetBucketMetadataConfigurationResult
686
+ end
687
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_metadata_configuration-instance_method
688
+ def get_bucket_metadata_configuration: (
689
+ bucket: ::String,
690
+ ?expected_bucket_owner: ::String
691
+ ) -> _GetBucketMetadataConfigurationResponseSuccess
692
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketMetadataConfigurationResponseSuccess
693
+
638
694
  interface _GetBucketMetadataTableConfigurationResponseSuccess
639
695
  include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketMetadataTableConfigurationOutput]
640
696
  def get_bucket_metadata_table_configuration_result: () -> Types::GetBucketMetadataTableConfigurationResult
@@ -804,13 +860,13 @@ module Aws
804
860
  def expires: () -> ::Time
805
861
  def expires_string: () -> ::String
806
862
  def website_redirect_location: () -> ::String
807
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
863
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
808
864
  def metadata: () -> ::Hash[::String, ::String]
809
865
  def sse_customer_algorithm: () -> ::String
810
866
  def sse_customer_key_md5: () -> ::String
811
867
  def ssekms_key_id: () -> ::String
812
868
  def bucket_key_enabled: () -> bool
813
- def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
869
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
814
870
  def request_charged: () -> ("requester")
815
871
  def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
816
872
  def parts_count: () -> ::Integer
@@ -870,7 +926,7 @@ module Aws
870
926
  def etag: () -> ::String
871
927
  def checksum: () -> Types::Checksum
872
928
  def object_parts: () -> Types::GetObjectAttributesParts
873
- def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
929
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
874
930
  def object_size: () -> ::Integer
875
931
  end
876
932
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_object_attributes-instance_method
@@ -970,6 +1026,7 @@ module Aws
970
1026
 
971
1027
  interface _HeadBucketResponseSuccess
972
1028
  include ::Seahorse::Client::_ResponseSuccess[Types::HeadBucketOutput]
1029
+ def bucket_arn: () -> ::String
973
1030
  def bucket_location_type: () -> ("AvailabilityZone" | "LocalZone")
974
1031
  def bucket_location_name: () -> ::String
975
1032
  def bucket_region: () -> ::String
@@ -1009,16 +1066,17 @@ module Aws
1009
1066
  def expires: () -> ::Time
1010
1067
  def expires_string: () -> ::String
1011
1068
  def website_redirect_location: () -> ::String
1012
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
1069
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
1013
1070
  def metadata: () -> ::Hash[::String, ::String]
1014
1071
  def sse_customer_algorithm: () -> ::String
1015
1072
  def sse_customer_key_md5: () -> ::String
1016
1073
  def ssekms_key_id: () -> ::String
1017
1074
  def bucket_key_enabled: () -> bool
1018
- def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1075
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
1019
1076
  def request_charged: () -> ("requester")
1020
1077
  def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
1021
1078
  def parts_count: () -> ::Integer
1079
+ def tag_count: () -> ::Integer
1022
1080
  def object_lock_mode: () -> ("GOVERNANCE" | "COMPLIANCE")
1023
1081
  def object_lock_retain_until_date: () -> ::Time
1024
1082
  def object_lock_legal_hold_status: () -> ("ON" | "OFF")
@@ -1074,7 +1132,8 @@ module Aws
1074
1132
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_bucket_intelligent_tiering_configurations-instance_method
1075
1133
  def list_bucket_intelligent_tiering_configurations: (
1076
1134
  bucket: ::String,
1077
- ?continuation_token: ::String
1135
+ ?continuation_token: ::String,
1136
+ ?expected_bucket_owner: ::String
1078
1137
  ) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
1079
1138
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketIntelligentTieringConfigurationsResponseSuccess
1080
1139
 
@@ -1272,7 +1331,7 @@ module Aws
1272
1331
  def parts: () -> ::Array[Types::Part]
1273
1332
  def initiator: () -> Types::Initiator
1274
1333
  def owner: () -> Types::Owner
1275
- def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
1334
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
1276
1335
  def request_charged: () -> ("requester")
1277
1336
  def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
1278
1337
  def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
@@ -1406,7 +1465,7 @@ module Aws
1406
1465
  rules: Array[
1407
1466
  {
1408
1467
  apply_server_side_encryption_by_default: {
1409
- sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse"),
1468
+ sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
1410
1469
  kms_master_key_id: ::String?
1411
1470
  }?,
1412
1471
  bucket_key_enabled: bool?
@@ -1421,6 +1480,7 @@ module Aws
1421
1480
  def put_bucket_intelligent_tiering_configuration: (
1422
1481
  bucket: ::String,
1423
1482
  id: ::String,
1483
+ ?expected_bucket_owner: ::String,
1424
1484
  intelligent_tiering_configuration: {
1425
1485
  id: ::String,
1426
1486
  filter: {
@@ -1819,7 +1879,7 @@ module Aws
1819
1879
  destination: {
1820
1880
  bucket: ::String,
1821
1881
  account: ::String?,
1822
- storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")?,
1882
+ storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?,
1823
1883
  access_control_translation: {
1824
1884
  owner: ("Destination")
1825
1885
  }?,
@@ -1939,7 +1999,7 @@ module Aws
1939
1999
  def checksum_sha1: () -> ::String
1940
2000
  def checksum_sha256: () -> ::String
1941
2001
  def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
1942
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
2002
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
1943
2003
  def version_id: () -> ::String
1944
2004
  def sse_customer_algorithm: () -> ::String
1945
2005
  def sse_customer_key_md5: () -> ::String
@@ -1977,8 +2037,8 @@ module Aws
1977
2037
  key: ::String,
1978
2038
  ?write_offset_bytes: ::Integer,
1979
2039
  ?metadata: Hash[::String, ::String],
1980
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
1981
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
2040
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
2041
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
1982
2042
  ?website_redirect_location: ::String,
1983
2043
  ?sse_customer_algorithm: ::String,
1984
2044
  ?sse_customer_key: ::String,
@@ -2139,6 +2199,26 @@ module Aws
2139
2199
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2140
2200
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2141
2201
 
2202
+ interface _RenameObjectResponseSuccess
2203
+ include ::Seahorse::Client::_ResponseSuccess[Types::RenameObjectOutput]
2204
+ end
2205
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#rename_object-instance_method
2206
+ def rename_object: (
2207
+ bucket: ::String,
2208
+ key: ::String,
2209
+ rename_source: ::String,
2210
+ ?destination_if_match: ::String,
2211
+ ?destination_if_none_match: ::String,
2212
+ ?destination_if_modified_since: ::Time,
2213
+ ?destination_if_unmodified_since: ::Time,
2214
+ ?source_if_match: ::String,
2215
+ ?source_if_none_match: ::String,
2216
+ ?source_if_modified_since: ::Time,
2217
+ ?source_if_unmodified_since: ::Time,
2218
+ ?client_token: ::String
2219
+ ) -> _RenameObjectResponseSuccess
2220
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RenameObjectResponseSuccess
2221
+
2142
2222
  interface _RestoreObjectResponseSuccess
2143
2223
  include ::Seahorse::Client::_ResponseSuccess[Types::RestoreObjectOutput]
2144
2224
  def request_charged: () -> ("requester")
@@ -2195,7 +2275,7 @@ module Aws
2195
2275
  bucket_name: ::String,
2196
2276
  prefix: ::String,
2197
2277
  encryption: {
2198
- encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse"),
2278
+ encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
2199
2279
  kms_key_id: ::String?,
2200
2280
  kms_context: ::String?
2201
2281
  }?,
@@ -2226,7 +2306,7 @@ module Aws
2226
2306
  value: ::String?
2227
2307
  },
2228
2308
  ]?,
2229
- storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")?
2309
+ storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?
2230
2310
  }?
2231
2311
  }?
2232
2312
  },
@@ -2289,9 +2369,40 @@ module Aws
2289
2369
  ) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
2290
2370
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _SelectObjectContentResponseSuccess
2291
2371
 
2372
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#update_bucket_metadata_inventory_table_configuration-instance_method
2373
+ def update_bucket_metadata_inventory_table_configuration: (
2374
+ bucket: ::String,
2375
+ ?content_md5: ::String,
2376
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2377
+ inventory_table_configuration: {
2378
+ configuration_state: ("ENABLED" | "DISABLED"),
2379
+ encryption_configuration: {
2380
+ sse_algorithm: ("aws:kms" | "AES256"),
2381
+ kms_key_arn: ::String?
2382
+ }?
2383
+ },
2384
+ ?expected_bucket_owner: ::String
2385
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2387
+
2388
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#update_bucket_metadata_journal_table_configuration-instance_method
2389
+ def update_bucket_metadata_journal_table_configuration: (
2390
+ bucket: ::String,
2391
+ ?content_md5: ::String,
2392
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
2393
+ journal_table_configuration: {
2394
+ record_expiration: {
2395
+ expiration: ("ENABLED" | "DISABLED"),
2396
+ days: ::Integer?
2397
+ }
2398
+ },
2399
+ ?expected_bucket_owner: ::String
2400
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2401
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
2402
+
2292
2403
  interface _UploadPartResponseSuccess
2293
2404
  include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartOutput]
2294
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
2405
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2295
2406
  def etag: () -> ::String
2296
2407
  def checksum_crc32: () -> ::String
2297
2408
  def checksum_crc32c: () -> ::String
@@ -2331,7 +2442,7 @@ module Aws
2331
2442
  include ::Seahorse::Client::_ResponseSuccess[Types::UploadPartCopyOutput]
2332
2443
  def copy_source_version_id: () -> ::String
2333
2444
  def copy_part_result: () -> Types::CopyPartResult
2334
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
2445
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
2335
2446
  def sse_customer_algorithm: () -> ::String
2336
2447
  def sse_customer_key_md5: () -> ::String
2337
2448
  def ssekms_key_id: () -> ::String
@@ -2397,11 +2508,11 @@ module Aws
2397
2508
  ?replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED"),
2398
2509
  ?request_charged: ("requester"),
2399
2510
  ?restore: ::String,
2400
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
2511
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
2401
2512
  ?sse_customer_algorithm: ::String,
2402
2513
  ?ssekms_key_id: ::String,
2403
2514
  ?sse_customer_key_md5: ::String,
2404
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
2515
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
2405
2516
  ?tag_count: ::Integer,
2406
2517
  ?version_id: ::String,
2407
2518
  ?bucket_key_enabled: bool
data/sig/errors.rbs CHANGED
@@ -17,6 +17,8 @@ module Aws
17
17
  end
18
18
  class EncryptionTypeMismatch < ::Aws::Errors::ServiceError
19
19
  end
20
+ class IdempotencyParameterMismatch < ::Aws::Errors::ServiceError
21
+ end
20
22
  class InvalidObjectState < ::Aws::Errors::ServiceError
21
23
  def storage_class: () -> ::String
22
24
  def access_tier: () -> ::String
@@ -33,7 +33,7 @@ module Aws
33
33
  def initiated: () -> ::Time
34
34
 
35
35
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#storage_class-instance_method
36
- def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
36
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
37
37
 
38
38
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#owner-instance_method
39
39
  def owner: () -> Types::Owner
data/sig/object.rbs CHANGED
@@ -96,7 +96,7 @@ module Aws
96
96
  def website_redirect_location: () -> ::String
97
97
 
98
98
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#server_side_encryption-instance_method
99
- def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
99
+ def server_side_encryption: () -> ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse")
100
100
 
101
101
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#metadata-instance_method
102
102
  def metadata: () -> ::Hash[::String, ::String]
@@ -114,7 +114,7 @@ module Aws
114
114
  def bucket_key_enabled: () -> bool
115
115
 
116
116
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#storage_class-instance_method
117
- def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
117
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
118
118
 
119
119
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#request_charged-instance_method
120
120
  def request_charged: () -> ("requester")
@@ -125,6 +125,9 @@ module Aws
125
125
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#parts_count-instance_method
126
126
  def parts_count: () -> ::Integer
127
127
 
128
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#tag_count-instance_method
129
+ def tag_count: () -> ::Integer
130
+
128
131
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#object_lock_mode-instance_method
129
132
  def object_lock_mode: () -> ("GOVERNANCE" | "COMPLIANCE")
130
133
 
@@ -180,8 +183,8 @@ module Aws
180
183
  ?metadata: Hash[::String, ::String],
181
184
  ?metadata_directive: ("COPY" | "REPLACE"),
182
185
  ?tagging_directive: ("COPY" | "REPLACE"),
183
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
184
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
186
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
187
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
185
188
  ?website_redirect_location: ::String,
186
189
  ?sse_customer_algorithm: ::String,
187
190
  ?sse_customer_key: ::String,
@@ -253,8 +256,8 @@ module Aws
253
256
  ?grant_read_acp: ::String,
254
257
  ?grant_write_acp: ::String,
255
258
  ?metadata: Hash[::String, ::String],
256
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
257
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
259
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
260
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
258
261
  ?website_redirect_location: ::String,
259
262
  ?sse_customer_algorithm: ::String,
260
263
  ?sse_customer_key: ::String,
@@ -299,8 +302,8 @@ module Aws
299
302
  ?grant_write_acp: ::String,
300
303
  ?write_offset_bytes: ::Integer,
301
304
  ?metadata: Hash[::String, ::String],
302
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
303
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
305
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
306
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
304
307
  ?website_redirect_location: ::String,
305
308
  ?sse_customer_algorithm: ::String,
306
309
  ?sse_customer_key: ::String,
@@ -366,7 +369,7 @@ module Aws
366
369
  bucket_name: ::String,
367
370
  prefix: ::String,
368
371
  encryption: {
369
- encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse"),
372
+ encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
370
373
  kms_key_id: ::String?,
371
374
  kms_context: ::String?
372
375
  }?,
@@ -397,7 +400,7 @@ module Aws
397
400
  value: ::String?
398
401
  },
399
402
  ]?,
400
- storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")?
403
+ storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?
401
404
  }?
402
405
  }?
403
406
  },
@@ -36,7 +36,7 @@ module Aws
36
36
  def size: () -> ::Integer
37
37
 
38
38
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/ObjectSummary.html#storage_class-instance_method
39
- def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
39
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
40
40
 
41
41
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/ObjectSummary.html#owner-instance_method
42
42
  def owner: () -> Types::Owner
@@ -87,8 +87,8 @@ module Aws
87
87
  ?metadata: Hash[::String, ::String],
88
88
  ?metadata_directive: ("COPY" | "REPLACE"),
89
89
  ?tagging_directive: ("COPY" | "REPLACE"),
90
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
91
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
90
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
91
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
92
92
  ?website_redirect_location: ::String,
93
93
  ?sse_customer_algorithm: ::String,
94
94
  ?sse_customer_key: ::String,
@@ -160,8 +160,8 @@ module Aws
160
160
  ?grant_read_acp: ::String,
161
161
  ?grant_write_acp: ::String,
162
162
  ?metadata: Hash[::String, ::String],
163
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
164
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
163
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
164
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
165
165
  ?website_redirect_location: ::String,
166
166
  ?sse_customer_algorithm: ::String,
167
167
  ?sse_customer_key: ::String,
@@ -206,8 +206,8 @@ module Aws
206
206
  ?grant_write_acp: ::String,
207
207
  ?write_offset_bytes: ::Integer,
208
208
  ?metadata: Hash[::String, ::String],
209
- ?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
210
- ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
209
+ ?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
210
+ ?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
211
211
  ?website_redirect_location: ::String,
212
212
  ?sse_customer_algorithm: ::String,
213
213
  ?sse_customer_key: ::String,
@@ -273,7 +273,7 @@ module Aws
273
273
  bucket_name: ::String,
274
274
  prefix: ::String,
275
275
  encryption: {
276
- encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse"),
276
+ encryption_type: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
277
277
  kms_key_id: ::String?,
278
278
  kms_context: ::String?
279
279
  }?,
@@ -304,7 +304,7 @@ module Aws
304
304
  value: ::String?
305
305
  },
306
306
  ]?,
307
- storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")?
307
+ storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?
308
308
  }?
309
309
  }?
310
310
  },