Class: Aws::S3::Endpoints::PutBucketNotification Private
- Inherits:
-
Object
- Object
- Aws::S3::Endpoints::PutBucketNotification
- Defined in:
- lib/aws-sdk-s3/endpoints.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Class Method Summary collapse
- .build(context) ⇒ Object private
Class Method Details
.build(context) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 |
# File 'lib/aws-sdk-s3/endpoints.rb', line 2122 def self.build(context) unless context.config.regional_endpoint endpoint = context.config.endpoint.to_s end Aws::S3::EndpointParameters.new( bucket: context.params[:bucket], region: context.config.region, use_fips: context.config.use_fips_endpoint, use_dual_stack: context[:use_dualstack_endpoint], endpoint: endpoint, force_path_style: context.config.force_path_style, accelerate: context[:use_accelerate_endpoint], use_global_endpoint: context.config.s3_us_east_1_regional_endpoint == 'legacy', use_object_lambda_endpoint: nil, key: nil, prefix: nil, copy_source: nil, disable_access_points: nil, disable_multi_region_access_points: context.config.s3_disable_multiregion_access_points, use_arn_region: context.config.s3_use_arn_region, use_s3_express_control_endpoint: true, disable_s3_express_session_auth: context.config.disable_s3_express_session_auth, ) end |