aws-sdk-s3 1.191.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +32 -0
- data/lib/aws-sdk-s3/client.rb +604 -38
- data/lib/aws-sdk-s3/client_api.rb +187 -0
- data/lib/aws-sdk-s3/endpoints.rb +70 -0
- data/lib/aws-sdk-s3/resource.rb +6 -0
- data/lib/aws-sdk-s3/types.rb +782 -27
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +10 -1
- data/sig/client.rbs +87 -1
- data/sig/resource.rbs +8 -1
- data/sig/types.rbs +126 -0
- metadata +3 -3
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -372,12 +372,28 @@ module Aws::S3
|
|
372
372
|
# parameter, it is included in the response.
|
373
373
|
# @return [String]
|
374
374
|
#
|
375
|
+
# @!attribute [rw] bucket_arn
|
376
|
+
# The Amazon Resource Name (ARN) of the S3 bucket. ARNs uniquely
|
377
|
+
# identify Amazon Web Services resources across all of Amazon Web
|
378
|
+
# Services.
|
379
|
+
#
|
380
|
+
# <note markdown="1"> This parameter is only supported for S3 directory buckets. For more
|
381
|
+
# information, see [Using tags with directory buckets][1].
|
382
|
+
#
|
383
|
+
# </note>
|
384
|
+
#
|
385
|
+
#
|
386
|
+
#
|
387
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
|
388
|
+
# @return [String]
|
389
|
+
#
|
375
390
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/Bucket AWS API Documentation
|
376
391
|
#
|
377
392
|
class Bucket < Struct.new(
|
378
393
|
:name,
|
379
394
|
:creation_date,
|
380
|
-
:bucket_region
|
395
|
+
:bucket_region,
|
396
|
+
:bucket_arn)
|
381
397
|
SENSITIVE = []
|
382
398
|
include Aws::Structure
|
383
399
|
end
|
@@ -2681,19 +2697,69 @@ module Aws::S3
|
|
2681
2697
|
# </note>
|
2682
2698
|
# @return [Types::BucketInfo]
|
2683
2699
|
#
|
2700
|
+
# @!attribute [rw] tags
|
2701
|
+
# An array of tags that you can apply to the bucket that you're
|
2702
|
+
# creating. Tags are key-value pairs of metadata used to categorize
|
2703
|
+
# and organize your buckets, track costs, and control access.
|
2704
|
+
#
|
2705
|
+
# <note markdown="1"> This parameter is only supported for S3 directory buckets. For more
|
2706
|
+
# information, see [Using tags with directory buckets][1].
|
2707
|
+
#
|
2708
|
+
# </note>
|
2709
|
+
#
|
2710
|
+
#
|
2711
|
+
#
|
2712
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
|
2713
|
+
# @return [Array<Types::Tag>]
|
2714
|
+
#
|
2684
2715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateBucketConfiguration AWS API Documentation
|
2685
2716
|
#
|
2686
2717
|
class CreateBucketConfiguration < Struct.new(
|
2687
2718
|
:location_constraint,
|
2688
2719
|
:location,
|
2689
|
-
:bucket
|
2720
|
+
:bucket,
|
2721
|
+
:tags)
|
2722
|
+
SENSITIVE = []
|
2723
|
+
include Aws::Structure
|
2724
|
+
end
|
2725
|
+
|
2726
|
+
# @!attribute [rw] bucket
|
2727
|
+
# The general purpose bucket that you want to create the metadata
|
2728
|
+
# configuration for.
|
2729
|
+
# @return [String]
|
2730
|
+
#
|
2731
|
+
# @!attribute [rw] content_md5
|
2732
|
+
# The `Content-MD5` header for the metadata configuration.
|
2733
|
+
# @return [String]
|
2734
|
+
#
|
2735
|
+
# @!attribute [rw] checksum_algorithm
|
2736
|
+
# The checksum algorithm to use with your metadata configuration.
|
2737
|
+
# @return [String]
|
2738
|
+
#
|
2739
|
+
# @!attribute [rw] metadata_configuration
|
2740
|
+
# The contents of your metadata configuration.
|
2741
|
+
# @return [Types::MetadataConfiguration]
|
2742
|
+
#
|
2743
|
+
# @!attribute [rw] expected_bucket_owner
|
2744
|
+
# The expected owner of the general purpose bucket that corresponds to
|
2745
|
+
# your metadata configuration.
|
2746
|
+
# @return [String]
|
2747
|
+
#
|
2748
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateBucketMetadataConfigurationRequest AWS API Documentation
|
2749
|
+
#
|
2750
|
+
class CreateBucketMetadataConfigurationRequest < Struct.new(
|
2751
|
+
:bucket,
|
2752
|
+
:content_md5,
|
2753
|
+
:checksum_algorithm,
|
2754
|
+
:metadata_configuration,
|
2755
|
+
:expected_bucket_owner)
|
2690
2756
|
SENSITIVE = []
|
2691
2757
|
include Aws::Structure
|
2692
2758
|
end
|
2693
2759
|
|
2694
2760
|
# @!attribute [rw] bucket
|
2695
2761
|
# The general purpose bucket that you want to create the metadata
|
2696
|
-
# table configuration
|
2762
|
+
# table configuration for.
|
2697
2763
|
# @return [String]
|
2698
2764
|
#
|
2699
2765
|
# @!attribute [rw] content_md5
|
@@ -2710,8 +2776,8 @@ module Aws::S3
|
|
2710
2776
|
# @return [Types::MetadataTableConfiguration]
|
2711
2777
|
#
|
2712
2778
|
# @!attribute [rw] expected_bucket_owner
|
2713
|
-
# The expected owner of the general purpose bucket that
|
2714
|
-
# metadata table configuration.
|
2779
|
+
# The expected owner of the general purpose bucket that corresponds to
|
2780
|
+
# your metadata table configuration.
|
2715
2781
|
# @return [String]
|
2716
2782
|
#
|
2717
2783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateBucketMetadataTableConfigurationRequest AWS API Documentation
|
@@ -2730,10 +2796,26 @@ module Aws::S3
|
|
2730
2796
|
# A forward slash followed by the name of the bucket.
|
2731
2797
|
# @return [String]
|
2732
2798
|
#
|
2799
|
+
# @!attribute [rw] bucket_arn
|
2800
|
+
# The Amazon Resource Name (ARN) of the S3 bucket. ARNs uniquely
|
2801
|
+
# identify Amazon Web Services resources across all of Amazon Web
|
2802
|
+
# Services.
|
2803
|
+
#
|
2804
|
+
# <note markdown="1"> This parameter is only supported for S3 directory buckets. For more
|
2805
|
+
# information, see [Using tags with directory buckets][1].
|
2806
|
+
#
|
2807
|
+
# </note>
|
2808
|
+
#
|
2809
|
+
#
|
2810
|
+
#
|
2811
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
|
2812
|
+
# @return [String]
|
2813
|
+
#
|
2733
2814
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CreateBucketOutput AWS API Documentation
|
2734
2815
|
#
|
2735
2816
|
class CreateBucketOutput < Struct.new(
|
2736
|
-
:location
|
2817
|
+
:location,
|
2818
|
+
:bucket_arn)
|
2737
2819
|
SENSITIVE = []
|
2738
2820
|
include Aws::Structure
|
2739
2821
|
end
|
@@ -4116,6 +4198,25 @@ module Aws::S3
|
|
4116
4198
|
include Aws::Structure
|
4117
4199
|
end
|
4118
4200
|
|
4201
|
+
# @!attribute [rw] bucket
|
4202
|
+
# The general purpose bucket that you want to remove the metadata
|
4203
|
+
# configuration from.
|
4204
|
+
# @return [String]
|
4205
|
+
#
|
4206
|
+
# @!attribute [rw] expected_bucket_owner
|
4207
|
+
# The expected bucket owner of the general purpose bucket that you
|
4208
|
+
# want to remove the metadata table configuration from.
|
4209
|
+
# @return [String]
|
4210
|
+
#
|
4211
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/DeleteBucketMetadataConfigurationRequest AWS API Documentation
|
4212
|
+
#
|
4213
|
+
class DeleteBucketMetadataConfigurationRequest < Struct.new(
|
4214
|
+
:bucket,
|
4215
|
+
:expected_bucket_owner)
|
4216
|
+
SENSITIVE = []
|
4217
|
+
include Aws::Structure
|
4218
|
+
end
|
4219
|
+
|
4119
4220
|
# @!attribute [rw] bucket
|
4120
4221
|
# The general purpose bucket that you want to remove the metadata
|
4121
4222
|
# table configuration from.
|
@@ -4994,6 +5095,8 @@ module Aws::S3
|
|
4994
5095
|
# For valid values, see the `StorageClass` element of the [PUT Bucket
|
4995
5096
|
# replication][1] action in the *Amazon S3 API Reference*.
|
4996
5097
|
#
|
5098
|
+
# `FSX_OPENZFS` is not an accepted value when replicating objects.
|
5099
|
+
#
|
4997
5100
|
#
|
4998
5101
|
#
|
4999
5102
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTreplication.html
|
@@ -5040,6 +5143,37 @@ module Aws::S3
|
|
5040
5143
|
include Aws::Structure
|
5041
5144
|
end
|
5042
5145
|
|
5146
|
+
# The destination information for the S3 Metadata configuration.
|
5147
|
+
#
|
5148
|
+
# @!attribute [rw] table_bucket_type
|
5149
|
+
# The type of the table bucket where the metadata configuration is
|
5150
|
+
# stored. The `aws` value indicates an Amazon Web Services managed
|
5151
|
+
# table bucket, and the `customer` value indicates a customer-managed
|
5152
|
+
# table bucket. V2 metadata configurations are stored in Amazon Web
|
5153
|
+
# Services managed table buckets, and V1 metadata configurations are
|
5154
|
+
# stored in customer-managed table buckets.
|
5155
|
+
# @return [String]
|
5156
|
+
#
|
5157
|
+
# @!attribute [rw] table_bucket_arn
|
5158
|
+
# The Amazon Resource Name (ARN) of the table bucket where the
|
5159
|
+
# metadata configuration is stored.
|
5160
|
+
# @return [String]
|
5161
|
+
#
|
5162
|
+
# @!attribute [rw] table_namespace
|
5163
|
+
# The namespace in the table bucket where the metadata tables for a
|
5164
|
+
# metadata configuration are stored.
|
5165
|
+
# @return [String]
|
5166
|
+
#
|
5167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/DestinationResult AWS API Documentation
|
5168
|
+
#
|
5169
|
+
class DestinationResult < Struct.new(
|
5170
|
+
:table_bucket_type,
|
5171
|
+
:table_bucket_arn,
|
5172
|
+
:table_namespace)
|
5173
|
+
SENSITIVE = []
|
5174
|
+
include Aws::Structure
|
5175
|
+
end
|
5176
|
+
|
5043
5177
|
# Contains the type of server-side encryption used.
|
5044
5178
|
#
|
5045
5179
|
# @!attribute [rw] encryption_type
|
@@ -5881,12 +6015,24 @@ module Aws::S3
|
|
5881
6015
|
include Aws::Structure
|
5882
6016
|
end
|
5883
6017
|
|
5884
|
-
# If
|
5885
|
-
#
|
5886
|
-
# the
|
6018
|
+
# If an S3 Metadata V1 `CreateBucketMetadataTableConfiguration` or V2
|
6019
|
+
# `CreateBucketMetadataConfiguration` request succeeds, but S3 Metadata
|
6020
|
+
# was unable to create the table, this structure contains the error code
|
6021
|
+
# and error message.
|
6022
|
+
#
|
6023
|
+
# <note markdown="1"> If you created your S3 Metadata configuration before July 15, 2025, we
|
6024
|
+
# recommend that you delete and re-create your configuration by using
|
6025
|
+
# [CreateBucketMetadataConfiguration][1] so that you can expire journal
|
6026
|
+
# table records and create a live inventory table.
|
6027
|
+
#
|
6028
|
+
# </note>
|
6029
|
+
#
|
6030
|
+
#
|
6031
|
+
#
|
6032
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataConfiguration.html
|
5887
6033
|
#
|
5888
6034
|
# @!attribute [rw] error_code
|
5889
|
-
# If the `CreateBucketMetadataTableConfiguration` request succeeds,
|
6035
|
+
# If the V1 `CreateBucketMetadataTableConfiguration` request succeeds,
|
5890
6036
|
# but S3 Metadata was unable to create the table, this structure
|
5891
6037
|
# contains the error code. The possible error codes and error messages
|
5892
6038
|
# are as follows:
|
@@ -5925,10 +6071,65 @@ module Aws::S3
|
|
5925
6071
|
# Create or choose a different table bucket. To create a new
|
5926
6072
|
# metadata table, you must delete the metadata configuration for
|
5927
6073
|
# this bucket, and then create a new metadata configuration.
|
6074
|
+
#
|
6075
|
+
# If the V2 `CreateBucketMetadataConfiguration` request succeeds, but
|
6076
|
+
# S3 Metadata was unable to create the table, this structure contains
|
6077
|
+
# the error code. The possible error codes and error messages are as
|
6078
|
+
# follows:
|
6079
|
+
#
|
6080
|
+
# * `AccessDeniedCreatingResources` - You don't have sufficient
|
6081
|
+
# permissions to create the required resources. Make sure that you
|
6082
|
+
# have `s3tables:CreateTableBucket`, `s3tables:CreateNamespace`,
|
6083
|
+
# `s3tables:CreateTable`, `s3tables:GetTable`,
|
6084
|
+
# `s3tables:PutTablePolicy`, `kms:DescribeKey`, and
|
6085
|
+
# `s3tables:PutTableEncryption` permissions. Additionally, ensure
|
6086
|
+
# that the KMS key used to encrypt the table still exists, is active
|
6087
|
+
# and has a resource policy granting access to the S3 service
|
6088
|
+
# principals '`maintenance.s3tables.amazonaws.com`' and
|
6089
|
+
# '`metadata.s3.amazonaws.com`'. To create a new metadata table,
|
6090
|
+
# you must delete the metadata configuration for this bucket, and
|
6091
|
+
# then create a new metadata configuration.
|
6092
|
+
#
|
6093
|
+
# * `AccessDeniedWritingToTable` - Unable to write to the metadata
|
6094
|
+
# table because of missing resource permissions. To fix the resource
|
6095
|
+
# policy, Amazon S3 needs to create a new metadata table. To create
|
6096
|
+
# a new metadata table, you must delete the metadata configuration
|
6097
|
+
# for this bucket, and then create a new metadata configuration.
|
6098
|
+
#
|
6099
|
+
# * `DestinationTableNotFound` - The destination table doesn't exist.
|
6100
|
+
# To create a new metadata table, you must delete the metadata
|
6101
|
+
# configuration for this bucket, and then create a new metadata
|
6102
|
+
# configuration.
|
6103
|
+
#
|
6104
|
+
# * `ServerInternalError` - An internal error has occurred. To create
|
6105
|
+
# a new metadata table, you must delete the metadata configuration
|
6106
|
+
# for this bucket, and then create a new metadata configuration.
|
6107
|
+
#
|
6108
|
+
# * `JournalTableAlreadyExists` - A journal table already exists in
|
6109
|
+
# the Amazon Web Services managed table bucket's namespace. Delete
|
6110
|
+
# the journal table, and then try again. To create a new metadata
|
6111
|
+
# table, you must delete the metadata configuration for this bucket,
|
6112
|
+
# and then create a new metadata configuration.
|
6113
|
+
#
|
6114
|
+
# * `InventoryTableAlreadyExists` - An inventory table already exists
|
6115
|
+
# in the Amazon Web Services managed table bucket's namespace.
|
6116
|
+
# Delete the inventory table, and then try again. To create a new
|
6117
|
+
# metadata table, you must delete the metadata configuration for
|
6118
|
+
# this bucket, and then create a new metadata configuration.
|
6119
|
+
#
|
6120
|
+
# * `JournalTableNotAvailable` - The journal table that the inventory
|
6121
|
+
# table relies on has a `FAILED` status. An inventory table requires
|
6122
|
+
# a journal table with an `ACTIVE` status. To create a new journal
|
6123
|
+
# or inventory table, you must delete the metadata configuration for
|
6124
|
+
# this bucket, along with any journal or inventory tables, and then
|
6125
|
+
# create a new metadata configuration.
|
6126
|
+
#
|
6127
|
+
# * `NoSuchBucket` - The specified general purpose bucket does not
|
6128
|
+
# exist.
|
5928
6129
|
# @return [String]
|
5929
6130
|
#
|
5930
6131
|
# @!attribute [rw] error_message
|
5931
|
-
# If the `CreateBucketMetadataTableConfiguration` request succeeds,
|
6132
|
+
# If the V1 `CreateBucketMetadataTableConfiguration` request succeeds,
|
5932
6133
|
# but S3 Metadata was unable to create the table, this structure
|
5933
6134
|
# contains the error message. The possible error codes and error
|
5934
6135
|
# messages are as follows:
|
@@ -5967,6 +6168,61 @@ module Aws::S3
|
|
5967
6168
|
# Create or choose a different table bucket. To create a new
|
5968
6169
|
# metadata table, you must delete the metadata configuration for
|
5969
6170
|
# this bucket, and then create a new metadata configuration.
|
6171
|
+
#
|
6172
|
+
# If the V2 `CreateBucketMetadataConfiguration` request succeeds, but
|
6173
|
+
# S3 Metadata was unable to create the table, this structure contains
|
6174
|
+
# the error code. The possible error codes and error messages are as
|
6175
|
+
# follows:
|
6176
|
+
#
|
6177
|
+
# * `AccessDeniedCreatingResources` - You don't have sufficient
|
6178
|
+
# permissions to create the required resources. Make sure that you
|
6179
|
+
# have `s3tables:CreateTableBucket`, `s3tables:CreateNamespace`,
|
6180
|
+
# `s3tables:CreateTable`, `s3tables:GetTable`,
|
6181
|
+
# `s3tables:PutTablePolicy`, `kms:DescribeKey`, and
|
6182
|
+
# `s3tables:PutTableEncryption` permissions. Additionally, ensure
|
6183
|
+
# that the KMS key used to encrypt the table still exists, is active
|
6184
|
+
# and has a resource policy granting access to the S3 service
|
6185
|
+
# principals '`maintenance.s3tables.amazonaws.com`' and
|
6186
|
+
# '`metadata.s3.amazonaws.com`'. To create a new metadata table,
|
6187
|
+
# you must delete the metadata configuration for this bucket, and
|
6188
|
+
# then create a new metadata configuration.
|
6189
|
+
#
|
6190
|
+
# * `AccessDeniedWritingToTable` - Unable to write to the metadata
|
6191
|
+
# table because of missing resource permissions. To fix the resource
|
6192
|
+
# policy, Amazon S3 needs to create a new metadata table. To create
|
6193
|
+
# a new metadata table, you must delete the metadata configuration
|
6194
|
+
# for this bucket, and then create a new metadata configuration.
|
6195
|
+
#
|
6196
|
+
# * `DestinationTableNotFound` - The destination table doesn't exist.
|
6197
|
+
# To create a new metadata table, you must delete the metadata
|
6198
|
+
# configuration for this bucket, and then create a new metadata
|
6199
|
+
# configuration.
|
6200
|
+
#
|
6201
|
+
# * `ServerInternalError` - An internal error has occurred. To create
|
6202
|
+
# a new metadata table, you must delete the metadata configuration
|
6203
|
+
# for this bucket, and then create a new metadata configuration.
|
6204
|
+
#
|
6205
|
+
# * `JournalTableAlreadyExists` - A journal table already exists in
|
6206
|
+
# the Amazon Web Services managed table bucket's namespace. Delete
|
6207
|
+
# the journal table, and then try again. To create a new metadata
|
6208
|
+
# table, you must delete the metadata configuration for this bucket,
|
6209
|
+
# and then create a new metadata configuration.
|
6210
|
+
#
|
6211
|
+
# * `InventoryTableAlreadyExists` - An inventory table already exists
|
6212
|
+
# in the Amazon Web Services managed table bucket's namespace.
|
6213
|
+
# Delete the inventory table, and then try again. To create a new
|
6214
|
+
# metadata table, you must delete the metadata configuration for
|
6215
|
+
# this bucket, and then create a new metadata configuration.
|
6216
|
+
#
|
6217
|
+
# * `JournalTableNotAvailable` - The journal table that the inventory
|
6218
|
+
# table relies on has a `FAILED` status. An inventory table requires
|
6219
|
+
# a journal table with an `ACTIVE` status. To create a new journal
|
6220
|
+
# or inventory table, you must delete the metadata configuration for
|
6221
|
+
# this bucket, along with any journal or inventory tables, and then
|
6222
|
+
# create a new metadata configuration.
|
6223
|
+
#
|
6224
|
+
# * `NoSuchBucket` - The specified general purpose bucket does not
|
6225
|
+
# exist.
|
5970
6226
|
# @return [String]
|
5971
6227
|
#
|
5972
6228
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ErrorDetails AWS API Documentation
|
@@ -6589,6 +6845,51 @@ module Aws::S3
|
|
6589
6845
|
include Aws::Structure
|
6590
6846
|
end
|
6591
6847
|
|
6848
|
+
# @!attribute [rw] get_bucket_metadata_configuration_result
|
6849
|
+
# The metadata configuration for the general purpose bucket.
|
6850
|
+
# @return [Types::GetBucketMetadataConfigurationResult]
|
6851
|
+
#
|
6852
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketMetadataConfigurationOutput AWS API Documentation
|
6853
|
+
#
|
6854
|
+
class GetBucketMetadataConfigurationOutput < Struct.new(
|
6855
|
+
:get_bucket_metadata_configuration_result)
|
6856
|
+
SENSITIVE = []
|
6857
|
+
include Aws::Structure
|
6858
|
+
end
|
6859
|
+
|
6860
|
+
# @!attribute [rw] bucket
|
6861
|
+
# The general purpose bucket that corresponds to the metadata
|
6862
|
+
# configuration that you want to retrieve.
|
6863
|
+
# @return [String]
|
6864
|
+
#
|
6865
|
+
# @!attribute [rw] expected_bucket_owner
|
6866
|
+
# The expected owner of the general purpose bucket that you want to
|
6867
|
+
# retrieve the metadata table configuration for.
|
6868
|
+
# @return [String]
|
6869
|
+
#
|
6870
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketMetadataConfigurationRequest AWS API Documentation
|
6871
|
+
#
|
6872
|
+
class GetBucketMetadataConfigurationRequest < Struct.new(
|
6873
|
+
:bucket,
|
6874
|
+
:expected_bucket_owner)
|
6875
|
+
SENSITIVE = []
|
6876
|
+
include Aws::Structure
|
6877
|
+
end
|
6878
|
+
|
6879
|
+
# The S3 Metadata configuration for a general purpose bucket.
|
6880
|
+
#
|
6881
|
+
# @!attribute [rw] metadata_configuration_result
|
6882
|
+
# The metadata configuration for a general purpose bucket.
|
6883
|
+
# @return [Types::MetadataConfigurationResult]
|
6884
|
+
#
|
6885
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketMetadataConfigurationResult AWS API Documentation
|
6886
|
+
#
|
6887
|
+
class GetBucketMetadataConfigurationResult < Struct.new(
|
6888
|
+
:metadata_configuration_result)
|
6889
|
+
SENSITIVE = []
|
6890
|
+
include Aws::Structure
|
6891
|
+
end
|
6892
|
+
|
6592
6893
|
# @!attribute [rw] get_bucket_metadata_table_configuration_result
|
6593
6894
|
# The metadata table configuration for the general purpose bucket.
|
6594
6895
|
# @return [Types::GetBucketMetadataTableConfigurationResult]
|
@@ -6602,13 +6903,13 @@ module Aws::S3
|
|
6602
6903
|
end
|
6603
6904
|
|
6604
6905
|
# @!attribute [rw] bucket
|
6605
|
-
# The general purpose bucket that
|
6906
|
+
# The general purpose bucket that corresponds to the metadata table
|
6606
6907
|
# configuration that you want to retrieve.
|
6607
6908
|
# @return [String]
|
6608
6909
|
#
|
6609
6910
|
# @!attribute [rw] expected_bucket_owner
|
6610
6911
|
# The expected owner of the general purpose bucket that you want to
|
6611
|
-
# retrieve the metadata table configuration
|
6912
|
+
# retrieve the metadata table configuration for.
|
6612
6913
|
# @return [String]
|
6613
6914
|
#
|
6614
6915
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketMetadataTableConfigurationRequest AWS API Documentation
|
@@ -6620,10 +6921,21 @@ module Aws::S3
|
|
6620
6921
|
include Aws::Structure
|
6621
6922
|
end
|
6622
6923
|
|
6623
|
-
# The
|
6924
|
+
# The V1 S3 Metadata configuration for a general purpose bucket.
|
6925
|
+
#
|
6926
|
+
# <note markdown="1"> If you created your S3 Metadata configuration before July 15, 2025, we
|
6927
|
+
# recommend that you delete and re-create your configuration by using
|
6928
|
+
# [CreateBucketMetadataConfiguration][1] so that you can expire journal
|
6929
|
+
# table records and create a live inventory table.
|
6930
|
+
#
|
6931
|
+
# </note>
|
6932
|
+
#
|
6933
|
+
#
|
6934
|
+
#
|
6935
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataConfiguration.html
|
6624
6936
|
#
|
6625
6937
|
# @!attribute [rw] metadata_table_configuration_result
|
6626
|
-
# The
|
6938
|
+
# The V1 S3 Metadata configuration for a general purpose bucket.
|
6627
6939
|
# @return [Types::MetadataTableConfigurationResult]
|
6628
6940
|
#
|
6629
6941
|
# @!attribute [rw] status
|
@@ -6632,7 +6944,7 @@ module Aws::S3
|
|
6632
6944
|
# * `CREATING` - The metadata table is in the process of being created
|
6633
6945
|
# in the specified table bucket.
|
6634
6946
|
#
|
6635
|
-
# * `ACTIVE` - The metadata table has been created successfully and
|
6947
|
+
# * `ACTIVE` - The metadata table has been created successfully, and
|
6636
6948
|
# records are being delivered to the table.
|
6637
6949
|
#
|
6638
6950
|
# * `FAILED` - Amazon S3 is unable to create the metadata table, or
|
@@ -8716,6 +9028,21 @@ module Aws::S3
|
|
8716
9028
|
include Aws::Structure
|
8717
9029
|
end
|
8718
9030
|
|
9031
|
+
# @!attribute [rw] bucket_arn
|
9032
|
+
# The Amazon Resource Name (ARN) of the S3 bucket. ARNs uniquely
|
9033
|
+
# identify Amazon Web Services resources across all of Amazon Web
|
9034
|
+
# Services.
|
9035
|
+
#
|
9036
|
+
# <note markdown="1"> This parameter is only supported for S3 directory buckets. For more
|
9037
|
+
# information, see [Using tags with directory buckets][1].
|
9038
|
+
#
|
9039
|
+
# </note>
|
9040
|
+
#
|
9041
|
+
#
|
9042
|
+
#
|
9043
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
|
9044
|
+
# @return [String]
|
9045
|
+
#
|
8719
9046
|
# @!attribute [rw] bucket_location_type
|
8720
9047
|
# The type of location where the bucket is created.
|
8721
9048
|
#
|
@@ -8752,6 +9079,7 @@ module Aws::S3
|
|
8752
9079
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/HeadBucketOutput AWS API Documentation
|
8753
9080
|
#
|
8754
9081
|
class HeadBucketOutput < Struct.new(
|
9082
|
+
:bucket_arn,
|
8755
9083
|
:bucket_location_type,
|
8756
9084
|
:bucket_location_name,
|
8757
9085
|
:bucket_region,
|
@@ -9843,7 +10171,7 @@ module Aws::S3
|
|
9843
10171
|
#
|
9844
10172
|
class InvalidWriteOffset < Aws::EmptyStructure; end
|
9845
10173
|
|
9846
|
-
# Specifies the
|
10174
|
+
# Specifies the S3 Inventory configuration for an Amazon S3 bucket. For
|
9847
10175
|
# more information, see [GET Bucket inventory][1] in the *Amazon S3 API
|
9848
10176
|
# Reference*.
|
9849
10177
|
#
|
@@ -9901,7 +10229,7 @@ module Aws::S3
|
|
9901
10229
|
include Aws::Structure
|
9902
10230
|
end
|
9903
10231
|
|
9904
|
-
# Specifies the
|
10232
|
+
# Specifies the S3 Inventory configuration for an Amazon S3 bucket.
|
9905
10233
|
#
|
9906
10234
|
# @!attribute [rw] s3_bucket_destination
|
9907
10235
|
# Contains the bucket name, file format, bucket owner (optional), and
|
@@ -9916,8 +10244,8 @@ module Aws::S3
|
|
9916
10244
|
include Aws::Structure
|
9917
10245
|
end
|
9918
10246
|
|
9919
|
-
# Contains the type of server-side encryption used to encrypt the
|
9920
|
-
#
|
10247
|
+
# Contains the type of server-side encryption used to encrypt the S3
|
10248
|
+
# Inventory results.
|
9921
10249
|
#
|
9922
10250
|
# @!attribute [rw] sses3
|
9923
10251
|
# Specifies the use of SSE-S3 to encrypt delivered inventory reports.
|
@@ -9936,7 +10264,7 @@ module Aws::S3
|
|
9936
10264
|
include Aws::Structure
|
9937
10265
|
end
|
9938
10266
|
|
9939
|
-
# Specifies an
|
10267
|
+
# Specifies an S3 Inventory filter. The inventory only includes objects
|
9940
10268
|
# that meet the filter's criteria.
|
9941
10269
|
#
|
9942
10270
|
# @!attribute [rw] prefix
|
@@ -9953,7 +10281,7 @@ module Aws::S3
|
|
9953
10281
|
end
|
9954
10282
|
|
9955
10283
|
# Contains the bucket name, file format, bucket owner (optional), and
|
9956
|
-
# prefix (optional) where
|
10284
|
+
# prefix (optional) where S3 Inventory results are published.
|
9957
10285
|
#
|
9958
10286
|
# @!attribute [rw] account_id
|
9959
10287
|
# The account ID that owns the destination S3 bucket. If no account ID
|
@@ -9996,7 +10324,7 @@ module Aws::S3
|
|
9996
10324
|
include Aws::Structure
|
9997
10325
|
end
|
9998
10326
|
|
9999
|
-
# Specifies the schedule for generating
|
10327
|
+
# Specifies the schedule for generating S3 Inventory results.
|
10000
10328
|
#
|
10001
10329
|
# @!attribute [rw] frequency
|
10002
10330
|
# Specifies how frequently inventory results are produced.
|
@@ -10010,6 +10338,117 @@ module Aws::S3
|
|
10010
10338
|
include Aws::Structure
|
10011
10339
|
end
|
10012
10340
|
|
10341
|
+
# The inventory table configuration for an S3 Metadata configuration.
|
10342
|
+
#
|
10343
|
+
# @!attribute [rw] configuration_state
|
10344
|
+
# The configuration state of the inventory table, indicating whether
|
10345
|
+
# the inventory table is enabled or disabled.
|
10346
|
+
# @return [String]
|
10347
|
+
#
|
10348
|
+
# @!attribute [rw] encryption_configuration
|
10349
|
+
# The encryption configuration for the inventory table.
|
10350
|
+
# @return [Types::MetadataTableEncryptionConfiguration]
|
10351
|
+
#
|
10352
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/InventoryTableConfiguration AWS API Documentation
|
10353
|
+
#
|
10354
|
+
class InventoryTableConfiguration < Struct.new(
|
10355
|
+
:configuration_state,
|
10356
|
+
:encryption_configuration)
|
10357
|
+
SENSITIVE = []
|
10358
|
+
include Aws::Structure
|
10359
|
+
end
|
10360
|
+
|
10361
|
+
# The inventory table configuration for an S3 Metadata configuration.
|
10362
|
+
#
|
10363
|
+
# @!attribute [rw] configuration_state
|
10364
|
+
# The configuration state of the inventory table, indicating whether
|
10365
|
+
# the inventory table is enabled or disabled.
|
10366
|
+
# @return [String]
|
10367
|
+
#
|
10368
|
+
# @!attribute [rw] table_status
|
10369
|
+
# The status of the inventory table. The status values are:
|
10370
|
+
#
|
10371
|
+
# * `CREATING` - The inventory table is in the process of being
|
10372
|
+
# created in the specified Amazon Web Services managed table bucket.
|
10373
|
+
#
|
10374
|
+
# * `BACKFILLING` - The inventory table is in the process of being
|
10375
|
+
# backfilled. When you enable the inventory table for your metadata
|
10376
|
+
# configuration, the table goes through a process known as
|
10377
|
+
# backfilling, during which Amazon S3 scans your general purpose
|
10378
|
+
# bucket to retrieve the initial metadata for all objects in the
|
10379
|
+
# bucket. Depending on the number of objects in your bucket, this
|
10380
|
+
# process can take several hours. When the backfilling process is
|
10381
|
+
# finished, the status of your inventory table changes from
|
10382
|
+
# `BACKFILLING` to `ACTIVE`. After backfilling is completed, updates
|
10383
|
+
# to your objects are reflected in the inventory table within one
|
10384
|
+
# hour.
|
10385
|
+
#
|
10386
|
+
# * `ACTIVE` - The inventory table has been created successfully, and
|
10387
|
+
# records are being delivered to the table.
|
10388
|
+
#
|
10389
|
+
# * `FAILED` - Amazon S3 is unable to create the inventory table, or
|
10390
|
+
# Amazon S3 is unable to deliver records.
|
10391
|
+
# @return [String]
|
10392
|
+
#
|
10393
|
+
# @!attribute [rw] error
|
10394
|
+
# If an S3 Metadata V1 `CreateBucketMetadataTableConfiguration` or V2
|
10395
|
+
# `CreateBucketMetadataConfiguration` request succeeds, but S3
|
10396
|
+
# Metadata was unable to create the table, this structure contains the
|
10397
|
+
# error code and error message.
|
10398
|
+
#
|
10399
|
+
# <note markdown="1"> If you created your S3 Metadata configuration before July 15, 2025,
|
10400
|
+
# we recommend that you delete and re-create your configuration by
|
10401
|
+
# using [CreateBucketMetadataConfiguration][1] so that you can expire
|
10402
|
+
# journal table records and create a live inventory table.
|
10403
|
+
#
|
10404
|
+
# </note>
|
10405
|
+
#
|
10406
|
+
#
|
10407
|
+
#
|
10408
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataConfiguration.html
|
10409
|
+
# @return [Types::ErrorDetails]
|
10410
|
+
#
|
10411
|
+
# @!attribute [rw] table_name
|
10412
|
+
# The name of the inventory table.
|
10413
|
+
# @return [String]
|
10414
|
+
#
|
10415
|
+
# @!attribute [rw] table_arn
|
10416
|
+
# The Amazon Resource Name (ARN) for the inventory table.
|
10417
|
+
# @return [String]
|
10418
|
+
#
|
10419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/InventoryTableConfigurationResult AWS API Documentation
|
10420
|
+
#
|
10421
|
+
class InventoryTableConfigurationResult < Struct.new(
|
10422
|
+
:configuration_state,
|
10423
|
+
:table_status,
|
10424
|
+
:error,
|
10425
|
+
:table_name,
|
10426
|
+
:table_arn)
|
10427
|
+
SENSITIVE = []
|
10428
|
+
include Aws::Structure
|
10429
|
+
end
|
10430
|
+
|
10431
|
+
# The specified updates to the S3 Metadata inventory table
|
10432
|
+
# configuration.
|
10433
|
+
#
|
10434
|
+
# @!attribute [rw] configuration_state
|
10435
|
+
# The configuration state of the inventory table, indicating whether
|
10436
|
+
# the inventory table is enabled or disabled.
|
10437
|
+
# @return [String]
|
10438
|
+
#
|
10439
|
+
# @!attribute [rw] encryption_configuration
|
10440
|
+
# The encryption configuration for the inventory table.
|
10441
|
+
# @return [Types::MetadataTableEncryptionConfiguration]
|
10442
|
+
#
|
10443
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/InventoryTableConfigurationUpdates AWS API Documentation
|
10444
|
+
#
|
10445
|
+
class InventoryTableConfigurationUpdates < Struct.new(
|
10446
|
+
:configuration_state,
|
10447
|
+
:encryption_configuration)
|
10448
|
+
SENSITIVE = []
|
10449
|
+
include Aws::Structure
|
10450
|
+
end
|
10451
|
+
|
10013
10452
|
# Specifies JSON as object's input serialization format.
|
10014
10453
|
#
|
10015
10454
|
# @!attribute [rw] type
|
@@ -10039,6 +10478,96 @@ module Aws::S3
|
|
10039
10478
|
include Aws::Structure
|
10040
10479
|
end
|
10041
10480
|
|
10481
|
+
# The journal table configuration for an S3 Metadata configuration.
|
10482
|
+
#
|
10483
|
+
# @!attribute [rw] record_expiration
|
10484
|
+
# The journal table record expiration settings for the journal table.
|
10485
|
+
# @return [Types::RecordExpiration]
|
10486
|
+
#
|
10487
|
+
# @!attribute [rw] encryption_configuration
|
10488
|
+
# The encryption configuration for the journal table.
|
10489
|
+
# @return [Types::MetadataTableEncryptionConfiguration]
|
10490
|
+
#
|
10491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/JournalTableConfiguration AWS API Documentation
|
10492
|
+
#
|
10493
|
+
class JournalTableConfiguration < Struct.new(
|
10494
|
+
:record_expiration,
|
10495
|
+
:encryption_configuration)
|
10496
|
+
SENSITIVE = []
|
10497
|
+
include Aws::Structure
|
10498
|
+
end
|
10499
|
+
|
10500
|
+
# The journal table configuration for the S3 Metadata configuration.
|
10501
|
+
#
|
10502
|
+
# @!attribute [rw] table_status
|
10503
|
+
# The status of the journal table. The status values are:
|
10504
|
+
#
|
10505
|
+
# * `CREATING` - The journal table is in the process of being created
|
10506
|
+
# in the specified table bucket.
|
10507
|
+
#
|
10508
|
+
# * `ACTIVE` - The journal table has been created successfully, and
|
10509
|
+
# records are being delivered to the table.
|
10510
|
+
#
|
10511
|
+
# * `FAILED` - Amazon S3 is unable to create the journal table, or
|
10512
|
+
# Amazon S3 is unable to deliver records.
|
10513
|
+
# @return [String]
|
10514
|
+
#
|
10515
|
+
# @!attribute [rw] error
|
10516
|
+
# If an S3 Metadata V1 `CreateBucketMetadataTableConfiguration` or V2
|
10517
|
+
# `CreateBucketMetadataConfiguration` request succeeds, but S3
|
10518
|
+
# Metadata was unable to create the table, this structure contains the
|
10519
|
+
# error code and error message.
|
10520
|
+
#
|
10521
|
+
# <note markdown="1"> If you created your S3 Metadata configuration before July 15, 2025,
|
10522
|
+
# we recommend that you delete and re-create your configuration by
|
10523
|
+
# using [CreateBucketMetadataConfiguration][1] so that you can expire
|
10524
|
+
# journal table records and create a live inventory table.
|
10525
|
+
#
|
10526
|
+
# </note>
|
10527
|
+
#
|
10528
|
+
#
|
10529
|
+
#
|
10530
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataConfiguration.html
|
10531
|
+
# @return [Types::ErrorDetails]
|
10532
|
+
#
|
10533
|
+
# @!attribute [rw] table_name
|
10534
|
+
# The name of the journal table.
|
10535
|
+
# @return [String]
|
10536
|
+
#
|
10537
|
+
# @!attribute [rw] table_arn
|
10538
|
+
# The Amazon Resource Name (ARN) for the journal table.
|
10539
|
+
# @return [String]
|
10540
|
+
#
|
10541
|
+
# @!attribute [rw] record_expiration
|
10542
|
+
# The journal table record expiration settings for the journal table.
|
10543
|
+
# @return [Types::RecordExpiration]
|
10544
|
+
#
|
10545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/JournalTableConfigurationResult AWS API Documentation
|
10546
|
+
#
|
10547
|
+
class JournalTableConfigurationResult < Struct.new(
|
10548
|
+
:table_status,
|
10549
|
+
:error,
|
10550
|
+
:table_name,
|
10551
|
+
:table_arn,
|
10552
|
+
:record_expiration)
|
10553
|
+
SENSITIVE = []
|
10554
|
+
include Aws::Structure
|
10555
|
+
end
|
10556
|
+
|
10557
|
+
# The specified updates to the S3 Metadata journal table configuration.
|
10558
|
+
#
|
10559
|
+
# @!attribute [rw] record_expiration
|
10560
|
+
# The journal table record expiration settings for the journal table.
|
10561
|
+
# @return [Types::RecordExpiration]
|
10562
|
+
#
|
10563
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/JournalTableConfigurationUpdates AWS API Documentation
|
10564
|
+
#
|
10565
|
+
class JournalTableConfigurationUpdates < Struct.new(
|
10566
|
+
:record_expiration)
|
10567
|
+
SENSITIVE = []
|
10568
|
+
include Aws::Structure
|
10569
|
+
end
|
10570
|
+
|
10042
10571
|
# A container for specifying the configuration for Lambda notifications.
|
10043
10572
|
#
|
10044
10573
|
# @!attribute [rw] id
|
@@ -10938,6 +11467,9 @@ module Aws::S3
|
|
10938
11467
|
# `CommonPrefixes` result element are not returned elsewhere in the
|
10939
11468
|
# response.
|
10940
11469
|
#
|
11470
|
+
# `CommonPrefixes` is filtered out from results if it is not
|
11471
|
+
# lexicographically greater than the key-marker.
|
11472
|
+
#
|
10941
11473
|
# <note markdown="1"> **Directory buckets** - For directory buckets, `/` is the only
|
10942
11474
|
# supported delimiter.
|
10943
11475
|
#
|
@@ -11197,6 +11729,9 @@ module Aws::S3
|
|
11197
11729
|
# element in `CommonPrefixes`. These groups are counted as one result
|
11198
11730
|
# against the `max-keys` limitation. These keys are not returned
|
11199
11731
|
# elsewhere in the response.
|
11732
|
+
#
|
11733
|
+
# `CommonPrefixes` is filtered out from results if it is not
|
11734
|
+
# lexicographically greater than the key-marker.
|
11200
11735
|
# @return [String]
|
11201
11736
|
#
|
11202
11737
|
# @!attribute [rw] encoding_type
|
@@ -11470,6 +12005,9 @@ module Aws::S3
|
|
11470
12005
|
#
|
11471
12006
|
# @!attribute [rw] delimiter
|
11472
12007
|
# A delimiter is a character that you use to group keys.
|
12008
|
+
#
|
12009
|
+
# `CommonPrefixes` is filtered out from results if it is not
|
12010
|
+
# lexicographically greater than the key-marker.
|
11473
12011
|
# @return [String]
|
11474
12012
|
#
|
11475
12013
|
# @!attribute [rw] encoding_type
|
@@ -11749,6 +12287,9 @@ module Aws::S3
|
|
11749
12287
|
# @!attribute [rw] delimiter
|
11750
12288
|
# A delimiter is a character that you use to group keys.
|
11751
12289
|
#
|
12290
|
+
# `CommonPrefixes` is filtered out from results if it is not
|
12291
|
+
# lexicographically greater than the `StartAfter` value.
|
12292
|
+
#
|
11752
12293
|
# <note markdown="1"> * **Directory buckets** - For directory buckets, `/` is the only
|
11753
12294
|
# supported delimiter.
|
11754
12295
|
#
|
@@ -12273,6 +12814,49 @@ module Aws::S3
|
|
12273
12814
|
include Aws::Structure
|
12274
12815
|
end
|
12275
12816
|
|
12817
|
+
# The S3 Metadata configuration for a general purpose bucket.
|
12818
|
+
#
|
12819
|
+
# @!attribute [rw] journal_table_configuration
|
12820
|
+
# The journal table configuration for a metadata configuration.
|
12821
|
+
# @return [Types::JournalTableConfiguration]
|
12822
|
+
#
|
12823
|
+
# @!attribute [rw] inventory_table_configuration
|
12824
|
+
# The inventory table configuration for a metadata configuration.
|
12825
|
+
# @return [Types::InventoryTableConfiguration]
|
12826
|
+
#
|
12827
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/MetadataConfiguration AWS API Documentation
|
12828
|
+
#
|
12829
|
+
class MetadataConfiguration < Struct.new(
|
12830
|
+
:journal_table_configuration,
|
12831
|
+
:inventory_table_configuration)
|
12832
|
+
SENSITIVE = []
|
12833
|
+
include Aws::Structure
|
12834
|
+
end
|
12835
|
+
|
12836
|
+
# The S3 Metadata configuration for a general purpose bucket.
|
12837
|
+
#
|
12838
|
+
# @!attribute [rw] destination_result
|
12839
|
+
# The destination settings for a metadata configuration.
|
12840
|
+
# @return [Types::DestinationResult]
|
12841
|
+
#
|
12842
|
+
# @!attribute [rw] journal_table_configuration_result
|
12843
|
+
# The journal table configuration for a metadata configuration.
|
12844
|
+
# @return [Types::JournalTableConfigurationResult]
|
12845
|
+
#
|
12846
|
+
# @!attribute [rw] inventory_table_configuration_result
|
12847
|
+
# The inventory table configuration for a metadata configuration.
|
12848
|
+
# @return [Types::InventoryTableConfigurationResult]
|
12849
|
+
#
|
12850
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/MetadataConfigurationResult AWS API Documentation
|
12851
|
+
#
|
12852
|
+
class MetadataConfigurationResult < Struct.new(
|
12853
|
+
:destination_result,
|
12854
|
+
:journal_table_configuration_result,
|
12855
|
+
:inventory_table_configuration_result)
|
12856
|
+
SENSITIVE = []
|
12857
|
+
include Aws::Structure
|
12858
|
+
end
|
12859
|
+
|
12276
12860
|
# A metadata key-value pair to store with an object.
|
12277
12861
|
#
|
12278
12862
|
# @!attribute [rw] name
|
@@ -12292,7 +12876,18 @@ module Aws::S3
|
|
12292
12876
|
include Aws::Structure
|
12293
12877
|
end
|
12294
12878
|
|
12295
|
-
# The
|
12879
|
+
# The V1 S3 Metadata configuration for a general purpose bucket.
|
12880
|
+
#
|
12881
|
+
# <note markdown="1"> If you created your S3 Metadata configuration before July 15, 2025, we
|
12882
|
+
# recommend that you delete and re-create your configuration by using
|
12883
|
+
# [CreateBucketMetadataConfiguration][1] so that you can expire journal
|
12884
|
+
# table records and create a live inventory table.
|
12885
|
+
#
|
12886
|
+
# </note>
|
12887
|
+
#
|
12888
|
+
#
|
12889
|
+
#
|
12890
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataConfiguration.html
|
12296
12891
|
#
|
12297
12892
|
# @!attribute [rw] s3_tables_destination
|
12298
12893
|
# The destination information for the metadata table configuration.
|
@@ -12310,12 +12905,23 @@ module Aws::S3
|
|
12310
12905
|
include Aws::Structure
|
12311
12906
|
end
|
12312
12907
|
|
12313
|
-
# The
|
12908
|
+
# The V1 S3 Metadata configuration for a general purpose bucket. The
|
12314
12909
|
# destination table bucket must be in the same Region and Amazon Web
|
12315
12910
|
# Services account as the general purpose bucket. The specified metadata
|
12316
12911
|
# table name must be unique within the `aws_s3_metadata` namespace in
|
12317
12912
|
# the destination table bucket.
|
12318
12913
|
#
|
12914
|
+
# <note markdown="1"> If you created your S3 Metadata configuration before July 15, 2025, we
|
12915
|
+
# recommend that you delete and re-create your configuration by using
|
12916
|
+
# [CreateBucketMetadataConfiguration][1] so that you can expire journal
|
12917
|
+
# table records and create a live inventory table.
|
12918
|
+
#
|
12919
|
+
# </note>
|
12920
|
+
#
|
12921
|
+
#
|
12922
|
+
#
|
12923
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataConfiguration.html
|
12924
|
+
#
|
12319
12925
|
# @!attribute [rw] s3_tables_destination_result
|
12320
12926
|
# The destination information for the metadata table configuration.
|
12321
12927
|
# The destination table bucket must be in the same Region and Amazon
|
@@ -12332,6 +12938,34 @@ module Aws::S3
|
|
12332
12938
|
include Aws::Structure
|
12333
12939
|
end
|
12334
12940
|
|
12941
|
+
# The encryption settings for an S3 Metadata journal table or inventory
|
12942
|
+
# table configuration.
|
12943
|
+
#
|
12944
|
+
# @!attribute [rw] sse_algorithm
|
12945
|
+
# The encryption type specified for a metadata table. To specify
|
12946
|
+
# server-side encryption with Key Management Service (KMS) keys
|
12947
|
+
# (SSE-KMS), use the `aws:kms` value. To specify server-side
|
12948
|
+
# encryption with Amazon S3 managed keys (SSE-S3), use the `AES256`
|
12949
|
+
# value.
|
12950
|
+
# @return [String]
|
12951
|
+
#
|
12952
|
+
# @!attribute [rw] kms_key_arn
|
12953
|
+
# If server-side encryption with Key Management Service (KMS) keys
|
12954
|
+
# (SSE-KMS) is specified, you must also specify the KMS key Amazon
|
12955
|
+
# Resource Name (ARN). You must specify a customer-managed KMS key
|
12956
|
+
# that's located in the same Region as the general purpose bucket
|
12957
|
+
# that corresponds to the metadata table configuration.
|
12958
|
+
# @return [String]
|
12959
|
+
#
|
12960
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/MetadataTableEncryptionConfiguration AWS API Documentation
|
12961
|
+
#
|
12962
|
+
class MetadataTableEncryptionConfiguration < Struct.new(
|
12963
|
+
:sse_algorithm,
|
12964
|
+
:kms_key_arn)
|
12965
|
+
SENSITIVE = []
|
12966
|
+
include Aws::Structure
|
12967
|
+
end
|
12968
|
+
|
12335
12969
|
# A container specifying replication metrics-related settings enabling
|
12336
12970
|
# replication metrics and events.
|
12337
12971
|
#
|
@@ -16530,6 +17164,32 @@ module Aws::S3
|
|
16530
17164
|
include Aws::Structure
|
16531
17165
|
end
|
16532
17166
|
|
17167
|
+
# The journal table record expiration settings for a journal table in an
|
17168
|
+
# S3 Metadata configuration.
|
17169
|
+
#
|
17170
|
+
# @!attribute [rw] expiration
|
17171
|
+
# Specifies whether journal table record expiration is enabled or
|
17172
|
+
# disabled.
|
17173
|
+
# @return [String]
|
17174
|
+
#
|
17175
|
+
# @!attribute [rw] days
|
17176
|
+
# If you enable journal table record expiration, you can set the
|
17177
|
+
# number of days to retain your journal table records. Journal table
|
17178
|
+
# records must be retained for a minimum of 7 days. To set this value,
|
17179
|
+
# specify any whole number from `7` to `2147483647`. For example, to
|
17180
|
+
# retain your journal table records for one year, set this value to
|
17181
|
+
# `365`.
|
17182
|
+
# @return [Integer]
|
17183
|
+
#
|
17184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/RecordExpiration AWS API Documentation
|
17185
|
+
#
|
17186
|
+
class RecordExpiration < Struct.new(
|
17187
|
+
:expiration,
|
17188
|
+
:days)
|
17189
|
+
SENSITIVE = []
|
17190
|
+
include Aws::Structure
|
17191
|
+
end
|
17192
|
+
|
16533
17193
|
# The container for the records event.
|
16534
17194
|
#
|
16535
17195
|
# @!attribute [rw] payload
|
@@ -17518,12 +18178,23 @@ module Aws::S3
|
|
17518
18178
|
include Aws::Structure
|
17519
18179
|
end
|
17520
18180
|
|
17521
|
-
# The destination information for
|
18181
|
+
# The destination information for a V1 S3 Metadata configuration. The
|
17522
18182
|
# destination table bucket must be in the same Region and Amazon Web
|
17523
18183
|
# Services account as the general purpose bucket. The specified metadata
|
17524
18184
|
# table name must be unique within the `aws_s3_metadata` namespace in
|
17525
18185
|
# the destination table bucket.
|
17526
18186
|
#
|
18187
|
+
# <note markdown="1"> If you created your S3 Metadata configuration before July 15, 2025, we
|
18188
|
+
# recommend that you delete and re-create your configuration by using
|
18189
|
+
# [CreateBucketMetadataConfiguration][1] so that you can expire journal
|
18190
|
+
# table records and create a live inventory table.
|
18191
|
+
#
|
18192
|
+
# </note>
|
18193
|
+
#
|
18194
|
+
#
|
18195
|
+
#
|
18196
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataConfiguration.html
|
18197
|
+
#
|
17527
18198
|
# @!attribute [rw] table_bucket_arn
|
17528
18199
|
# The Amazon Resource Name (ARN) for the table bucket that's
|
17529
18200
|
# specified as the destination in the metadata table configuration.
|
@@ -17547,12 +18218,23 @@ module Aws::S3
|
|
17547
18218
|
include Aws::Structure
|
17548
18219
|
end
|
17549
18220
|
|
17550
|
-
# The destination information for
|
18221
|
+
# The destination information for a V1 S3 Metadata configuration. The
|
17551
18222
|
# destination table bucket must be in the same Region and Amazon Web
|
17552
18223
|
# Services account as the general purpose bucket. The specified metadata
|
17553
18224
|
# table name must be unique within the `aws_s3_metadata` namespace in
|
17554
18225
|
# the destination table bucket.
|
17555
18226
|
#
|
18227
|
+
# <note markdown="1"> If you created your S3 Metadata configuration before July 15, 2025, we
|
18228
|
+
# recommend that you delete and re-create your configuration by using
|
18229
|
+
# [CreateBucketMetadataConfiguration][1] so that you can expire journal
|
18230
|
+
# table records and create a live inventory table.
|
18231
|
+
#
|
18232
|
+
# </note>
|
18233
|
+
#
|
18234
|
+
#
|
18235
|
+
#
|
18236
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataConfiguration.html
|
18237
|
+
#
|
17556
18238
|
# @!attribute [rw] table_bucket_arn
|
17557
18239
|
# The Amazon Resource Name (ARN) for the table bucket that's
|
17558
18240
|
# specified as the destination in the metadata table configuration.
|
@@ -18458,6 +19140,79 @@ module Aws::S3
|
|
18458
19140
|
include Aws::Structure
|
18459
19141
|
end
|
18460
19142
|
|
19143
|
+
# @!attribute [rw] bucket
|
19144
|
+
# The general purpose bucket that corresponds to the metadata
|
19145
|
+
# configuration that you want to enable or disable an inventory table
|
19146
|
+
# for.
|
19147
|
+
# @return [String]
|
19148
|
+
#
|
19149
|
+
# @!attribute [rw] content_md5
|
19150
|
+
# The `Content-MD5` header for the inventory table configuration.
|
19151
|
+
# @return [String]
|
19152
|
+
#
|
19153
|
+
# @!attribute [rw] checksum_algorithm
|
19154
|
+
# The checksum algorithm to use with your inventory table
|
19155
|
+
# configuration.
|
19156
|
+
# @return [String]
|
19157
|
+
#
|
19158
|
+
# @!attribute [rw] inventory_table_configuration
|
19159
|
+
# The contents of your inventory table configuration.
|
19160
|
+
# @return [Types::InventoryTableConfigurationUpdates]
|
19161
|
+
#
|
19162
|
+
# @!attribute [rw] expected_bucket_owner
|
19163
|
+
# The expected owner of the general purpose bucket that corresponds to
|
19164
|
+
# the metadata table configuration that you want to enable or disable
|
19165
|
+
# an inventory table for.
|
19166
|
+
# @return [String]
|
19167
|
+
#
|
19168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/UpdateBucketMetadataInventoryTableConfigurationRequest AWS API Documentation
|
19169
|
+
#
|
19170
|
+
class UpdateBucketMetadataInventoryTableConfigurationRequest < Struct.new(
|
19171
|
+
:bucket,
|
19172
|
+
:content_md5,
|
19173
|
+
:checksum_algorithm,
|
19174
|
+
:inventory_table_configuration,
|
19175
|
+
:expected_bucket_owner)
|
19176
|
+
SENSITIVE = []
|
19177
|
+
include Aws::Structure
|
19178
|
+
end
|
19179
|
+
|
19180
|
+
# @!attribute [rw] bucket
|
19181
|
+
# The general purpose bucket that corresponds to the metadata
|
19182
|
+
# configuration that you want to enable or disable journal table
|
19183
|
+
# record expiration for.
|
19184
|
+
# @return [String]
|
19185
|
+
#
|
19186
|
+
# @!attribute [rw] content_md5
|
19187
|
+
# The `Content-MD5` header for the journal table configuration.
|
19188
|
+
# @return [String]
|
19189
|
+
#
|
19190
|
+
# @!attribute [rw] checksum_algorithm
|
19191
|
+
# The checksum algorithm to use with your journal table configuration.
|
19192
|
+
# @return [String]
|
19193
|
+
#
|
19194
|
+
# @!attribute [rw] journal_table_configuration
|
19195
|
+
# The contents of your journal table configuration.
|
19196
|
+
# @return [Types::JournalTableConfigurationUpdates]
|
19197
|
+
#
|
19198
|
+
# @!attribute [rw] expected_bucket_owner
|
19199
|
+
# The expected owner of the general purpose bucket that corresponds to
|
19200
|
+
# the metadata table configuration that you want to enable or disable
|
19201
|
+
# journal table record expiration for.
|
19202
|
+
# @return [String]
|
19203
|
+
#
|
19204
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/UpdateBucketMetadataJournalTableConfigurationRequest AWS API Documentation
|
19205
|
+
#
|
19206
|
+
class UpdateBucketMetadataJournalTableConfigurationRequest < Struct.new(
|
19207
|
+
:bucket,
|
19208
|
+
:content_md5,
|
19209
|
+
:checksum_algorithm,
|
19210
|
+
:journal_table_configuration,
|
19211
|
+
:expected_bucket_owner)
|
19212
|
+
SENSITIVE = []
|
19213
|
+
include Aws::Structure
|
19214
|
+
end
|
19215
|
+
|
18461
19216
|
# @!attribute [rw] copy_source_version_id
|
18462
19217
|
# The version of the source object that was copied, if you have
|
18463
19218
|
# enabled versioning on the source bucket.
|