aws-sdk-s3 1.167.0 → 1.169.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.
@@ -57,6 +57,7 @@ module Aws::S3
57
57
  BucketLoggingStatus = Shapes::StructureShape.new(name: 'BucketLoggingStatus')
58
58
  BucketLogsPermission = Shapes::StringShape.new(name: 'BucketLogsPermission')
59
59
  BucketName = Shapes::StringShape.new(name: 'BucketName')
60
+ BucketRegion = Shapes::StringShape.new(name: 'BucketRegion')
60
61
  BucketType = Shapes::StringShape.new(name: 'BucketType')
61
62
  BucketVersioningStatus = Shapes::StringShape.new(name: 'BucketVersioningStatus')
62
63
  Buckets = Shapes::ListShape.new(name: 'Buckets')
@@ -680,6 +681,7 @@ module Aws::S3
680
681
 
681
682
  Bucket.add_member(:name, Shapes::ShapeRef.new(shape: BucketName, location_name: "Name"))
682
683
  Bucket.add_member(:creation_date, Shapes::ShapeRef.new(shape: CreationDate, location_name: "CreationDate"))
684
+ Bucket.add_member(:bucket_region, Shapes::ShapeRef.new(shape: BucketRegion, location_name: "BucketRegion"))
683
685
  Bucket.struct_class = Types::Bucket
684
686
 
685
687
  BucketAlreadyExists.struct_class = Types::BucketAlreadyExists
@@ -1723,10 +1725,13 @@ module Aws::S3
1723
1725
  ListBucketsOutput.add_member(:buckets, Shapes::ShapeRef.new(shape: Buckets, location_name: "Buckets"))
1724
1726
  ListBucketsOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
1725
1727
  ListBucketsOutput.add_member(:continuation_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "ContinuationToken"))
1728
+ ListBucketsOutput.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1726
1729
  ListBucketsOutput.struct_class = Types::ListBucketsOutput
1727
1730
 
1728
1731
  ListBucketsRequest.add_member(:max_buckets, Shapes::ShapeRef.new(shape: MaxBuckets, location: "querystring", location_name: "max-buckets"))
1729
1732
  ListBucketsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
1733
+ ListBucketsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
1734
+ ListBucketsRequest.add_member(:bucket_region, Shapes::ShapeRef.new(shape: BucketRegion, location: "querystring", location_name: "bucket-region"))
1730
1735
  ListBucketsRequest.struct_class = Types::ListBucketsRequest
1731
1736
 
1732
1737
  ListDirectoryBucketsOutput.add_member(:buckets, Shapes::ShapeRef.new(shape: Buckets, location_name: "Buckets"))
@@ -144,30 +144,15 @@ module Aws::S3
144
144
  self[:region] = options[:region]
145
145
  self[:use_fips] = options[:use_fips]
146
146
  self[:use_fips] = false if self[:use_fips].nil?
147
- if self[:use_fips].nil?
148
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
149
- end
150
147
  self[:use_dual_stack] = options[:use_dual_stack]
151
148
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
152
- if self[:use_dual_stack].nil?
153
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
154
- end
155
149
  self[:endpoint] = options[:endpoint]
156
150
  self[:force_path_style] = options[:force_path_style]
157
151
  self[:force_path_style] = false if self[:force_path_style].nil?
158
- if self[:force_path_style].nil?
159
- raise ArgumentError, "Missing required EndpointParameter: :force_path_style"
160
- end
161
152
  self[:accelerate] = options[:accelerate]
162
153
  self[:accelerate] = false if self[:accelerate].nil?
163
- if self[:accelerate].nil?
164
- raise ArgumentError, "Missing required EndpointParameter: :accelerate"
165
- end
166
154
  self[:use_global_endpoint] = options[:use_global_endpoint]
167
155
  self[:use_global_endpoint] = false if self[:use_global_endpoint].nil?
168
- if self[:use_global_endpoint].nil?
169
- raise ArgumentError, "Missing required EndpointParameter: :use_global_endpoint"
170
- end
171
156
  self[:use_object_lambda_endpoint] = options[:use_object_lambda_endpoint]
172
157
  self[:key] = options[:key]
173
158
  self[:prefix] = options[:prefix]
@@ -175,12 +160,22 @@ module Aws::S3
175
160
  self[:disable_access_points] = options[:disable_access_points]
176
161
  self[:disable_multi_region_access_points] = options[:disable_multi_region_access_points]
177
162
  self[:disable_multi_region_access_points] = false if self[:disable_multi_region_access_points].nil?
178
- if self[:disable_multi_region_access_points].nil?
179
- raise ArgumentError, "Missing required EndpointParameter: :disable_multi_region_access_points"
180
- end
181
163
  self[:use_arn_region] = options[:use_arn_region]
182
164
  self[:use_s3_express_control_endpoint] = options[:use_s3_express_control_endpoint]
183
165
  self[:disable_s3_express_session_auth] = options[:disable_s3_express_session_auth]
184
166
  end
167
+
168
+ def self.create(config, options={})
169
+ new({
170
+ region: config.region,
171
+ use_fips: config.use_fips_endpoint,
172
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
173
+ force_path_style: config.force_path_style,
174
+ use_global_endpoint: config.s3_us_east_1_regional_endpoint == 'legacy',
175
+ disable_multi_region_access_points: config.s3_disable_multiregion_access_points,
176
+ use_arn_region: config.s3_use_arn_region,
177
+ disable_s3_express_session_auth: config.disable_s3_express_session_auth,
178
+ }.merge(options))
179
+ end
185
180
  end
186
181
  end