Class: Aws::S3Control::Endpoints::GetBucketLifecycleConfiguration Private

Inherits:
Object
  • Object
show all
Defined in:
lib/aws-sdk-s3control/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

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.



916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
# File 'lib/aws-sdk-s3control/endpoints.rb', line 916

def self.build(context)
  unless context.config.regional_endpoint
    endpoint = context.config.endpoint.to_s
  end
  Aws::S3Control::EndpointParameters.new(
    region: context.config.region,
    use_fips: context.config.use_fips_endpoint,
    use_dual_stack: context[:use_dualstack_endpoint],
    endpoint: endpoint,
    account_id: context.params[:account_id],
    requires_account_id: true,
    outpost_id: nil,
    bucket: context.params[:bucket],
    access_point_name: nil,
    use_arn_region: context.config.s3_use_arn_region,
  )
end