# File lib/aws/sns/subscription.rb, line 76
      def confirmation_authenticated?

        return true if @authenticated

        if authenticated = get_attributes['ConfirmationWasAuthenticated']
          @authenticated = true
        else
          false
        end

      end