aws-sdk-s3 1.52.0 → 1.53.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0a814ef8e6233874dde5cb44e6ed61021bbdc2fb
4
- data.tar.gz: c1d403ff3fb5bbdd20118a87d4972f6a2aa80d6a
3
+ metadata.gz: 472d63ee0f1295b056583a9cfd20ec585919238a
4
+ data.tar.gz: aed88e9a3d50ecedbedd0a59bee1dba169fc6ed5
5
5
  SHA512:
6
- metadata.gz: 3de3fea7d0e8591c938ab2051a44234e8d53799448e9607f50d6f91dbe1b3a810030756a0ea7100f6af7c9d6bef739ef4103cb515d2aa62bf8100e62b6d81d54
7
- data.tar.gz: 9fabeff2d629b993d671c3651ad924434fee176658c1013176a827b70a28cc42283c56cfc8bd312a4c3f167d90bc9e799d3c9dd579bfefec317f0386e9cfc4eb
6
+ metadata.gz: aa70fa374b7c9f497eda4d46ce5bd159f5c94b77e6979b961b2298f6614690b4ac9e32be1012099b2dfaa8ac7de065bcfc50692b236564fc7ffc3010859fb87a
7
+ data.tar.gz: b0ec5e0afc5b3d2f222b06f4906ad3d8ad3c7b5c5d740090c1b1375a102083e574d77209b933ef47b531636afe4a08793336f44db9e61655bdb0307fa62d2d38
@@ -63,6 +63,6 @@ require_relative 'aws-sdk-s3/event_streams'
63
63
  # @service
64
64
  module Aws::S3
65
65
 
66
- GEM_VERSION = '1.52.0'
66
+ GEM_VERSION = '1.53.0'
67
67
 
68
68
  end
@@ -761,33 +761,33 @@ module Aws::S3
761
761
  # * {Types::CreateBucketOutput#location #location} => String
762
762
  #
763
763
  #
764
- # @example Example: To create a bucket in a specific region
764
+ # @example Example: To create a bucket
765
765
  #
766
- # # The following example creates a bucket. The request specifies an AWS region where to create the bucket.
766
+ # # The following example creates a bucket.
767
767
  #
768
768
  # resp = client.create_bucket({
769
769
  # bucket: "examplebucket",
770
- # create_bucket_configuration: {
771
- # location_constraint: "eu-west-1",
772
- # },
773
770
  # })
774
771
  #
775
772
  # resp.to_h outputs the following:
776
773
  # {
777
- # location: "http://examplebucket.s3.amazonaws.com/",
774
+ # location: "/examplebucket",
778
775
  # }
779
776
  #
780
- # @example Example: To create a bucket
777
+ # @example Example: To create a bucket in a specific region
781
778
  #
782
- # # The following example creates a bucket.
779
+ # # The following example creates a bucket. The request specifies an AWS region where to create the bucket.
783
780
  #
784
781
  # resp = client.create_bucket({
785
782
  # bucket: "examplebucket",
783
+ # create_bucket_configuration: {
784
+ # location_constraint: "eu-west-1",
785
+ # },
786
786
  # })
787
787
  #
788
788
  # resp.to_h outputs the following:
789
789
  # {
790
- # location: "/examplebucket",
790
+ # location: "http://examplebucket.s3.amazonaws.com/",
791
791
  # }
792
792
  #
793
793
  # @example Request syntax with placeholder values
@@ -1450,35 +1450,35 @@ module Aws::S3
1450
1450
  # * {Types::DeleteObjectTaggingOutput#version_id #version_id} => String
1451
1451
  #
1452
1452
  #
1453
- # @example Example: To remove tag set from an object version
1453
+ # @example Example: To remove tag set from an object
1454
1454
  #
1455
- # # The following example removes tag set associated with the specified object version. The request specifies both the
1456
- # # object key and object version.
1455
+ # # The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the
1456
+ # # operation removes tag set from the latest object version.
1457
1457
  #
1458
1458
  # resp = client.delete_object_tagging({
1459
1459
  # bucket: "examplebucket",
1460
1460
  # key: "HappyFace.jpg",
1461
- # version_id: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI",
1462
1461
  # })
1463
1462
  #
1464
1463
  # resp.to_h outputs the following:
1465
1464
  # {
1466
- # version_id: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI",
1465
+ # version_id: "null",
1467
1466
  # }
1468
1467
  #
1469
- # @example Example: To remove tag set from an object
1468
+ # @example Example: To remove tag set from an object version
1470
1469
  #
1471
- # # The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the
1472
- # # operation removes tag set from the latest object version.
1470
+ # # The following example removes tag set associated with the specified object version. The request specifies both the
1471
+ # # object key and object version.
1473
1472
  #
1474
1473
  # resp = client.delete_object_tagging({
1475
1474
  # bucket: "examplebucket",
1476
1475
  # key: "HappyFace.jpg",
1476
+ # version_id: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI",
1477
1477
  # })
1478
1478
  #
1479
1479
  # resp.to_h outputs the following:
1480
1480
  # {
1481
- # version_id: "null",
1481
+ # version_id: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI",
1482
1482
  # }
1483
1483
  #
1484
1484
  # @example Request syntax with placeholder values
@@ -1907,7 +1907,7 @@ module Aws::S3
1907
1907
  # resp.inventory_configuration.id #=> String
1908
1908
  # resp.inventory_configuration.included_object_versions #=> String, one of "All", "Current"
1909
1909
  # resp.inventory_configuration.optional_fields #=> Array
1910
- # resp.inventory_configuration.optional_fields[0] #=> String, one of "Size", "LastModifiedDate", "StorageClass", "ETag", "IsMultipartUploaded", "ReplicationStatus", "EncryptionStatus", "ObjectLockRetainUntilDate", "ObjectLockMode", "ObjectLockLegalHoldStatus"
1910
+ # resp.inventory_configuration.optional_fields[0] #=> String, one of "Size", "LastModifiedDate", "StorageClass", "ETag", "IsMultipartUploaded", "ReplicationStatus", "EncryptionStatus", "ObjectLockRetainUntilDate", "ObjectLockMode", "ObjectLockLegalHoldStatus", "IntelligentTieringAccessTier"
1911
1911
  # resp.inventory_configuration.schedule.frequency #=> String, one of "Daily", "Weekly"
1912
1912
  #
1913
1913
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketInventoryConfiguration AWS API Documentation
@@ -2793,49 +2793,49 @@ module Aws::S3
2793
2793
  # * {Types::GetObjectOutput#object_lock_legal_hold_status #object_lock_legal_hold_status} => String
2794
2794
  #
2795
2795
  #
2796
- # @example Example: To retrieve an object
2796
+ # @example Example: To retrieve a byte range of an object
2797
2797
  #
2798
- # # The following example retrieves an object for an S3 bucket.
2798
+ # # The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a
2799
+ # # specific byte range.
2799
2800
  #
2800
2801
  # resp = client.get_object({
2801
2802
  # bucket: "examplebucket",
2802
- # key: "HappyFace.jpg",
2803
+ # key: "SampleFile.txt",
2804
+ # range: "bytes=0-9",
2803
2805
  # })
2804
2806
  #
2805
2807
  # resp.to_h outputs the following:
2806
2808
  # {
2807
2809
  # accept_ranges: "bytes",
2808
- # content_length: 3191,
2809
- # content_type: "image/jpeg",
2810
- # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
2811
- # last_modified: Time.parse("Thu, 15 Dec 2016 01:19:41 GMT"),
2810
+ # content_length: 10,
2811
+ # content_range: "bytes 0-9/43",
2812
+ # content_type: "text/plain",
2813
+ # etag: "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
2814
+ # last_modified: Time.parse("Thu, 09 Oct 2014 22:57:28 GMT"),
2812
2815
  # metadata: {
2813
2816
  # },
2814
- # tag_count: 2,
2815
2817
  # version_id: "null",
2816
2818
  # }
2817
2819
  #
2818
- # @example Example: To retrieve a byte range of an object
2820
+ # @example Example: To retrieve an object
2819
2821
  #
2820
- # # The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a
2821
- # # specific byte range.
2822
+ # # The following example retrieves an object for an S3 bucket.
2822
2823
  #
2823
2824
  # resp = client.get_object({
2824
2825
  # bucket: "examplebucket",
2825
- # key: "SampleFile.txt",
2826
- # range: "bytes=0-9",
2826
+ # key: "HappyFace.jpg",
2827
2827
  # })
2828
2828
  #
2829
2829
  # resp.to_h outputs the following:
2830
2830
  # {
2831
2831
  # accept_ranges: "bytes",
2832
- # content_length: 10,
2833
- # content_range: "bytes 0-9/43",
2834
- # content_type: "text/plain",
2835
- # etag: "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
2836
- # last_modified: Time.parse("Thu, 09 Oct 2014 22:57:28 GMT"),
2832
+ # content_length: 3191,
2833
+ # content_type: "image/jpeg",
2834
+ # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
2835
+ # last_modified: Time.parse("Thu, 15 Dec 2016 01:19:41 GMT"),
2837
2836
  # metadata: {
2838
2837
  # },
2838
+ # tag_count: 2,
2839
2839
  # version_id: "null",
2840
2840
  # }
2841
2841
  #
@@ -3182,49 +3182,49 @@ module Aws::S3
3182
3182
  # * {Types::GetObjectTaggingOutput#tag_set #tag_set} => Array<Types::Tag>
3183
3183
  #
3184
3184
  #
3185
- # @example Example: To retrieve tag set of a specific object version
3185
+ # @example Example: To retrieve tag set of an object
3186
3186
  #
3187
- # # The following example retrieves tag set of an object. The request specifies object version.
3187
+ # # The following example retrieves tag set of an object.
3188
3188
  #
3189
3189
  # resp = client.get_object_tagging({
3190
3190
  # bucket: "examplebucket",
3191
- # key: "exampleobject",
3192
- # version_id: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI",
3191
+ # key: "HappyFace.jpg",
3193
3192
  # })
3194
3193
  #
3195
3194
  # resp.to_h outputs the following:
3196
3195
  # {
3197
3196
  # tag_set: [
3198
3197
  # {
3199
- # key: "Key1",
3200
- # value: "Value1",
3198
+ # key: "Key4",
3199
+ # value: "Value4",
3200
+ # },
3201
+ # {
3202
+ # key: "Key3",
3203
+ # value: "Value3",
3201
3204
  # },
3202
3205
  # ],
3203
- # version_id: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI",
3206
+ # version_id: "null",
3204
3207
  # }
3205
3208
  #
3206
- # @example Example: To retrieve tag set of an object
3209
+ # @example Example: To retrieve tag set of a specific object version
3207
3210
  #
3208
- # # The following example retrieves tag set of an object.
3211
+ # # The following example retrieves tag set of an object. The request specifies object version.
3209
3212
  #
3210
3213
  # resp = client.get_object_tagging({
3211
3214
  # bucket: "examplebucket",
3212
- # key: "HappyFace.jpg",
3215
+ # key: "exampleobject",
3216
+ # version_id: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI",
3213
3217
  # })
3214
3218
  #
3215
3219
  # resp.to_h outputs the following:
3216
3220
  # {
3217
3221
  # tag_set: [
3218
3222
  # {
3219
- # key: "Key4",
3220
- # value: "Value4",
3221
- # },
3222
- # {
3223
- # key: "Key3",
3224
- # value: "Value3",
3223
+ # key: "Key1",
3224
+ # value: "Value1",
3225
3225
  # },
3226
3226
  # ],
3227
- # version_id: "null",
3227
+ # version_id: "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI",
3228
3228
  # }
3229
3229
  #
3230
3230
  # @example Request syntax with placeholder values
@@ -3641,7 +3641,7 @@ module Aws::S3
3641
3641
  # resp.inventory_configuration_list[0].id #=> String
3642
3642
  # resp.inventory_configuration_list[0].included_object_versions #=> String, one of "All", "Current"
3643
3643
  # resp.inventory_configuration_list[0].optional_fields #=> Array
3644
- # resp.inventory_configuration_list[0].optional_fields[0] #=> String, one of "Size", "LastModifiedDate", "StorageClass", "ETag", "IsMultipartUploaded", "ReplicationStatus", "EncryptionStatus", "ObjectLockRetainUntilDate", "ObjectLockMode", "ObjectLockLegalHoldStatus"
3644
+ # resp.inventory_configuration_list[0].optional_fields[0] #=> String, one of "Size", "LastModifiedDate", "StorageClass", "ETag", "IsMultipartUploaded", "ReplicationStatus", "EncryptionStatus", "ObjectLockRetainUntilDate", "ObjectLockMode", "ObjectLockLegalHoldStatus", "IntelligentTieringAccessTier"
3645
3645
  # resp.inventory_configuration_list[0].schedule.frequency #=> String, one of "Daily", "Weekly"
3646
3646
  # resp.is_truncated #=> Boolean
3647
3647
  # resp.next_continuation_token #=> String
@@ -4828,7 +4828,7 @@ module Aws::S3
4828
4828
  # },
4829
4829
  # id: "InventoryId", # required
4830
4830
  # included_object_versions: "All", # required, accepts All, Current
4831
- # optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus
4831
+ # optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus, IntelligentTieringAccessTier
4832
4832
  # schedule: { # required
4833
4833
  # frequency: "Daily", # required, accepts Daily, Weekly
4834
4834
  # },
@@ -5767,40 +5767,39 @@ module Aws::S3
5767
5767
  # * {Types::PutObjectOutput#request_charged #request_charged} => String
5768
5768
  #
5769
5769
  #
5770
- # @example Example: To upload an object and specify optional tags
5770
+ # @example Example: To upload an object and specify canned ACL.
5771
5771
  #
5772
- # # The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore
5773
- # # S3 returns version ID of the newly created object.
5772
+ # # The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ
5773
+ # # access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
5774
5774
  #
5775
5775
  # resp = client.put_object({
5776
- # body: "c:\\HappyFace.jpg",
5776
+ # acl: "authenticated-read",
5777
+ # body: "filetoupload",
5777
5778
  # bucket: "examplebucket",
5778
- # key: "HappyFace.jpg",
5779
- # tagging: "key1=value1&key2=value2",
5779
+ # key: "exampleobject",
5780
5780
  # })
5781
5781
  #
5782
5782
  # resp.to_h outputs the following:
5783
5783
  # {
5784
5784
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
5785
- # version_id: "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a",
5785
+ # version_id: "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr",
5786
5786
  # }
5787
5787
  #
5788
- # @example Example: To upload an object and specify canned ACL.
5788
+ # @example Example: To upload an object
5789
5789
  #
5790
- # # The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ
5791
- # # access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
5790
+ # # The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file
5791
+ # # syntax. S3 returns VersionId of the newly created object.
5792
5792
  #
5793
5793
  # resp = client.put_object({
5794
- # acl: "authenticated-read",
5795
- # body: "filetoupload",
5794
+ # body: "HappyFace.jpg",
5796
5795
  # bucket: "examplebucket",
5797
- # key: "exampleobject",
5796
+ # key: "HappyFace.jpg",
5798
5797
  # })
5799
5798
  #
5800
5799
  # resp.to_h outputs the following:
5801
5800
  # {
5802
5801
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
5803
- # version_id: "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr",
5802
+ # version_id: "tpf3zF08nBplQK1XLOefGskR7mGDwcDk",
5804
5803
  # }
5805
5804
  #
5806
5805
  # @example Example: To create an object.
@@ -5819,82 +5818,83 @@ module Aws::S3
5819
5818
  # version_id: "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ",
5820
5819
  # }
5821
5820
  #
5822
- # @example Example: To upload an object (specify optional headers)
5821
+ # @example Example: To upload object and specify user-defined metadata
5823
5822
  #
5824
- # # The following example uploads an object. The request specifies optional request headers to directs S3 to use specific
5825
- # # storage class and use server-side encryption.
5823
+ # # The following example creates an object. The request also specifies optional metadata. If the bucket is versioning
5824
+ # # enabled, S3 returns version ID in response.
5826
5825
  #
5827
5826
  # resp = client.put_object({
5828
- # body: "HappyFace.jpg",
5827
+ # body: "filetoupload",
5829
5828
  # bucket: "examplebucket",
5830
- # key: "HappyFace.jpg",
5831
- # server_side_encryption: "AES256",
5832
- # storage_class: "STANDARD_IA",
5829
+ # key: "exampleobject",
5830
+ # metadata: {
5831
+ # "metadata1" => "value1",
5832
+ # "metadata2" => "value2",
5833
+ # },
5833
5834
  # })
5834
5835
  #
5835
5836
  # resp.to_h outputs the following:
5836
5837
  # {
5837
5838
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
5838
- # server_side_encryption: "AES256",
5839
- # version_id: "CG612hodqujkf8FaaNfp8U..FIhLROcp",
5839
+ # version_id: "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0",
5840
5840
  # }
5841
5841
  #
5842
- # @example Example: To upload an object
5842
+ # @example Example: To upload an object and specify optional tags
5843
5843
  #
5844
- # # The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file
5845
- # # syntax. S3 returns VersionId of the newly created object.
5844
+ # # The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore
5845
+ # # S3 returns version ID of the newly created object.
5846
5846
  #
5847
5847
  # resp = client.put_object({
5848
- # body: "HappyFace.jpg",
5848
+ # body: "c:\\HappyFace.jpg",
5849
5849
  # bucket: "examplebucket",
5850
5850
  # key: "HappyFace.jpg",
5851
+ # tagging: "key1=value1&key2=value2",
5851
5852
  # })
5852
5853
  #
5853
5854
  # resp.to_h outputs the following:
5854
5855
  # {
5855
5856
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
5856
- # version_id: "tpf3zF08nBplQK1XLOefGskR7mGDwcDk",
5857
+ # version_id: "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a",
5857
5858
  # }
5858
5859
  #
5859
- # @example Example: To upload object and specify user-defined metadata
5860
+ # @example Example: To upload an object and specify server-side encryption and object tags
5860
5861
  #
5861
- # # The following example creates an object. The request also specifies optional metadata. If the bucket is versioning
5862
- # # enabled, S3 returns version ID in response.
5862
+ # # The following example uploads and object. The request specifies the optional server-side encryption option. The request
5863
+ # # also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.
5863
5864
  #
5864
5865
  # resp = client.put_object({
5865
5866
  # body: "filetoupload",
5866
5867
  # bucket: "examplebucket",
5867
5868
  # key: "exampleobject",
5868
- # metadata: {
5869
- # "metadata1" => "value1",
5870
- # "metadata2" => "value2",
5871
- # },
5869
+ # server_side_encryption: "AES256",
5870
+ # tagging: "key1=value1&key2=value2",
5872
5871
  # })
5873
5872
  #
5874
5873
  # resp.to_h outputs the following:
5875
5874
  # {
5876
5875
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
5877
- # version_id: "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0",
5876
+ # server_side_encryption: "AES256",
5877
+ # version_id: "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt",
5878
5878
  # }
5879
5879
  #
5880
- # @example Example: To upload an object and specify server-side encryption and object tags
5880
+ # @example Example: To upload an object (specify optional headers)
5881
5881
  #
5882
- # # The following example uploads and object. The request specifies the optional server-side encryption option. The request
5883
- # # also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.
5882
+ # # The following example uploads an object. The request specifies optional request headers to directs S3 to use specific
5883
+ # # storage class and use server-side encryption.
5884
5884
  #
5885
5885
  # resp = client.put_object({
5886
- # body: "filetoupload",
5886
+ # body: "HappyFace.jpg",
5887
5887
  # bucket: "examplebucket",
5888
- # key: "exampleobject",
5888
+ # key: "HappyFace.jpg",
5889
5889
  # server_side_encryption: "AES256",
5890
- # tagging: "key1=value1&key2=value2",
5890
+ # storage_class: "STANDARD_IA",
5891
5891
  # })
5892
5892
  #
5893
5893
  # resp.to_h outputs the following:
5894
5894
  # {
5895
5895
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
5896
5896
  # server_side_encryption: "AES256",
5897
- # version_id: "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt",
5897
+ # version_id: "CG612hodqujkf8FaaNfp8U..FIhLROcp",
5898
5898
  # }
5899
5899
  #
5900
5900
  # @example Streaming a file from disk
@@ -7110,7 +7110,7 @@ module Aws::S3
7110
7110
  params: params,
7111
7111
  config: config)
7112
7112
  context[:gem_name] = 'aws-sdk-s3'
7113
- context[:gem_version] = '1.52.0'
7113
+ context[:gem_version] = '1.53.0'
7114
7114
  Seahorse::Client::Request.new(handlers, context)
7115
7115
  end
7116
7116
 
@@ -4215,7 +4215,7 @@ module Aws::S3
4215
4215
  # },
4216
4216
  # id: "InventoryId", # required
4217
4217
  # included_object_versions: "All", # required, accepts All, Current
4218
- # optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus
4218
+ # optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus, IntelligentTieringAccessTier
4219
4219
  # schedule: { # required
4220
4220
  # frequency: "Daily", # required, accepts Daily, Weekly
4221
4221
  # },
@@ -6855,7 +6855,7 @@ module Aws::S3
6855
6855
  # },
6856
6856
  # id: "InventoryId", # required
6857
6857
  # included_object_versions: "All", # required, accepts All, Current
6858
- # optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus
6858
+ # optional_fields: ["Size"], # accepts Size, LastModifiedDate, StorageClass, ETag, IsMultipartUploaded, ReplicationStatus, EncryptionStatus, ObjectLockRetainUntilDate, ObjectLockMode, ObjectLockLegalHoldStatus, IntelligentTieringAccessTier
6859
6859
  # schedule: { # required
6860
6860
  # frequency: "Daily", # required, accepts Daily, Weekly
6861
6861
  # },
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-28 00:00:00.000000000 Z
11
+ date: 2019-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-kms