aws-sdk-s3 1.169.0 → 1.172.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -71,9 +71,9 @@ module Aws
71
71
 
72
72
  def check_for_error(context)
73
73
  xml = context.http_response.body_contents
74
- if xml.match(/\?>\s*<Error>/)
75
- error_code = xml.match(/<Code>(.+?)<\/Code>/)[1]
76
- error_message = xml.match(/<Message>(.+?)<\/Message>/)[1]
74
+ if xml.match(/<\?xml\s[^>]*\?>\s*<Error>/)
75
+ error_code = xml.match(%r{<Code>(.+?)</Code>})[1]
76
+ error_message = xml.match(%r{<Message>(.+?)</Message>})[1]
77
77
  S3::Errors.error_class(error_code).new(context, error_message)
78
78
  elsif incomplete_xml_body?(xml, context.operation.output)
79
79
  Seahorse::Client::NetworkingError.new(
@@ -4723,7 +4723,6 @@ module Aws::S3
4723
4723
  # * *HTTP Status Code:* 403 Forbidden
4724
4724
  #
4725
4725
  # * *SOAP Fault Code Prefix:* Client
4726
- #
4727
4726
  # * * *Code:* AccountProblem
4728
4727
  #
4729
4728
  # * *Description:* There is a problem with your Amazon Web Services
@@ -4733,7 +4732,6 @@ module Aws::S3
4733
4732
  # * *HTTP Status Code:* 403 Forbidden
4734
4733
  #
4735
4734
  # * *SOAP Fault Code Prefix:* Client
4736
- #
4737
4735
  # * * *Code:* AllAccessDisabled
4738
4736
  #
4739
4737
  # * *Description:* All access to this Amazon S3 resource has been
@@ -4743,7 +4741,6 @@ module Aws::S3
4743
4741
  # * *HTTP Status Code:* 403 Forbidden
4744
4742
  #
4745
4743
  # * *SOAP Fault Code Prefix:* Client
4746
- #
4747
4744
  # * * *Code:* AmbiguousGrantByEmailAddress
4748
4745
  #
4749
4746
  # * *Description:* The email address you provided is associated with
@@ -4752,7 +4749,6 @@ module Aws::S3
4752
4749
  # * *HTTP Status Code:* 400 Bad Request
4753
4750
  #
4754
4751
  # * *SOAP Fault Code Prefix:* Client
4755
- #
4756
4752
  # * * *Code:* AuthorizationHeaderMalformed
4757
4753
  #
4758
4754
  # * *Description:* The authorization header you provided is invalid.
@@ -4760,7 +4756,6 @@ module Aws::S3
4760
4756
  # * *HTTP Status Code:* 400 Bad Request
4761
4757
  #
4762
4758
  # * *HTTP Status Code:* N/A
4763
- #
4764
4759
  # * * *Code:* BadDigest
4765
4760
  #
4766
4761
  # * *Description:* The Content-MD5 you specified did not match what
@@ -4769,7 +4764,6 @@ module Aws::S3
4769
4764
  # * *HTTP Status Code:* 400 Bad Request
4770
4765
  #
4771
4766
  # * *SOAP Fault Code Prefix:* Client
4772
- #
4773
4767
  # * * *Code:* BucketAlreadyExists
4774
4768
  #
4775
4769
  # * *Description:* The requested bucket name is not available. The
@@ -4779,7 +4773,6 @@ module Aws::S3
4779
4773
  # * *HTTP Status Code:* 409 Conflict
4780
4774
  #
4781
4775
  # * *SOAP Fault Code Prefix:* Client
4782
- #
4783
4776
  # * * *Code:* BucketAlreadyOwnedByYou
4784
4777
  #
4785
4778
  # * *Description:* The bucket you tried to create already exists,
@@ -4793,7 +4786,6 @@ module Aws::S3
4793
4786
  # Region)
4794
4787
  #
4795
4788
  # * *SOAP Fault Code Prefix:* Client
4796
- #
4797
4789
  # * * *Code:* BucketNotEmpty
4798
4790
  #
4799
4791
  # * *Description:* The bucket you tried to delete is not empty.
@@ -4801,7 +4793,6 @@ module Aws::S3
4801
4793
  # * *HTTP Status Code:* 409 Conflict
4802
4794
  #
4803
4795
  # * *SOAP Fault Code Prefix:* Client
4804
- #
4805
4796
  # * * *Code:* CredentialsNotSupported
4806
4797
  #
4807
4798
  # * *Description:* This request does not support credentials.
@@ -4809,7 +4800,6 @@ module Aws::S3
4809
4800
  # * *HTTP Status Code:* 400 Bad Request
4810
4801
  #
4811
4802
  # * *SOAP Fault Code Prefix:* Client
4812
- #
4813
4803
  # * * *Code:* CrossLocationLoggingProhibited
4814
4804
  #
4815
4805
  # * *Description:* Cross-location logging not allowed. Buckets in
@@ -4819,7 +4809,6 @@ module Aws::S3
4819
4809
  # * *HTTP Status Code:* 403 Forbidden
4820
4810
  #
4821
4811
  # * *SOAP Fault Code Prefix:* Client
4822
- #
4823
4812
  # * * *Code:* EntityTooSmall
4824
4813
  #
4825
4814
  # * *Description:* Your proposed upload is smaller than the minimum
@@ -4828,7 +4817,6 @@ module Aws::S3
4828
4817
  # * *HTTP Status Code:* 400 Bad Request
4829
4818
  #
4830
4819
  # * *SOAP Fault Code Prefix:* Client
4831
- #
4832
4820
  # * * *Code:* EntityTooLarge
4833
4821
  #
4834
4822
  # * *Description:* Your proposed upload exceeds the maximum allowed
@@ -4837,7 +4825,6 @@ module Aws::S3
4837
4825
  # * *HTTP Status Code:* 400 Bad Request
4838
4826
  #
4839
4827
  # * *SOAP Fault Code Prefix:* Client
4840
- #
4841
4828
  # * * *Code:* ExpiredToken
4842
4829
  #
4843
4830
  # * *Description:* The provided token has expired.
@@ -4845,7 +4832,6 @@ module Aws::S3
4845
4832
  # * *HTTP Status Code:* 400 Bad Request
4846
4833
  #
4847
4834
  # * *SOAP Fault Code Prefix:* Client
4848
- #
4849
4835
  # * * *Code:* IllegalVersioningConfigurationException
4850
4836
  #
4851
4837
  # * *Description:* Indicates that the versioning configuration
@@ -4854,7 +4840,6 @@ module Aws::S3
4854
4840
  # * *HTTP Status Code:* 400 Bad Request
4855
4841
  #
4856
4842
  # * *SOAP Fault Code Prefix:* Client
4857
- #
4858
4843
  # * * *Code:* IncompleteBody
4859
4844
  #
4860
4845
  # * *Description:* You did not provide the number of bytes specified
@@ -4863,7 +4848,6 @@ module Aws::S3
4863
4848
  # * *HTTP Status Code:* 400 Bad Request
4864
4849
  #
4865
4850
  # * *SOAP Fault Code Prefix:* Client
4866
- #
4867
4851
  # * * *Code:* IncorrectNumberOfFilesInPostRequest
4868
4852
  #
4869
4853
  # * *Description:* POST requires exactly one file upload per
@@ -4872,7 +4856,6 @@ module Aws::S3
4872
4856
  # * *HTTP Status Code:* 400 Bad Request
4873
4857
  #
4874
4858
  # * *SOAP Fault Code Prefix:* Client
4875
- #
4876
4859
  # * * *Code:* InlineDataTooLarge
4877
4860
  #
4878
4861
  # * *Description:* Inline data exceeds the maximum allowed size.
@@ -4880,7 +4863,6 @@ module Aws::S3
4880
4863
  # * *HTTP Status Code:* 400 Bad Request
4881
4864
  #
4882
4865
  # * *SOAP Fault Code Prefix:* Client
4883
- #
4884
4866
  # * * *Code:* InternalError
4885
4867
  #
4886
4868
  # * *Description:* We encountered an internal error. Please try
@@ -4889,7 +4871,6 @@ module Aws::S3
4889
4871
  # * *HTTP Status Code:* 500 Internal Server Error
4890
4872
  #
4891
4873
  # * *SOAP Fault Code Prefix:* Server
4892
- #
4893
4874
  # * * *Code:* InvalidAccessKeyId
4894
4875
  #
4895
4876
  # * *Description:* The Amazon Web Services access key ID you
@@ -4898,7 +4879,6 @@ module Aws::S3
4898
4879
  # * *HTTP Status Code:* 403 Forbidden
4899
4880
  #
4900
4881
  # * *SOAP Fault Code Prefix:* Client
4901
- #
4902
4882
  # * * *Code:* InvalidAddressingHeader
4903
4883
  #
4904
4884
  # * *Description:* You must specify the Anonymous role.
@@ -4906,7 +4886,6 @@ module Aws::S3
4906
4886
  # * *HTTP Status Code:* N/A
4907
4887
  #
4908
4888
  # * *SOAP Fault Code Prefix:* Client
4909
- #
4910
4889
  # * * *Code:* InvalidArgument
4911
4890
  #
4912
4891
  # * *Description:* Invalid Argument
@@ -4914,7 +4893,6 @@ module Aws::S3
4914
4893
  # * *HTTP Status Code:* 400 Bad Request
4915
4894
  #
4916
4895
  # * *SOAP Fault Code Prefix:* Client
4917
- #
4918
4896
  # * * *Code:* InvalidBucketName
4919
4897
  #
4920
4898
  # * *Description:* The specified bucket is not valid.
@@ -4922,7 +4900,6 @@ module Aws::S3
4922
4900
  # * *HTTP Status Code:* 400 Bad Request
4923
4901
  #
4924
4902
  # * *SOAP Fault Code Prefix:* Client
4925
- #
4926
4903
  # * * *Code:* InvalidBucketState
4927
4904
  #
4928
4905
  # * *Description:* The request is not valid with the current state
@@ -4931,7 +4908,6 @@ module Aws::S3
4931
4908
  # * *HTTP Status Code:* 409 Conflict
4932
4909
  #
4933
4910
  # * *SOAP Fault Code Prefix:* Client
4934
- #
4935
4911
  # * * *Code:* InvalidDigest
4936
4912
  #
4937
4913
  # * *Description:* The Content-MD5 you specified is not valid.
@@ -4939,7 +4915,6 @@ module Aws::S3
4939
4915
  # * *HTTP Status Code:* 400 Bad Request
4940
4916
  #
4941
4917
  # * *SOAP Fault Code Prefix:* Client
4942
- #
4943
4918
  # * * *Code:* InvalidEncryptionAlgorithmError
4944
4919
  #
4945
4920
  # * *Description:* The encryption request you specified is not
@@ -4948,7 +4923,6 @@ module Aws::S3
4948
4923
  # * *HTTP Status Code:* 400 Bad Request
4949
4924
  #
4950
4925
  # * *SOAP Fault Code Prefix:* Client
4951
- #
4952
4926
  # * * *Code:* InvalidLocationConstraint
4953
4927
  #
4954
4928
  # * *Description:* The specified location constraint is not valid.
@@ -4958,7 +4932,6 @@ module Aws::S3
4958
4932
  # * *HTTP Status Code:* 400 Bad Request
4959
4933
  #
4960
4934
  # * *SOAP Fault Code Prefix:* Client
4961
- #
4962
4935
  # * * *Code:* InvalidObjectState
4963
4936
  #
4964
4937
  # * *Description:* The action is not valid for the current state of
@@ -4967,7 +4940,6 @@ module Aws::S3
4967
4940
  # * *HTTP Status Code:* 403 Forbidden
4968
4941
  #
4969
4942
  # * *SOAP Fault Code Prefix:* Client
4970
- #
4971
4943
  # * * *Code:* InvalidPart
4972
4944
  #
4973
4945
  # * *Description:* One or more of the specified parts could not be
@@ -4977,7 +4949,6 @@ module Aws::S3
4977
4949
  # * *HTTP Status Code:* 400 Bad Request
4978
4950
  #
4979
4951
  # * *SOAP Fault Code Prefix:* Client
4980
- #
4981
4952
  # * * *Code:* InvalidPartOrder
4982
4953
  #
4983
4954
  # * *Description:* The list of parts was not in ascending order.
@@ -4986,7 +4957,6 @@ module Aws::S3
4986
4957
  # * *HTTP Status Code:* 400 Bad Request
4987
4958
  #
4988
4959
  # * *SOAP Fault Code Prefix:* Client
4989
- #
4990
4960
  # * * *Code:* InvalidPayer
4991
4961
  #
4992
4962
  # * *Description:* All access to this object has been disabled.
@@ -4996,7 +4966,6 @@ module Aws::S3
4996
4966
  # * *HTTP Status Code:* 403 Forbidden
4997
4967
  #
4998
4968
  # * *SOAP Fault Code Prefix:* Client
4999
- #
5000
4969
  # * * *Code:* InvalidPolicyDocument
5001
4970
  #
5002
4971
  # * *Description:* The content of the form does not meet the
@@ -5005,7 +4974,6 @@ module Aws::S3
5005
4974
  # * *HTTP Status Code:* 400 Bad Request
5006
4975
  #
5007
4976
  # * *SOAP Fault Code Prefix:* Client
5008
- #
5009
4977
  # * * *Code:* InvalidRange
5010
4978
  #
5011
4979
  # * *Description:* The requested range cannot be satisfied.
@@ -5013,7 +4981,6 @@ module Aws::S3
5013
4981
  # * *HTTP Status Code:* 416 Requested Range Not Satisfiable
5014
4982
  #
5015
4983
  # * *SOAP Fault Code Prefix:* Client
5016
- #
5017
4984
  # * * *Code:* InvalidRequest
5018
4985
  #
5019
4986
  # * *Description:* Please use `AWS4-HMAC-SHA256`.
@@ -5021,7 +4988,6 @@ module Aws::S3
5021
4988
  # * *HTTP Status Code:* 400 Bad Request
5022
4989
  #
5023
4990
  # * *Code:* N/A
5024
- #
5025
4991
  # * * *Code:* InvalidRequest
5026
4992
  #
5027
4993
  # * *Description:* SOAP requests must be made over an HTTPS
@@ -5030,7 +4996,6 @@ module Aws::S3
5030
4996
  # * *HTTP Status Code:* 400 Bad Request
5031
4997
  #
5032
4998
  # * *SOAP Fault Code Prefix:* Client
5033
- #
5034
4999
  # * * *Code:* InvalidRequest
5035
5000
  #
5036
5001
  # * *Description:* Amazon S3 Transfer Acceleration is not supported
@@ -5039,7 +5004,6 @@ module Aws::S3
5039
5004
  # * *HTTP Status Code:* 400 Bad Request
5040
5005
  #
5041
5006
  # * *Code:* N/A
5042
- #
5043
5007
  # * * *Code:* InvalidRequest
5044
5008
  #
5045
5009
  # * *Description:* Amazon S3 Transfer Acceleration is not supported
@@ -5048,7 +5012,6 @@ module Aws::S3
5048
5012
  # * *HTTP Status Code:* 400 Bad Request
5049
5013
  #
5050
5014
  # * *Code:* N/A
5051
- #
5052
5015
  # * * *Code:* InvalidRequest
5053
5016
  #
5054
5017
  # * *Description:* Amazon S3 Transfer Accelerate endpoint only
@@ -5057,7 +5020,6 @@ module Aws::S3
5057
5020
  # * *HTTP Status Code:* 400 Bad Request
5058
5021
  #
5059
5022
  # * *Code:* N/A
5060
- #
5061
5023
  # * * *Code:* InvalidRequest
5062
5024
  #
5063
5025
  # * *Description:* Amazon S3 Transfer Accelerate is not configured
@@ -5066,7 +5028,6 @@ module Aws::S3
5066
5028
  # * *HTTP Status Code:* 400 Bad Request
5067
5029
  #
5068
5030
  # * *Code:* N/A
5069
- #
5070
5031
  # * * *Code:* InvalidRequest
5071
5032
  #
5072
5033
  # * *Description:* Amazon S3 Transfer Accelerate is disabled on this
@@ -5075,7 +5036,6 @@ module Aws::S3
5075
5036
  # * *HTTP Status Code:* 400 Bad Request
5076
5037
  #
5077
5038
  # * *Code:* N/A
5078
- #
5079
5039
  # * * *Code:* InvalidRequest
5080
5040
  #
5081
5041
  # * *Description:* Amazon S3 Transfer Acceleration is not supported
@@ -5085,7 +5045,6 @@ module Aws::S3
5085
5045
  # * *HTTP Status Code:* 400 Bad Request
5086
5046
  #
5087
5047
  # * *Code:* N/A
5088
- #
5089
5048
  # * * *Code:* InvalidRequest
5090
5049
  #
5091
5050
  # * *Description:* Amazon S3 Transfer Acceleration cannot be enabled
@@ -5095,7 +5054,6 @@ module Aws::S3
5095
5054
  # * *HTTP Status Code:* 400 Bad Request
5096
5055
  #
5097
5056
  # * *Code:* N/A
5098
- #
5099
5057
  # * * *Code:* InvalidSecurity
5100
5058
  #
5101
5059
  # * *Description:* The provided security credentials are not valid.
@@ -5103,7 +5061,6 @@ module Aws::S3
5103
5061
  # * *HTTP Status Code:* 403 Forbidden
5104
5062
  #
5105
5063
  # * *SOAP Fault Code Prefix:* Client
5106
- #
5107
5064
  # * * *Code:* InvalidSOAPRequest
5108
5065
  #
5109
5066
  # * *Description:* The SOAP request body is invalid.
@@ -5111,7 +5068,6 @@ module Aws::S3
5111
5068
  # * *HTTP Status Code:* 400 Bad Request
5112
5069
  #
5113
5070
  # * *SOAP Fault Code Prefix:* Client
5114
- #
5115
5071
  # * * *Code:* InvalidStorageClass
5116
5072
  #
5117
5073
  # * *Description:* The storage class you specified is not valid.
@@ -5119,7 +5075,6 @@ module Aws::S3
5119
5075
  # * *HTTP Status Code:* 400 Bad Request
5120
5076
  #
5121
5077
  # * *SOAP Fault Code Prefix:* Client
5122
- #
5123
5078
  # * * *Code:* InvalidTargetBucketForLogging
5124
5079
  #
5125
5080
  # * *Description:* The target bucket for logging does not exist, is
@@ -5129,7 +5084,6 @@ module Aws::S3
5129
5084
  # * *HTTP Status Code:* 400 Bad Request
5130
5085
  #
5131
5086
  # * *SOAP Fault Code Prefix:* Client
5132
- #
5133
5087
  # * * *Code:* InvalidToken
5134
5088
  #
5135
5089
  # * *Description:* The provided token is malformed or otherwise
@@ -5138,7 +5092,6 @@ module Aws::S3
5138
5092
  # * *HTTP Status Code:* 400 Bad Request
5139
5093
  #
5140
5094
  # * *SOAP Fault Code Prefix:* Client
5141
- #
5142
5095
  # * * *Code:* InvalidURI
5143
5096
  #
5144
5097
  # * *Description:* Couldn't parse the specified URI.
@@ -5146,7 +5099,6 @@ module Aws::S3
5146
5099
  # * *HTTP Status Code:* 400 Bad Request
5147
5100
  #
5148
5101
  # * *SOAP Fault Code Prefix:* Client
5149
- #
5150
5102
  # * * *Code:* KeyTooLongError
5151
5103
  #
5152
5104
  # * *Description:* Your key is too long.
@@ -5154,7 +5106,6 @@ module Aws::S3
5154
5106
  # * *HTTP Status Code:* 400 Bad Request
5155
5107
  #
5156
5108
  # * *SOAP Fault Code Prefix:* Client
5157
- #
5158
5109
  # * * *Code:* MalformedACLError
5159
5110
  #
5160
5111
  # * *Description:* The XML you provided was not well-formed or did
@@ -5163,7 +5114,6 @@ module Aws::S3
5163
5114
  # * *HTTP Status Code:* 400 Bad Request
5164
5115
  #
5165
5116
  # * *SOAP Fault Code Prefix:* Client
5166
- #
5167
5117
  # * * *Code:* MalformedPOSTRequest
5168
5118
  #
5169
5119
  # * *Description:* The body of your POST request is not well-formed
@@ -5172,7 +5122,6 @@ module Aws::S3
5172
5122
  # * *HTTP Status Code:* 400 Bad Request
5173
5123
  #
5174
5124
  # * *SOAP Fault Code Prefix:* Client
5175
- #
5176
5125
  # * * *Code:* MalformedXML
5177
5126
  #
5178
5127
  # * *Description:* This happens when the user sends malformed XML
@@ -5184,7 +5133,6 @@ module Aws::S3
5184
5133
  # * *HTTP Status Code:* 400 Bad Request
5185
5134
  #
5186
5135
  # * *SOAP Fault Code Prefix:* Client
5187
- #
5188
5136
  # * * *Code:* MaxMessageLengthExceeded
5189
5137
  #
5190
5138
  # * *Description:* Your request was too big.
@@ -5192,7 +5140,6 @@ module Aws::S3
5192
5140
  # * *HTTP Status Code:* 400 Bad Request
5193
5141
  #
5194
5142
  # * *SOAP Fault Code Prefix:* Client
5195
- #
5196
5143
  # * * *Code:* MaxPostPreDataLengthExceededError
5197
5144
  #
5198
5145
  # * *Description:* Your POST request fields preceding the upload
@@ -5201,7 +5148,6 @@ module Aws::S3
5201
5148
  # * *HTTP Status Code:* 400 Bad Request
5202
5149
  #
5203
5150
  # * *SOAP Fault Code Prefix:* Client
5204
- #
5205
5151
  # * * *Code:* MetadataTooLarge
5206
5152
  #
5207
5153
  # * *Description:* Your metadata headers exceed the maximum allowed
@@ -5210,7 +5156,6 @@ module Aws::S3
5210
5156
  # * *HTTP Status Code:* 400 Bad Request
5211
5157
  #
5212
5158
  # * *SOAP Fault Code Prefix:* Client
5213
- #
5214
5159
  # * * *Code:* MethodNotAllowed
5215
5160
  #
5216
5161
  # * *Description:* The specified method is not allowed against this
@@ -5219,7 +5164,6 @@ module Aws::S3
5219
5164
  # * *HTTP Status Code:* 405 Method Not Allowed
5220
5165
  #
5221
5166
  # * *SOAP Fault Code Prefix:* Client
5222
- #
5223
5167
  # * * *Code:* MissingAttachment
5224
5168
  #
5225
5169
  # * *Description:* A SOAP attachment was expected, but none were
@@ -5228,7 +5172,6 @@ module Aws::S3
5228
5172
  # * *HTTP Status Code:* N/A
5229
5173
  #
5230
5174
  # * *SOAP Fault Code Prefix:* Client
5231
- #
5232
5175
  # * * *Code:* MissingContentLength
5233
5176
  #
5234
5177
  # * *Description:* You must provide the Content-Length HTTP header.
@@ -5236,7 +5179,6 @@ module Aws::S3
5236
5179
  # * *HTTP Status Code:* 411 Length Required
5237
5180
  #
5238
5181
  # * *SOAP Fault Code Prefix:* Client
5239
- #
5240
5182
  # * * *Code:* MissingRequestBodyError
5241
5183
  #
5242
5184
  # * *Description:* This happens when the user sends an empty XML
@@ -5246,7 +5188,6 @@ module Aws::S3
5246
5188
  # * *HTTP Status Code:* 400 Bad Request
5247
5189
  #
5248
5190
  # * *SOAP Fault Code Prefix:* Client
5249
- #
5250
5191
  # * * *Code:* MissingSecurityElement
5251
5192
  #
5252
5193
  # * *Description:* The SOAP 1.1 request is missing a security
@@ -5255,7 +5196,6 @@ module Aws::S3
5255
5196
  # * *HTTP Status Code:* 400 Bad Request
5256
5197
  #
5257
5198
  # * *SOAP Fault Code Prefix:* Client
5258
- #
5259
5199
  # * * *Code:* MissingSecurityHeader
5260
5200
  #
5261
5201
  # * *Description:* Your request is missing a required header.
@@ -5263,7 +5203,6 @@ module Aws::S3
5263
5203
  # * *HTTP Status Code:* 400 Bad Request
5264
5204
  #
5265
5205
  # * *SOAP Fault Code Prefix:* Client
5266
- #
5267
5206
  # * * *Code:* NoLoggingStatusForKey
5268
5207
  #
5269
5208
  # * *Description:* There is no such thing as a logging status
@@ -5272,7 +5211,6 @@ module Aws::S3
5272
5211
  # * *HTTP Status Code:* 400 Bad Request
5273
5212
  #
5274
5213
  # * *SOAP Fault Code Prefix:* Client
5275
- #
5276
5214
  # * * *Code:* NoSuchBucket
5277
5215
  #
5278
5216
  # * *Description:* The specified bucket does not exist.
@@ -5280,7 +5218,6 @@ module Aws::S3
5280
5218
  # * *HTTP Status Code:* 404 Not Found
5281
5219
  #
5282
5220
  # * *SOAP Fault Code Prefix:* Client
5283
- #
5284
5221
  # * * *Code:* NoSuchBucketPolicy
5285
5222
  #
5286
5223
  # * *Description:* The specified bucket does not have a bucket
@@ -5289,7 +5226,6 @@ module Aws::S3
5289
5226
  # * *HTTP Status Code:* 404 Not Found
5290
5227
  #
5291
5228
  # * *SOAP Fault Code Prefix:* Client
5292
- #
5293
5229
  # * * *Code:* NoSuchKey
5294
5230
  #
5295
5231
  # * *Description:* The specified key does not exist.
@@ -5297,7 +5233,6 @@ module Aws::S3
5297
5233
  # * *HTTP Status Code:* 404 Not Found
5298
5234
  #
5299
5235
  # * *SOAP Fault Code Prefix:* Client
5300
- #
5301
5236
  # * * *Code:* NoSuchLifecycleConfiguration
5302
5237
  #
5303
5238
  # * *Description:* The lifecycle configuration does not exist.
@@ -5305,7 +5240,6 @@ module Aws::S3
5305
5240
  # * *HTTP Status Code:* 404 Not Found
5306
5241
  #
5307
5242
  # * *SOAP Fault Code Prefix:* Client
5308
- #
5309
5243
  # * * *Code:* NoSuchUpload
5310
5244
  #
5311
5245
  # * *Description:* The specified multipart upload does not exist.
@@ -5315,7 +5249,6 @@ module Aws::S3
5315
5249
  # * *HTTP Status Code:* 404 Not Found
5316
5250
  #
5317
5251
  # * *SOAP Fault Code Prefix:* Client
5318
- #
5319
5252
  # * * *Code:* NoSuchVersion
5320
5253
  #
5321
5254
  # * *Description:* Indicates that the version ID specified in the
@@ -5324,7 +5257,6 @@ module Aws::S3
5324
5257
  # * *HTTP Status Code:* 404 Not Found
5325
5258
  #
5326
5259
  # * *SOAP Fault Code Prefix:* Client
5327
- #
5328
5260
  # * * *Code:* NotImplemented
5329
5261
  #
5330
5262
  # * *Description:* A header you provided implies functionality that
@@ -5333,7 +5265,6 @@ module Aws::S3
5333
5265
  # * *HTTP Status Code:* 501 Not Implemented
5334
5266
  #
5335
5267
  # * *SOAP Fault Code Prefix:* Server
5336
- #
5337
5268
  # * * *Code:* NotSignedUp
5338
5269
  #
5339
5270
  # * *Description:* Your account is not signed up for the Amazon S3
@@ -5343,7 +5274,6 @@ module Aws::S3
5343
5274
  # * *HTTP Status Code:* 403 Forbidden
5344
5275
  #
5345
5276
  # * *SOAP Fault Code Prefix:* Client
5346
- #
5347
5277
  # * * *Code:* OperationAborted
5348
5278
  #
5349
5279
  # * *Description:* A conflicting conditional action is currently in
@@ -5352,7 +5282,6 @@ module Aws::S3
5352
5282
  # * *HTTP Status Code:* 409 Conflict
5353
5283
  #
5354
5284
  # * *SOAP Fault Code Prefix:* Client
5355
- #
5356
5285
  # * * *Code:* PermanentRedirect
5357
5286
  #
5358
5287
  # * *Description:* The bucket you are attempting to access must be
@@ -5362,7 +5291,6 @@ module Aws::S3
5362
5291
  # * *HTTP Status Code:* 301 Moved Permanently
5363
5292
  #
5364
5293
  # * *SOAP Fault Code Prefix:* Client
5365
- #
5366
5294
  # * * *Code:* PreconditionFailed
5367
5295
  #
5368
5296
  # * *Description:* At least one of the preconditions you specified
@@ -5371,7 +5299,6 @@ module Aws::S3
5371
5299
  # * *HTTP Status Code:* 412 Precondition Failed
5372
5300
  #
5373
5301
  # * *SOAP Fault Code Prefix:* Client
5374
- #
5375
5302
  # * * *Code:* Redirect
5376
5303
  #
5377
5304
  # * *Description:* Temporary redirect.
@@ -5379,7 +5306,6 @@ module Aws::S3
5379
5306
  # * *HTTP Status Code:* 307 Moved Temporarily
5380
5307
  #
5381
5308
  # * *SOAP Fault Code Prefix:* Client
5382
- #
5383
5309
  # * * *Code:* RestoreAlreadyInProgress
5384
5310
  #
5385
5311
  # * *Description:* Object restore is already in progress.
@@ -5387,7 +5313,6 @@ module Aws::S3
5387
5313
  # * *HTTP Status Code:* 409 Conflict
5388
5314
  #
5389
5315
  # * *SOAP Fault Code Prefix:* Client
5390
- #
5391
5316
  # * * *Code:* RequestIsNotMultiPartContent
5392
5317
  #
5393
5318
  # * *Description:* Bucket POST must be of the enclosure-type
@@ -5396,7 +5321,6 @@ module Aws::S3
5396
5321
  # * *HTTP Status Code:* 400 Bad Request
5397
5322
  #
5398
5323
  # * *SOAP Fault Code Prefix:* Client
5399
- #
5400
5324
  # * * *Code:* RequestTimeout
5401
5325
  #
5402
5326
  # * *Description:* Your socket connection to the server was not read
@@ -5405,7 +5329,6 @@ module Aws::S3
5405
5329
  # * *HTTP Status Code:* 400 Bad Request
5406
5330
  #
5407
5331
  # * *SOAP Fault Code Prefix:* Client
5408
- #
5409
5332
  # * * *Code:* RequestTimeTooSkewed
5410
5333
  #
5411
5334
  # * *Description:* The difference between the request time and the
@@ -5414,7 +5337,6 @@ module Aws::S3
5414
5337
  # * *HTTP Status Code:* 403 Forbidden
5415
5338
  #
5416
5339
  # * *SOAP Fault Code Prefix:* Client
5417
- #
5418
5340
  # * * *Code:* RequestTorrentOfBucketError
5419
5341
  #
5420
5342
  # * *Description:* Requesting the torrent file of a bucket is not
@@ -5423,7 +5345,6 @@ module Aws::S3
5423
5345
  # * *HTTP Status Code:* 400 Bad Request
5424
5346
  #
5425
5347
  # * *SOAP Fault Code Prefix:* Client
5426
- #
5427
5348
  # * * *Code:* SignatureDoesNotMatch
5428
5349
  #
5429
5350
  # * *Description:* The request signature we calculated does not
@@ -5435,7 +5356,6 @@ module Aws::S3
5435
5356
  # * *HTTP Status Code:* 403 Forbidden
5436
5357
  #
5437
5358
  # * *SOAP Fault Code Prefix:* Client
5438
- #
5439
5359
  # * * *Code:* ServiceUnavailable
5440
5360
  #
5441
5361
  # * *Description:* Service is unable to handle request.
@@ -5443,7 +5363,6 @@ module Aws::S3
5443
5363
  # * *HTTP Status Code:* 503 Service Unavailable
5444
5364
  #
5445
5365
  # * *SOAP Fault Code Prefix:* Server
5446
- #
5447
5366
  # * * *Code:* SlowDown
5448
5367
  #
5449
5368
  # * *Description:* Reduce your request rate.
@@ -5451,7 +5370,6 @@ module Aws::S3
5451
5370
  # * *HTTP Status Code:* 503 Slow Down
5452
5371
  #
5453
5372
  # * *SOAP Fault Code Prefix:* Server
5454
- #
5455
5373
  # * * *Code:* TemporaryRedirect
5456
5374
  #
5457
5375
  # * *Description:* You are being redirected to the bucket while DNS
@@ -5460,7 +5378,6 @@ module Aws::S3
5460
5378
  # * *HTTP Status Code:* 307 Moved Temporarily
5461
5379
  #
5462
5380
  # * *SOAP Fault Code Prefix:* Client
5463
- #
5464
5381
  # * * *Code:* TokenRefreshRequired
5465
5382
  #
5466
5383
  # * *Description:* The provided token must be refreshed.
@@ -5468,7 +5385,6 @@ module Aws::S3
5468
5385
  # * *HTTP Status Code:* 400 Bad Request
5469
5386
  #
5470
5387
  # * *SOAP Fault Code Prefix:* Client
5471
- #
5472
5388
  # * * *Code:* TooManyBuckets
5473
5389
  #
5474
5390
  # * *Description:* You have attempted to create more buckets than
@@ -5477,7 +5393,6 @@ module Aws::S3
5477
5393
  # * *HTTP Status Code:* 400 Bad Request
5478
5394
  #
5479
5395
  # * *SOAP Fault Code Prefix:* Client
5480
- #
5481
5396
  # * * *Code:* UnexpectedContent
5482
5397
  #
5483
5398
  # * *Description:* This request does not support content.
@@ -5485,7 +5400,6 @@ module Aws::S3
5485
5400
  # * *HTTP Status Code:* 400 Bad Request
5486
5401
  #
5487
5402
  # * *SOAP Fault Code Prefix:* Client
5488
- #
5489
5403
  # * * *Code:* UnresolvableGrantByEmailAddress
5490
5404
  #
5491
5405
  # * *Description:* The email address you provided does not match any
@@ -5494,7 +5408,6 @@ module Aws::S3
5494
5408
  # * *HTTP Status Code:* 400 Bad Request
5495
5409
  #
5496
5410
  # * *SOAP Fault Code Prefix:* Client
5497
- #
5498
5411
  # * * *Code:* UserKeyMustBeSpecified
5499
5412
  #
5500
5413
  # * *Description:* The bucket POST must contain the specified field
@@ -9869,6 +9782,14 @@ module Aws::S3
9869
9782
  # Length Constraints: Minimum length of 0. Maximum length of 1024.
9870
9783
  #
9871
9784
  # Required: No.
9785
+ #
9786
+ # <note markdown="1"> If you specify the `bucket-region`, `prefix`, or
9787
+ # `continuation-token` query parameters without using `max-buckets` to
9788
+ # set the maximum number of buckets returned in the response, Amazon
9789
+ # S3 applies a default page size of 10,000 and provides a continuation
9790
+ # token if there are more buckets.
9791
+ #
9792
+ # </note>
9872
9793
  # @return [String]
9873
9794
  #
9874
9795
  # @!attribute [rw] prefix
@@ -16828,7 +16749,7 @@ module Aws::S3
16828
16749
  #
16829
16750
  # @!attribute [rw] simple_prefix
16830
16751
  # To use the simple format for S3 keys for log objects. To specify
16831
- # SimplePrefix format, set SimplePrefix to \\\{\\}.
16752
+ # SimplePrefix format, set SimplePrefix to \{}.
16832
16753
  # @return [Types::SimplePrefix]
16833
16754
  #
16834
16755
  # @!attribute [rw] partitioned_prefix
data/lib/aws-sdk-s3.rb CHANGED
@@ -75,7 +75,7 @@ module Aws::S3
75
75
  autoload :ObjectVersion, 'aws-sdk-s3/object_version'
76
76
  autoload :EventStreams, 'aws-sdk-s3/event_streams'
77
77
 
78
- GEM_VERSION = '1.169.0'
78
+ GEM_VERSION = '1.172.0'
79
79
 
80
80
  end
81
81