aws-sdk-s3 1.203.0 → 1.206.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +1 -1
- data/lib/aws-sdk-s3/bucket_acl.rb +1 -1
- data/lib/aws-sdk-s3/client.rb +316 -257
- data/lib/aws-sdk-s3/client_api.rb +59 -0
- data/lib/aws-sdk-s3/customizations/object.rb +3 -4
- data/lib/aws-sdk-s3/endpoints.rb +26 -0
- data/lib/aws-sdk-s3/file_downloader.rb +19 -2
- data/lib/aws-sdk-s3/object.rb +4 -4
- data/lib/aws-sdk-s3/object_acl.rb +1 -1
- data/lib/aws-sdk-s3/object_summary.rb +4 -4
- data/lib/aws-sdk-s3/transfer_manager.rb +3 -4
- data/lib/aws-sdk-s3/types.rb +206 -98
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +1 -1
- data/sig/client.rbs +37 -11
- data/sig/multipart_upload.rbs +1 -1
- data/sig/object.rbs +5 -5
- data/sig/object_summary.rbs +5 -5
- data/sig/types.rbs +44 -13
- metadata +1 -1
data/lib/aws-sdk-s3/types.rb
CHANGED
|
@@ -10,6 +10,29 @@
|
|
|
10
10
|
module Aws::S3
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
+
# The ABAC status of the general purpose bucket. When ABAC is enabled
|
|
14
|
+
# for the general purpose bucket, you can use tags to manage access to
|
|
15
|
+
# the general purpose buckets as well as for cost tracking purposes.
|
|
16
|
+
# When ABAC is disabled for the general purpose buckets, you can only
|
|
17
|
+
# use tags for cost tracking purposes. For more information, see [Using
|
|
18
|
+
# tags with S3 general purpose buckets][1].
|
|
19
|
+
#
|
|
20
|
+
#
|
|
21
|
+
#
|
|
22
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging.html
|
|
23
|
+
#
|
|
24
|
+
# @!attribute [rw] status
|
|
25
|
+
# The ABAC status of the general purpose bucket.
|
|
26
|
+
# @return [String]
|
|
27
|
+
#
|
|
28
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/AbacStatus AWS API Documentation
|
|
29
|
+
#
|
|
30
|
+
class AbacStatus < Struct.new(
|
|
31
|
+
:status)
|
|
32
|
+
SENSITIVE = []
|
|
33
|
+
include Aws::Structure
|
|
34
|
+
end
|
|
35
|
+
|
|
13
36
|
# Specifies the days since the initiation of an incomplete multipart
|
|
14
37
|
# upload that Amazon S3 will wait before permanently removing all parts
|
|
15
38
|
# of the upload. For more information, see [ Aborting Incomplete
|
|
@@ -355,6 +378,63 @@ module Aws::S3
|
|
|
355
378
|
include Aws::Structure
|
|
356
379
|
end
|
|
357
380
|
|
|
381
|
+
# A bucket-level setting for Amazon S3 general purpose buckets used to
|
|
382
|
+
# prevent the upload of new objects encrypted with the specified
|
|
383
|
+
# server-side encryption type. For example, blocking an encryption type
|
|
384
|
+
# will block `PutObject`, `CopyObject`, `PostObject`, multipart upload,
|
|
385
|
+
# and replication requests to the bucket for objects with the specified
|
|
386
|
+
# encryption type. However, you can continue to read and list any
|
|
387
|
+
# pre-existing objects already encrypted with the specified encryption
|
|
388
|
+
# type. For more information, see [Blocking or unblocking SSE-C for a
|
|
389
|
+
# general purpose bucket][1].
|
|
390
|
+
#
|
|
391
|
+
# This data type is used with the following actions:
|
|
392
|
+
#
|
|
393
|
+
# * [PutBucketEncryption][2]
|
|
394
|
+
#
|
|
395
|
+
# * [GetBucketEncryption][3]
|
|
396
|
+
#
|
|
397
|
+
# * [DeleteBucketEncryption][4]
|
|
398
|
+
#
|
|
399
|
+
# Permissions
|
|
400
|
+
#
|
|
401
|
+
# : You must have the `s3:PutEncryptionConfiguration` permission to
|
|
402
|
+
# block or unblock an encryption type for a bucket.
|
|
403
|
+
#
|
|
404
|
+
# You must have the `s3:GetEncryptionConfiguration` permission to view
|
|
405
|
+
# a bucket's encryption type.
|
|
406
|
+
#
|
|
407
|
+
#
|
|
408
|
+
#
|
|
409
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html
|
|
410
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html
|
|
411
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html
|
|
412
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketEncryption.html
|
|
413
|
+
#
|
|
414
|
+
# @!attribute [rw] encryption_type
|
|
415
|
+
# The object encryption type that you want to block or unblock for an
|
|
416
|
+
# Amazon S3 general purpose bucket.
|
|
417
|
+
#
|
|
418
|
+
# <note markdown="1"> Currently, this parameter only supports blocking or unblocking
|
|
419
|
+
# server side encryption with customer-provided keys (SSE-C). For more
|
|
420
|
+
# information about SSE-C, see [Using server-side encryption with
|
|
421
|
+
# customer-provided keys (SSE-C)][1].
|
|
422
|
+
#
|
|
423
|
+
# </note>
|
|
424
|
+
#
|
|
425
|
+
#
|
|
426
|
+
#
|
|
427
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html
|
|
428
|
+
# @return [Array<String>]
|
|
429
|
+
#
|
|
430
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/BlockedEncryptionTypes AWS API Documentation
|
|
431
|
+
#
|
|
432
|
+
class BlockedEncryptionTypes < Struct.new(
|
|
433
|
+
:encryption_type)
|
|
434
|
+
SENSITIVE = []
|
|
435
|
+
include Aws::Structure
|
|
436
|
+
end
|
|
437
|
+
|
|
358
438
|
# In terms of implementation, a Bucket is a resource.
|
|
359
439
|
#
|
|
360
440
|
# @!attribute [rw] name
|
|
@@ -2740,17 +2820,18 @@ module Aws::S3
|
|
|
2740
2820
|
# creating. Tags are key-value pairs of metadata used to categorize
|
|
2741
2821
|
# and organize your buckets, track costs, and control access.
|
|
2742
2822
|
#
|
|
2743
|
-
#
|
|
2744
|
-
#
|
|
2823
|
+
# You must have the `s3:TagResource` permission to create a general
|
|
2824
|
+
# purpose bucket with tags or the `s3express:TagResource` permission
|
|
2825
|
+
# to create a directory bucket with tags.
|
|
2745
2826
|
#
|
|
2746
|
-
#
|
|
2747
|
-
#
|
|
2748
|
-
#
|
|
2749
|
-
#
|
|
2827
|
+
# When creating buckets with tags, note that tag-based conditions
|
|
2828
|
+
# using `aws:ResourceTag` and `s3:BucketTag` condition keys are
|
|
2829
|
+
# applicable only after ABAC is enabled on the bucket. To learn more,
|
|
2830
|
+
# see [Enabling ABAC in general purpose buckets][1].
|
|
2750
2831
|
#
|
|
2751
2832
|
#
|
|
2752
2833
|
#
|
|
2753
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/
|
|
2834
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging-enable-abac.html
|
|
2754
2835
|
# @return [Array<Types::Tag>]
|
|
2755
2836
|
#
|
|
2756
2837
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateBucketConfiguration AWS API Documentation
|
|
@@ -6365,6 +6446,36 @@ module Aws::S3
|
|
|
6365
6446
|
include Aws::Structure
|
|
6366
6447
|
end
|
|
6367
6448
|
|
|
6449
|
+
# @!attribute [rw] abac_status
|
|
6450
|
+
# The ABAC status of the general purpose bucket.
|
|
6451
|
+
# @return [Types::AbacStatus]
|
|
6452
|
+
#
|
|
6453
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketAbacOutput AWS API Documentation
|
|
6454
|
+
#
|
|
6455
|
+
class GetBucketAbacOutput < Struct.new(
|
|
6456
|
+
:abac_status)
|
|
6457
|
+
SENSITIVE = []
|
|
6458
|
+
include Aws::Structure
|
|
6459
|
+
end
|
|
6460
|
+
|
|
6461
|
+
# @!attribute [rw] bucket
|
|
6462
|
+
# The name of the general purpose bucket.
|
|
6463
|
+
# @return [String]
|
|
6464
|
+
#
|
|
6465
|
+
# @!attribute [rw] expected_bucket_owner
|
|
6466
|
+
# The Amazon Web Services account ID of the general purpose bucket's
|
|
6467
|
+
# owner.
|
|
6468
|
+
# @return [String]
|
|
6469
|
+
#
|
|
6470
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketAbacRequest AWS API Documentation
|
|
6471
|
+
#
|
|
6472
|
+
class GetBucketAbacRequest < Struct.new(
|
|
6473
|
+
:bucket,
|
|
6474
|
+
:expected_bucket_owner)
|
|
6475
|
+
SENSITIVE = []
|
|
6476
|
+
include Aws::Structure
|
|
6477
|
+
end
|
|
6478
|
+
|
|
6368
6479
|
# @!attribute [rw] status
|
|
6369
6480
|
# The accelerate configuration of the bucket.
|
|
6370
6481
|
# @return [String]
|
|
@@ -6434,7 +6545,7 @@ module Aws::S3
|
|
|
6434
6545
|
end
|
|
6435
6546
|
|
|
6436
6547
|
# @!attribute [rw] owner
|
|
6437
|
-
# Container for the bucket owner's
|
|
6548
|
+
# Container for the bucket owner's ID.
|
|
6438
6549
|
# @return [Types::Owner]
|
|
6439
6550
|
#
|
|
6440
6551
|
# @!attribute [rw] grants
|
|
@@ -7409,7 +7520,7 @@ module Aws::S3
|
|
|
7409
7520
|
end
|
|
7410
7521
|
|
|
7411
7522
|
# @!attribute [rw] owner
|
|
7412
|
-
# Container for the bucket owner's
|
|
7523
|
+
# Container for the bucket owner's ID.
|
|
7413
7524
|
# @return [Types::Owner]
|
|
7414
7525
|
#
|
|
7415
7526
|
# @!attribute [rw] grants
|
|
@@ -9005,56 +9116,12 @@ module Aws::S3
|
|
|
9005
9116
|
include Aws::Structure
|
|
9006
9117
|
end
|
|
9007
9118
|
|
|
9008
|
-
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
9009
|
-
# stop returning `DisplayName`. Update your applications to use
|
|
9010
|
-
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
9011
|
-
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
9012
|
-
# resource naming) as a direct replacement of `DisplayName`.
|
|
9013
|
-
#
|
|
9014
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
9015
|
-
# East
|
|
9016
|
-
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
9017
|
-
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
9018
|
-
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
9019
|
-
# America (São Paulo) Region.
|
|
9020
|
-
#
|
|
9021
9119
|
# Container for the person being granted permissions.
|
|
9022
9120
|
#
|
|
9023
9121
|
# @!attribute [rw] display_name
|
|
9024
|
-
# Screen name of the grantee.
|
|
9025
9122
|
# @return [String]
|
|
9026
9123
|
#
|
|
9027
9124
|
# @!attribute [rw] email_address
|
|
9028
|
-
# Email address of the grantee.
|
|
9029
|
-
#
|
|
9030
|
-
# <note markdown="1"> Using email addresses to specify a grantee is only supported in the
|
|
9031
|
-
# following Amazon Web Services Regions:
|
|
9032
|
-
#
|
|
9033
|
-
# * US East (N. Virginia)
|
|
9034
|
-
#
|
|
9035
|
-
# * US West (N. California)
|
|
9036
|
-
#
|
|
9037
|
-
# * US West (Oregon)
|
|
9038
|
-
#
|
|
9039
|
-
# * Asia Pacific (Singapore)
|
|
9040
|
-
#
|
|
9041
|
-
# * Asia Pacific (Sydney)
|
|
9042
|
-
#
|
|
9043
|
-
# * Asia Pacific (Tokyo)
|
|
9044
|
-
#
|
|
9045
|
-
# * Europe (Ireland)
|
|
9046
|
-
#
|
|
9047
|
-
# * South America (São Paulo)
|
|
9048
|
-
#
|
|
9049
|
-
# For a list of all the Amazon S3 supported Regions and endpoints, see
|
|
9050
|
-
# [Regions and Endpoints][1] in the Amazon Web Services General
|
|
9051
|
-
# Reference.
|
|
9052
|
-
#
|
|
9053
|
-
# </note>
|
|
9054
|
-
#
|
|
9055
|
-
#
|
|
9056
|
-
#
|
|
9057
|
-
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
|
|
9058
9125
|
# @return [String]
|
|
9059
9126
|
#
|
|
9060
9127
|
# @!attribute [rw] id
|
|
@@ -10027,8 +10094,6 @@ module Aws::S3
|
|
|
10027
10094
|
# @return [String]
|
|
10028
10095
|
#
|
|
10029
10096
|
# @!attribute [rw] display_name
|
|
10030
|
-
# Name of the Principal.
|
|
10031
|
-
#
|
|
10032
10097
|
# <note markdown="1"> This functionality is not supported for directory buckets.
|
|
10033
10098
|
#
|
|
10034
10099
|
# </note>
|
|
@@ -12550,14 +12615,13 @@ module Aws::S3
|
|
|
12550
12615
|
# Container element that identifies who initiated the multipart
|
|
12551
12616
|
# upload. If the initiator is an Amazon Web Services account, this
|
|
12552
12617
|
# element provides the same information as the `Owner` element. If the
|
|
12553
|
-
# initiator is an IAM User, this element provides the user ARN
|
|
12554
|
-
# display name.
|
|
12618
|
+
# initiator is an IAM User, this element provides the user ARN.
|
|
12555
12619
|
# @return [Types::Initiator]
|
|
12556
12620
|
#
|
|
12557
12621
|
# @!attribute [rw] owner
|
|
12558
12622
|
# Container element that identifies the object owner, after the object
|
|
12559
12623
|
# is created. If multipart upload is initiated by an IAM user, this
|
|
12560
|
-
# element provides the parent account ID
|
|
12624
|
+
# element provides the parent account ID.
|
|
12561
12625
|
#
|
|
12562
12626
|
# <note markdown="1"> **Directory buckets** - The bucket owner is returned as the object
|
|
12563
12627
|
# owner for all the parts.
|
|
@@ -13873,44 +13937,9 @@ module Aws::S3
|
|
|
13873
13937
|
include Aws::Structure
|
|
13874
13938
|
end
|
|
13875
13939
|
|
|
13876
|
-
# End of support notice: Beginning November 21, 2025, Amazon S3 will
|
|
13877
|
-
# stop returning `DisplayName`. Update your applications to use
|
|
13878
|
-
# canonical IDs (unique identifier for Amazon Web Services accounts),
|
|
13879
|
-
# Amazon Web Services account ID (12 digit identifier) or IAM ARNs (full
|
|
13880
|
-
# resource naming) as a direct replacement of `DisplayName`.
|
|
13881
|
-
#
|
|
13882
|
-
# This change affects the following Amazon Web Services Regions: US
|
|
13883
|
-
# East
|
|
13884
|
-
# (N. Virginia) Region, US West (N. California) Region, US West (Oregon)
|
|
13885
|
-
# Region, Asia Pacific (Singapore) Region, Asia Pacific (Sydney) Region,
|
|
13886
|
-
# Asia Pacific (Tokyo) Region, Europe (Ireland) Region, and South
|
|
13887
|
-
# America (São Paulo) Region.
|
|
13888
|
-
#
|
|
13889
13940
|
# Container for the owner's display name and ID.
|
|
13890
13941
|
#
|
|
13891
13942
|
# @!attribute [rw] display_name
|
|
13892
|
-
# Container for the display name of the owner. This value is only
|
|
13893
|
-
# supported in the following Amazon Web Services Regions:
|
|
13894
|
-
#
|
|
13895
|
-
# * US East (N. Virginia)
|
|
13896
|
-
#
|
|
13897
|
-
# * US West (N. California)
|
|
13898
|
-
#
|
|
13899
|
-
# * US West (Oregon)
|
|
13900
|
-
#
|
|
13901
|
-
# * Asia Pacific (Singapore)
|
|
13902
|
-
#
|
|
13903
|
-
# * Asia Pacific (Sydney)
|
|
13904
|
-
#
|
|
13905
|
-
# * Asia Pacific (Tokyo)
|
|
13906
|
-
#
|
|
13907
|
-
# * Europe (Ireland)
|
|
13908
|
-
#
|
|
13909
|
-
# * South America (São Paulo)
|
|
13910
|
-
#
|
|
13911
|
-
# <note markdown="1"> This functionality is not supported for directory buckets.
|
|
13912
|
-
#
|
|
13913
|
-
# </note>
|
|
13914
13943
|
# @return [String]
|
|
13915
13944
|
#
|
|
13916
13945
|
# @!attribute [rw] id
|
|
@@ -14173,9 +14202,11 @@ module Aws::S3
|
|
|
14173
14202
|
|
|
14174
14203
|
# The PublicAccessBlock configuration that you want to apply to this
|
|
14175
14204
|
# Amazon S3 bucket. You can enable the configuration options in any
|
|
14176
|
-
# combination.
|
|
14177
|
-
#
|
|
14178
|
-
#
|
|
14205
|
+
# combination. Bucket-level settings work alongside account-level
|
|
14206
|
+
# settings (which may inherit from organization-level policies). For
|
|
14207
|
+
# more information about when Amazon S3 considers a bucket or object
|
|
14208
|
+
# public, see [The Meaning of "Public"][1] in the *Amazon S3 User
|
|
14209
|
+
# Guide*.
|
|
14179
14210
|
#
|
|
14180
14211
|
#
|
|
14181
14212
|
#
|
|
@@ -14239,6 +14270,58 @@ module Aws::S3
|
|
|
14239
14270
|
include Aws::Structure
|
|
14240
14271
|
end
|
|
14241
14272
|
|
|
14273
|
+
# @!attribute [rw] bucket
|
|
14274
|
+
# The name of the general purpose bucket.
|
|
14275
|
+
# @return [String]
|
|
14276
|
+
#
|
|
14277
|
+
# @!attribute [rw] content_md5
|
|
14278
|
+
# The MD5 hash of the `PutBucketAbac` request body.
|
|
14279
|
+
#
|
|
14280
|
+
# For requests made using the Amazon Web Services Command Line
|
|
14281
|
+
# Interface (CLI) or Amazon Web Services SDKs, this field is
|
|
14282
|
+
# calculated automatically.
|
|
14283
|
+
# @return [String]
|
|
14284
|
+
#
|
|
14285
|
+
# @!attribute [rw] checksum_algorithm
|
|
14286
|
+
# Indicates the algorithm that you want Amazon S3 to use to create the
|
|
14287
|
+
# checksum. For more information, see [ Checking object integrity][1]
|
|
14288
|
+
# in the *Amazon S3 User Guide*.
|
|
14289
|
+
#
|
|
14290
|
+
#
|
|
14291
|
+
#
|
|
14292
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
|
14293
|
+
# @return [String]
|
|
14294
|
+
#
|
|
14295
|
+
# @!attribute [rw] expected_bucket_owner
|
|
14296
|
+
# The Amazon Web Services account ID of the general purpose bucket's
|
|
14297
|
+
# owner.
|
|
14298
|
+
# @return [String]
|
|
14299
|
+
#
|
|
14300
|
+
# @!attribute [rw] abac_status
|
|
14301
|
+
# The ABAC status of the general purpose bucket. When ABAC is enabled
|
|
14302
|
+
# for the general purpose bucket, you can use tags to manage access to
|
|
14303
|
+
# the general purpose buckets as well as for cost tracking purposes.
|
|
14304
|
+
# When ABAC is disabled for the general purpose buckets, you can only
|
|
14305
|
+
# use tags for cost tracking purposes. For more information, see
|
|
14306
|
+
# [Using tags with S3 general purpose buckets][1].
|
|
14307
|
+
#
|
|
14308
|
+
#
|
|
14309
|
+
#
|
|
14310
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging.html
|
|
14311
|
+
# @return [Types::AbacStatus]
|
|
14312
|
+
#
|
|
14313
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/PutBucketAbacRequest AWS API Documentation
|
|
14314
|
+
#
|
|
14315
|
+
class PutBucketAbacRequest < Struct.new(
|
|
14316
|
+
:bucket,
|
|
14317
|
+
:content_md5,
|
|
14318
|
+
:checksum_algorithm,
|
|
14319
|
+
:expected_bucket_owner,
|
|
14320
|
+
:abac_status)
|
|
14321
|
+
SENSITIVE = []
|
|
14322
|
+
include Aws::Structure
|
|
14323
|
+
end
|
|
14324
|
+
|
|
14242
14325
|
# @!attribute [rw] bucket
|
|
14243
14326
|
# The name of the bucket for which the accelerate configuration is
|
|
14244
14327
|
# set.
|
|
@@ -17253,7 +17336,7 @@ module Aws::S3
|
|
|
17253
17336
|
# record frame. To ensure continuous streaming of data, S3 Select
|
|
17254
17337
|
# might split the same record across multiple record frames instead of
|
|
17255
17338
|
# aggregating the results in memory. Some S3 clients (for example, the
|
|
17256
|
-
#
|
|
17339
|
+
# SDK for Java) handle this behavior by creating a `ByteStream` out of
|
|
17257
17340
|
# the response by default. Other clients might not handle this
|
|
17258
17341
|
# behavior by default. In those cases, you must aggregate the results
|
|
17259
17342
|
# on the client side and parse the response.
|
|
@@ -18745,11 +18828,36 @@ module Aws::S3
|
|
|
18745
18828
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/create-import-job
|
|
18746
18829
|
# @return [Boolean]
|
|
18747
18830
|
#
|
|
18831
|
+
# @!attribute [rw] blocked_encryption_types
|
|
18832
|
+
# A bucket-level setting for Amazon S3 general purpose buckets used to
|
|
18833
|
+
# prevent the upload of new objects encrypted with the specified
|
|
18834
|
+
# server-side encryption type. For example, blocking an encryption
|
|
18835
|
+
# type will block `PutObject`, `CopyObject`, `PostObject`, multipart
|
|
18836
|
+
# upload, and replication requests to the bucket for objects with the
|
|
18837
|
+
# specified encryption type. However, you can continue to read and
|
|
18838
|
+
# list any pre-existing objects already encrypted with the specified
|
|
18839
|
+
# encryption type. For more information, see [Blocking or unblocking
|
|
18840
|
+
# SSE-C for a general purpose bucket][1].
|
|
18841
|
+
#
|
|
18842
|
+
# <note markdown="1"> Currently, this parameter only supports blocking or unblocking
|
|
18843
|
+
# server-side encryption with customer-provided keys (SSE-C). For more
|
|
18844
|
+
# information about SSE-C, see [Using server-side encryption with
|
|
18845
|
+
# customer-provided keys (SSE-C)][2].
|
|
18846
|
+
#
|
|
18847
|
+
# </note>
|
|
18848
|
+
#
|
|
18849
|
+
#
|
|
18850
|
+
#
|
|
18851
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html
|
|
18852
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html
|
|
18853
|
+
# @return [Types::BlockedEncryptionTypes]
|
|
18854
|
+
#
|
|
18748
18855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ServerSideEncryptionRule AWS API Documentation
|
|
18749
18856
|
#
|
|
18750
18857
|
class ServerSideEncryptionRule < Struct.new(
|
|
18751
18858
|
:apply_server_side_encryption_by_default,
|
|
18752
|
-
:bucket_key_enabled
|
|
18859
|
+
:bucket_key_enabled,
|
|
18860
|
+
:blocked_encryption_types)
|
|
18753
18861
|
SENSITIVE = []
|
|
18754
18862
|
include Aws::Structure
|
|
18755
18863
|
end
|
data/lib/aws-sdk-s3.rb
CHANGED
data/sig/bucket.rbs
CHANGED
|
@@ -133,7 +133,7 @@ module Aws
|
|
|
133
133
|
?write_offset_bytes: ::Integer,
|
|
134
134
|
?metadata: Hash[::String, ::String],
|
|
135
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"),
|
|
136
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
137
137
|
?website_redirect_location: ::String,
|
|
138
138
|
?sse_customer_algorithm: ::String,
|
|
139
139
|
?sse_customer_key: ::String,
|
data/sig/client.rbs
CHANGED
|
@@ -203,7 +203,7 @@ module Aws
|
|
|
203
203
|
?metadata_directive: ("COPY" | "REPLACE"),
|
|
204
204
|
?tagging_directive: ("COPY" | "REPLACE"),
|
|
205
205
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
206
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
206
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
207
207
|
?website_redirect_location: ::String,
|
|
208
208
|
?sse_customer_algorithm: ::String,
|
|
209
209
|
?sse_customer_key: ::String,
|
|
@@ -337,7 +337,7 @@ module Aws
|
|
|
337
337
|
key: ::String,
|
|
338
338
|
?metadata: Hash[::String, ::String],
|
|
339
339
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
340
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
340
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
341
341
|
?website_redirect_location: ::String,
|
|
342
342
|
?sse_customer_algorithm: ::String,
|
|
343
343
|
?sse_customer_key: ::String,
|
|
@@ -554,6 +554,17 @@ module Aws
|
|
|
554
554
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
555
555
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
556
556
|
|
|
557
|
+
interface _GetBucketAbacResponseSuccess
|
|
558
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketAbacOutput]
|
|
559
|
+
def abac_status: () -> Types::AbacStatus
|
|
560
|
+
end
|
|
561
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_abac-instance_method
|
|
562
|
+
def get_bucket_abac: (
|
|
563
|
+
bucket: ::String,
|
|
564
|
+
?expected_bucket_owner: ::String
|
|
565
|
+
) -> _GetBucketAbacResponseSuccess
|
|
566
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBucketAbacResponseSuccess
|
|
567
|
+
|
|
557
568
|
interface _GetBucketAccelerateConfigurationResponseSuccess
|
|
558
569
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketAccelerateConfigurationOutput]
|
|
559
570
|
def status: () -> ("Enabled" | "Suspended")
|
|
@@ -868,7 +879,7 @@ module Aws
|
|
|
868
879
|
def sse_customer_key_md5: () -> ::String
|
|
869
880
|
def ssekms_key_id: () -> ::String
|
|
870
881
|
def bucket_key_enabled: () -> bool
|
|
871
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
882
|
+
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
872
883
|
def request_charged: () -> ("requester")
|
|
873
884
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
874
885
|
def parts_count: () -> ::Integer
|
|
@@ -928,7 +939,7 @@ module Aws
|
|
|
928
939
|
def etag: () -> ::String
|
|
929
940
|
def checksum: () -> Types::Checksum
|
|
930
941
|
def object_parts: () -> Types::GetObjectAttributesParts
|
|
931
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
942
|
+
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
932
943
|
def object_size: () -> ::Integer
|
|
933
944
|
end
|
|
934
945
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_object_attributes-instance_method
|
|
@@ -1074,7 +1085,7 @@ module Aws
|
|
|
1074
1085
|
def sse_customer_key_md5: () -> ::String
|
|
1075
1086
|
def ssekms_key_id: () -> ::String
|
|
1076
1087
|
def bucket_key_enabled: () -> bool
|
|
1077
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
1088
|
+
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1078
1089
|
def request_charged: () -> ("requester")
|
|
1079
1090
|
def replication_status: () -> ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
|
1080
1091
|
def parts_count: () -> ::Integer
|
|
@@ -1333,7 +1344,7 @@ module Aws
|
|
|
1333
1344
|
def parts: () -> ::Array[Types::Part]
|
|
1334
1345
|
def initiator: () -> Types::Initiator
|
|
1335
1346
|
def owner: () -> Types::Owner
|
|
1336
|
-
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")
|
|
1347
|
+
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
1337
1348
|
def request_charged: () -> ("requester")
|
|
1338
1349
|
def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
|
1339
1350
|
def checksum_type: () -> ("COMPOSITE" | "FULL_OBJECT")
|
|
@@ -1353,6 +1364,18 @@ module Aws
|
|
|
1353
1364
|
) -> _ListPartsResponseSuccess
|
|
1354
1365
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPartsResponseSuccess
|
|
1355
1366
|
|
|
1367
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_abac-instance_method
|
|
1368
|
+
def put_bucket_abac: (
|
|
1369
|
+
bucket: ::String,
|
|
1370
|
+
?content_md5: ::String,
|
|
1371
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
|
1372
|
+
?expected_bucket_owner: ::String,
|
|
1373
|
+
abac_status: {
|
|
1374
|
+
status: ("Enabled" | "Disabled")?
|
|
1375
|
+
}
|
|
1376
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1377
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1378
|
+
|
|
1356
1379
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_accelerate_configuration-instance_method
|
|
1357
1380
|
def put_bucket_accelerate_configuration: (
|
|
1358
1381
|
bucket: ::String,
|
|
@@ -1470,7 +1493,10 @@ module Aws
|
|
|
1470
1493
|
sse_algorithm: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
1471
1494
|
kms_master_key_id: ::String?
|
|
1472
1495
|
}?,
|
|
1473
|
-
bucket_key_enabled: bool
|
|
1496
|
+
bucket_key_enabled: bool?,
|
|
1497
|
+
blocked_encryption_types: {
|
|
1498
|
+
encryption_type: Array[("NONE" | "SSE-C")]?
|
|
1499
|
+
}?
|
|
1474
1500
|
},
|
|
1475
1501
|
]
|
|
1476
1502
|
},
|
|
@@ -1881,7 +1907,7 @@ module Aws
|
|
|
1881
1907
|
destination: {
|
|
1882
1908
|
bucket: ::String,
|
|
1883
1909
|
account: ::String?,
|
|
1884
|
-
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?,
|
|
1910
|
+
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")?,
|
|
1885
1911
|
access_control_translation: {
|
|
1886
1912
|
owner: ("Destination")
|
|
1887
1913
|
}?,
|
|
@@ -2040,7 +2066,7 @@ module Aws
|
|
|
2040
2066
|
?write_offset_bytes: ::Integer,
|
|
2041
2067
|
?metadata: Hash[::String, ::String],
|
|
2042
2068
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
2043
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
2069
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
2044
2070
|
?website_redirect_location: ::String,
|
|
2045
2071
|
?sse_customer_algorithm: ::String,
|
|
2046
2072
|
?sse_customer_key: ::String,
|
|
@@ -2308,7 +2334,7 @@ module Aws
|
|
|
2308
2334
|
value: ::String?
|
|
2309
2335
|
},
|
|
2310
2336
|
]?,
|
|
2311
|
-
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?
|
|
2337
|
+
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")?
|
|
2312
2338
|
}?
|
|
2313
2339
|
}?
|
|
2314
2340
|
},
|
|
@@ -2514,7 +2540,7 @@ module Aws
|
|
|
2514
2540
|
?sse_customer_algorithm: ::String,
|
|
2515
2541
|
?ssekms_key_id: ::String,
|
|
2516
2542
|
?sse_customer_key_md5: ::String,
|
|
2517
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
2543
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
2518
2544
|
?tag_count: ::Integer,
|
|
2519
2545
|
?version_id: ::String,
|
|
2520
2546
|
?bucket_key_enabled: bool
|
data/sig/multipart_upload.rbs
CHANGED
|
@@ -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" | "FSX_OPENZFS")
|
|
36
|
+
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
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
|
@@ -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" | "FSX_OPENZFS")
|
|
117
|
+
def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")
|
|
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")
|
|
@@ -186,7 +186,7 @@ module Aws
|
|
|
186
186
|
?metadata_directive: ("COPY" | "REPLACE"),
|
|
187
187
|
?tagging_directive: ("COPY" | "REPLACE"),
|
|
188
188
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
189
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
189
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
190
190
|
?website_redirect_location: ::String,
|
|
191
191
|
?sse_customer_algorithm: ::String,
|
|
192
192
|
?sse_customer_key: ::String,
|
|
@@ -259,7 +259,7 @@ module Aws
|
|
|
259
259
|
?grant_write_acp: ::String,
|
|
260
260
|
?metadata: Hash[::String, ::String],
|
|
261
261
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
262
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
262
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
263
263
|
?website_redirect_location: ::String,
|
|
264
264
|
?sse_customer_algorithm: ::String,
|
|
265
265
|
?sse_customer_key: ::String,
|
|
@@ -305,7 +305,7 @@ module Aws
|
|
|
305
305
|
?write_offset_bytes: ::Integer,
|
|
306
306
|
?metadata: Hash[::String, ::String],
|
|
307
307
|
?server_side_encryption: ("AES256" | "aws:fsx" | "aws:kms" | "aws:kms:dsse"),
|
|
308
|
-
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS"),
|
|
308
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP"),
|
|
309
309
|
?website_redirect_location: ::String,
|
|
310
310
|
?sse_customer_algorithm: ::String,
|
|
311
311
|
?sse_customer_key: ::String,
|
|
@@ -402,7 +402,7 @@ module Aws
|
|
|
402
402
|
value: ::String?
|
|
403
403
|
},
|
|
404
404
|
]?,
|
|
405
|
-
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS")?
|
|
405
|
+
storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE" | "FSX_OPENZFS" | "FSX_ONTAP")?
|
|
406
406
|
}?
|
|
407
407
|
}?
|
|
408
408
|
},
|