Sha256: 2b594a513b932e4ce85380052d45af4c87ac826bed3b1cde1549f17d0e784624

Contents?: true

Size: 1.72 KB

Versions: 4

Compression:

Stored size: 1.72 KB

Contents

# frozen_string_literal: true

module Aws
  module S3
    # @api private
    class AccessPointARN < Aws::ARN
      def initialize(options)
        super(options)
        @type, @access_point_name, @extra = @resource.split(/[:,\/]/)
      end

      def support_dualstack?
        true
      end

      def support_fips?
        true
      end

      def validate_arn!
        unless @service == 's3'
          raise ArgumentError, 'Must provide a valid S3 Access Point ARN.'
        end

        if @region.empty? || @account_id.empty?
          raise ArgumentError,
                'S3 Access Point ARNs must contain both a region '\
                'and an account id.'
        end

        if @type != 'accesspoint'
          raise ArgumentError, 'Invalid ARN, resource format is not correct'
        end

        if @access_point_name.nil? || @access_point_name.empty?
          raise ArgumentError, 'Missing ARN accesspoint name.'
        end

        if @extra
          raise ArgumentError,
                'ARN accesspoint resource must be a single value.'
        end

        unless Seahorse::Util.host_label?(
          "#{@access_point_name}-#{@account_id}"
        )
          raise ArgumentError,
                "#{@access_point_name}-#{@account_id} is not a valid "\
                'host label.'
        end
      end

      def host_url(region, fips = false, dualstack = false, custom_endpoint = nil)
        pfx = "#{@access_point_name}-#{@account_id}"
        if custom_endpoint
          "#{pfx}.#{custom_endpoint}"
        else
          sfx = Aws::Partitions::EndpointProvider.dns_suffix_for(region)
          "#{pfx}.s3-accesspoint#{'-fips' if fips}#{'.dualstack' if dualstack}.#{region}.#{sfx}"
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
aws-sdk-s3-1.95.0 lib/aws-sdk-s3/arn/access_point_arn.rb
aws-sdk-s3-1.94.1 lib/aws-sdk-s3/arn/access_point_arn.rb
aws-sdk-s3-1.94.0 lib/aws-sdk-s3/arn/access_point_arn.rb
aws-sdk-s3-1.93.1 lib/aws-sdk-s3/arn/access_point_arn.rb